2023-11-30T22:41:51.645 INFO:root:teuthology version: 0.0.1.dev212+g595fad1 2023-11-30T22:41:51.645 DEBUG:teuthology.run:Teuthology command: teuthology --owner scheduled_yuriw@teuthology --name yuriw-2023-11-30_16:00:27-rados-wip-yuri8-testing-2023-11-29-0706-pacific-distro-default-smithi --archive /home/teuthworker/archive/yuriw-2023-11-30_16:00:27-rados-wip-yuri8-testing-2023-11-29-0706-pacific-distro-default-smithi/7472707 --verbose --description rados/cephadm/smoke-roleless/{0-distro/rhel_8.4_container_tools_rhel8 0-nvme-loop 1-start 2-services/nfs-ingress-rgw-bucket 3-final} -- /home/teuthworker/archive/yuriw-2023-11-30_16:00:27-rados-wip-yuri8-testing-2023-11-29-0706-pacific-distro-default-smithi/7472707/orig.config.yaml 2023-11-30T22:41:51.682 DEBUG:teuthology.report:Pushing job info to https://paddles.front.sepia.ceph.com/ 2023-11-30T22:41:51.762 INFO:teuthology.run:Config: archive_path: /home/teuthworker/archive/yuriw-2023-11-30_16:00:27-rados-wip-yuri8-testing-2023-11-29-0706-pacific-distro-default-smithi/7472707 branch: wip-yuri8-testing-2023-11-29-0706-pacific description: rados/cephadm/smoke-roleless/{0-distro/rhel_8.4_container_tools_rhel8 0-nvme-loop 1-start 2-services/nfs-ingress-rgw-bucket 3-final} email: yweinste@redhat.com first_in_suite: false job_id: '7472707' kernel: kdb: true sha1: distro last_in_suite: false machine_type: smithi name: yuriw-2023-11-30_16:00:27-rados-wip-yuri8-testing-2023-11-29-0706-pacific-distro-default-smithi no_nested_subset: false nuke-on-error: true openstack: - volumes: count: 4 size: 10 os_type: rhel os_version: '8.4' overrides: admin_socket: branch: wip-yuri8-testing-2023-11-29-0706-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: 0dc074ce0b0b3b4f393f56dd32ef36884ebf45a9 ceph-deploy: conf: client: log file: /var/log/ceph/ceph-$name.$pid.log mon: {} install: ceph: flavor: default sha1: 0dc074ce0b0b3b4f393f56dd32ef36884ebf45a9 selinux: whitelist: - scontext=system_u:system_r:logrotate_t:s0 workunit: branch: wip-yuri8-testing-2023-11-29-0706-pacific sha1: 0dc074ce0b0b3b4f393f56dd32ef36884ebf45a9 owner: scheduled_yuriw@teuthology priority: 75 repo: https://github.com/ceph/ceph-ci.git roles: - - host.a - client.0 - - host.b - client.1 seed: 8528 sha1: 0dc074ce0b0b3b4f393f56dd32ef36884ebf45a9 sleep_before_teardown: 0 subset: 111/120000 suite: rados suite_branch: wip-yuri8-testing-2023-11-29-0706-pacific suite_path: /home/teuthworker/src/github.com_ceph_ceph-c_0dc074ce0b0b3b4f393f56dd32ef36884ebf45a9/qa suite_relpath: qa suite_repo: https://github.com/ceph/ceph-ci.git suite_sha1: 0dc074ce0b0b3b4f393f56dd32ef36884ebf45a9 targets: smithi038.front.sepia.ceph.com: ecdsa-sha2-nistp256 AAAAE2VjZHNhLXNoYTItbmlzdHAyNTYAAAAIbmlzdHAyNTYAAABBBPx15B2W1733oDj5EXK0hQVNNRERQtESt4JVrUJgZU9T2nvjZ7RoF0UXB6OlnJ/xcembSL5cON/dFu5ijQTDPQk= smithi167.front.sepia.ceph.com: ecdsa-sha2-nistp256 AAAAE2VjZHNhLXNoYTItbmlzdHAyNTYAAAAIbmlzdHAyNTYAAABBBFB7sDPboLGIzz4wYWw6o7w2Hag5TgcZar/JFbEKOF7etfSFyXfJDZD5erzFxY5p+9S/czP4mFrmMOipROuxqUE= tasks: - pexec: all: - sudo cp /etc/containers/registries.conf /etc/containers/registries.conf.backup - sudo dnf -y module reset container-tools - sudo dnf -y module install container-tools:rhel8 --allowerasing --nobest - sudo cp /etc/containers/registries.conf.backup /etc/containers/registries.conf - 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 orch apply rgw foorgw --port 8800 - ceph nfs cluster create foo --ingress --virtual-ip {{VIP0}}/{{VIPPREFIXLEN}} - vip.exec: host.a: - dnf install -y python3-boto3 || apt install -y python3-boto3 - /home/ubuntu/cephtest/cephadm shell radosgw-admin user create --uid foouser --display-name foo > /tmp/user.json - python: host.a: "import boto3\nimport json\n\nwith open('/tmp/user.json', 'rt') as f:\n\ \ info = json.loads(f.read())\ns3 = boto3.resource(\n 's3',\n aws_access_key_id=info['keys'][0]['access_key'],\n\ \ aws_secret_access_key=info['keys'][0]['secret_key'],\n endpoint_url='http://localhost:8800',\n\ )\nbucket = s3.Bucket('foobucket')\nbucket.create()\nbucket.put_object(Key='myobject',\ \ Body='thebody')\n" - cephadm.shell: host.a: - ceph nfs export create rgw --bucket foobucket --cluster-id foo --pseudo-path /foobucket - cephadm.wait_for_service: service: nfs.foo - cephadm.wait_for_service: service: ingress.nfs.foo - vip.exec: host.a: - mkdir /mnt/foo - sleep 5 - mount -t nfs {{VIP0}}:/foobucket /mnt/foo - find /mnt/foo -ls - grep thebody /mnt/foo/myobject - echo test > /mnt/foo/newobject - sync - python: host.a: "import boto3\nimport json\nfrom io import BytesIO\n\nwith open('/tmp/user.json',\ \ 'rt') as f:\n info = json.loads(f.read())\ns3 = boto3.resource(\n 's3',\n\ \ aws_access_key_id=info['keys'][0]['access_key'],\n aws_secret_access_key=info['keys'][0]['secret_key'],\n\ \ endpoint_url='http://localhost:8800',\n)\nbucket = s3.Bucket('foobucket')\n\ data = BytesIO()\nbucket.download_fileobj(Fileobj=data, Key='newobject')\nprint(data.getvalue())\n\ assert data.getvalue().decode() == 'test\\n'\n" - vip.exec: host.a: - umount /mnt/foo - cephadm.shell: host.a: - ceph nfs export rm foo /foobucket - ceph nfs cluster rm 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: wip-package-queries teuthology_sha1: 595fad1080bd379e3c0231a8e02595924c59a9da timestamp: 2023-11-30_16:00:27 tube: smithi user: yuriw verbose: true worker_log: /home/teuthworker/archive/worker_logs/dispatcher.smithi.232157 2023-11-30T22:41:51.762 INFO:teuthology.run:suite_path is set to /home/teuthworker/src/github.com_ceph_ceph-c_0dc074ce0b0b3b4f393f56dd32ef36884ebf45a9/qa; will attempt to use it 2023-11-30T22:41:51.763 INFO:teuthology.run:Found tasks at /home/teuthworker/src/github.com_ceph_ceph-c_0dc074ce0b0b3b4f393f56dd32ef36884ebf45a9/qa/tasks 2023-11-30T22:41:51.763 INFO:teuthology.run_tasks:Running task internal.check_packages... 2023-11-30T22:41:51.765 INFO:teuthology.task.internal:Checking packages... 2023-11-30T22:41:51.788 INFO:teuthology.task.internal:Checking packages for os_type 'rhel', flavor 'default' and ceph hash '0dc074ce0b0b3b4f393f56dd32ef36884ebf45a9' 2023-11-30T22:41:51.788 WARNING:teuthology.packaging:More than one of ref, tag, branch, or sha1 supplied; using branch 2023-11-30T22:41:51.788 INFO:teuthology.packaging:ref: None 2023-11-30T22:41:51.788 INFO:teuthology.packaging:tag: None 2023-11-30T22:41:51.788 INFO:teuthology.packaging:branch: wip-yuri8-testing-2023-11-29-0706-pacific 2023-11-30T22:41:51.788 INFO:teuthology.packaging:sha1: 0dc074ce0b0b3b4f393f56dd32ef36884ebf45a9 2023-11-30T22:41:51.788 DEBUG:teuthology.packaging:Querying https://shaman.ceph.com/api/search?status=ready&project=ceph&flavor=default&distros=centos%2F8%2Fx86_64&ref=wip-yuri8-testing-2023-11-29-0706-pacific 2023-11-30T22:41:52.138 INFO:teuthology.task.internal:Found packages for ceph version 16.2.14-328.g0dc074ce 2023-11-30T22:41:52.138 INFO:teuthology.run_tasks:Running task internal.buildpackages_prep... 2023-11-30T22:41:52.146 INFO:teuthology.task.internal:no buildpackages task found 2023-11-30T22:41:52.146 INFO:teuthology.run_tasks:Running task internal.save_config... 2023-11-30T22:41:52.177 INFO:teuthology.task.internal:Saving configuration 2023-11-30T22:41:52.191 INFO:teuthology.run_tasks:Running task internal.check_lock... 2023-11-30T22:41:52.200 INFO:teuthology.task.internal.check_lock:Checking locks... 2023-11-30T22:41:52.225 DEBUG:teuthology.task.internal.check_lock:machine status is {'name': 'smithi038.front.sepia.ceph.com', 'description': '/home/teuthworker/archive/yuriw-2023-11-30_16:00:27-rados-wip-yuri8-testing-2023-11-29-0706-pacific-distro-default-smithi/7472707', 'up': True, 'machine_type': 'smithi', 'is_vm': False, 'vm_host': None, 'os_type': 'rhel', 'os_version': '8.4', 'arch': 'x86_64', 'locked': True, 'locked_since': '2023-11-30 22:36:29.918876', 'locked_by': 'scheduled_yuriw@teuthology', 'mac_address': None, 'ssh_pub_key': 'ecdsa-sha2-nistp256 AAAAE2VjZHNhLXNoYTItbmlzdHAyNTYAAAAIbmlzdHAyNTYAAABBBPx15B2W1733oDj5EXK0hQVNNRERQtESt4JVrUJgZU9T2nvjZ7RoF0UXB6OlnJ/xcembSL5cON/dFu5ijQTDPQk='} 2023-11-30T22:41:52.248 DEBUG:teuthology.task.internal.check_lock:machine status is {'name': 'smithi167.front.sepia.ceph.com', 'description': '/home/teuthworker/archive/yuriw-2023-11-30_16:00:27-rados-wip-yuri8-testing-2023-11-29-0706-pacific-distro-default-smithi/7472707', 'up': True, 'machine_type': 'smithi', 'is_vm': False, 'vm_host': None, 'os_type': 'rhel', 'os_version': '8.4', 'arch': 'x86_64', 'locked': True, 'locked_since': '2023-11-30 22:36:29.916985', 'locked_by': 'scheduled_yuriw@teuthology', 'mac_address': None, 'ssh_pub_key': 'ecdsa-sha2-nistp256 AAAAE2VjZHNhLXNoYTItbmlzdHAyNTYAAAAIbmlzdHAyNTYAAABBBFB7sDPboLGIzz4wYWw6o7w2Hag5TgcZar/JFbEKOF7etfSFyXfJDZD5erzFxY5p+9S/czP4mFrmMOipROuxqUE='} 2023-11-30T22:41:52.248 INFO:teuthology.run_tasks:Running task internal.add_remotes... 2023-11-30T22:41:52.256 INFO:teuthology.task.internal:roles: ubuntu@smithi038.front.sepia.ceph.com - ['host.a', 'client.0'] 2023-11-30T22:41:52.256 INFO:teuthology.task.internal:roles: ubuntu@smithi167.front.sepia.ceph.com - ['host.b', 'client.1'] 2023-11-30T22:41:52.257 INFO:teuthology.run_tasks:Running task console_log... 2023-11-30T22:41:52.347 DEBUG:teuthology.exit:Installing handler: Handler(exiter=, func=.kill_console_loggers at 0x7f553b7b4a60>, signals=[15]) 2023-11-30T22:41:52.347 INFO:teuthology.run_tasks:Running task internal.connect... 2023-11-30T22:41:52.354 INFO:teuthology.task.internal:Opening connections... 2023-11-30T22:41:52.354 DEBUG:teuthology.task.internal:connecting to ubuntu@smithi038.front.sepia.ceph.com 2023-11-30T22:41:52.357 DEBUG:teuthology.orchestra.connection:{'hostname': 'smithi038.front.sepia.ceph.com', 'username': 'ubuntu', 'timeout': 60} 2023-11-30T22:41:52.430 DEBUG:teuthology.task.internal:connecting to ubuntu@smithi167.front.sepia.ceph.com 2023-11-30T22:41:52.431 DEBUG:teuthology.orchestra.connection:{'hostname': 'smithi167.front.sepia.ceph.com', 'username': 'ubuntu', 'timeout': 60} 2023-11-30T22:41:52.497 INFO:teuthology.run_tasks:Running task internal.push_inventory... 2023-11-30T22:41:52.503 DEBUG:teuthology.orchestra.run.smithi038:> uname -m 2023-11-30T22:41:52.522 INFO:teuthology.orchestra.run.smithi038.stdout:x86_64 2023-11-30T22:41:52.522 DEBUG:teuthology.orchestra.run.smithi038:> cat /etc/os-release 2023-11-30T22:41:52.579 INFO:teuthology.orchestra.run.smithi038.stdout:NAME="Red Hat Enterprise Linux" 2023-11-30T22:41:52.579 INFO:teuthology.orchestra.run.smithi038.stdout:VERSION="8.4 (Ootpa)" 2023-11-30T22:41:52.580 INFO:teuthology.orchestra.run.smithi038.stdout:ID="rhel" 2023-11-30T22:41:52.580 INFO:teuthology.orchestra.run.smithi038.stdout:ID_LIKE="fedora" 2023-11-30T22:41:52.580 INFO:teuthology.orchestra.run.smithi038.stdout:VERSION_ID="8.4" 2023-11-30T22:41:52.580 INFO:teuthology.orchestra.run.smithi038.stdout:PLATFORM_ID="platform:el8" 2023-11-30T22:41:52.581 INFO:teuthology.orchestra.run.smithi038.stdout:PRETTY_NAME="Red Hat Enterprise Linux 8.4 (Ootpa)" 2023-11-30T22:41:52.581 INFO:teuthology.orchestra.run.smithi038.stdout:ANSI_COLOR="0;31" 2023-11-30T22:41:52.581 INFO:teuthology.orchestra.run.smithi038.stdout:CPE_NAME="cpe:/o:redhat:enterprise_linux:8.4:GA" 2023-11-30T22:41:52.581 INFO:teuthology.orchestra.run.smithi038.stdout:HOME_URL="https://www.redhat.com/" 2023-11-30T22:41:52.581 INFO:teuthology.orchestra.run.smithi038.stdout:DOCUMENTATION_URL="https://access.redhat.com/documentation/red_hat_enterprise_linux/8/" 2023-11-30T22:41:52.582 INFO:teuthology.orchestra.run.smithi038.stdout:BUG_REPORT_URL="https://bugzilla.redhat.com/" 2023-11-30T22:41:52.582 INFO:teuthology.orchestra.run.smithi038.stdout: 2023-11-30T22:41:52.582 INFO:teuthology.orchestra.run.smithi038.stdout:REDHAT_BUGZILLA_PRODUCT="Red Hat Enterprise Linux 8" 2023-11-30T22:41:52.582 INFO:teuthology.orchestra.run.smithi038.stdout:REDHAT_BUGZILLA_PRODUCT_VERSION=8.4 2023-11-30T22:41:52.582 INFO:teuthology.orchestra.run.smithi038.stdout:REDHAT_SUPPORT_PRODUCT="Red Hat Enterprise Linux" 2023-11-30T22:41:52.583 INFO:teuthology.orchestra.run.smithi038.stdout:REDHAT_SUPPORT_PRODUCT_VERSION="8.4" 2023-11-30T22:41:52.585 INFO:teuthology.lock.ops:Updating smithi038.front.sepia.ceph.com on lock server 2023-11-30T22:41:52.614 DEBUG:teuthology.orchestra.run.smithi167:> uname -m 2023-11-30T22:41:52.631 INFO:teuthology.orchestra.run.smithi167.stdout:x86_64 2023-11-30T22:41:52.632 DEBUG:teuthology.orchestra.run.smithi167:> cat /etc/os-release 2023-11-30T22:41:52.688 INFO:teuthology.orchestra.run.smithi167.stdout:NAME="Red Hat Enterprise Linux" 2023-11-30T22:41:52.688 INFO:teuthology.orchestra.run.smithi167.stdout:VERSION="8.4 (Ootpa)" 2023-11-30T22:41:52.689 INFO:teuthology.orchestra.run.smithi167.stdout:ID="rhel" 2023-11-30T22:41:52.689 INFO:teuthology.orchestra.run.smithi167.stdout:ID_LIKE="fedora" 2023-11-30T22:41:52.689 INFO:teuthology.orchestra.run.smithi167.stdout:VERSION_ID="8.4" 2023-11-30T22:41:52.689 INFO:teuthology.orchestra.run.smithi167.stdout:PLATFORM_ID="platform:el8" 2023-11-30T22:41:52.689 INFO:teuthology.orchestra.run.smithi167.stdout:PRETTY_NAME="Red Hat Enterprise Linux 8.4 (Ootpa)" 2023-11-30T22:41:52.689 INFO:teuthology.orchestra.run.smithi167.stdout:ANSI_COLOR="0;31" 2023-11-30T22:41:52.689 INFO:teuthology.orchestra.run.smithi167.stdout:CPE_NAME="cpe:/o:redhat:enterprise_linux:8.4:GA" 2023-11-30T22:41:52.689 INFO:teuthology.orchestra.run.smithi167.stdout:HOME_URL="https://www.redhat.com/" 2023-11-30T22:41:52.689 INFO:teuthology.orchestra.run.smithi167.stdout:DOCUMENTATION_URL="https://access.redhat.com/documentation/red_hat_enterprise_linux/8/" 2023-11-30T22:41:52.689 INFO:teuthology.orchestra.run.smithi167.stdout:BUG_REPORT_URL="https://bugzilla.redhat.com/" 2023-11-30T22:41:52.689 INFO:teuthology.orchestra.run.smithi167.stdout: 2023-11-30T22:41:52.689 INFO:teuthology.orchestra.run.smithi167.stdout:REDHAT_BUGZILLA_PRODUCT="Red Hat Enterprise Linux 8" 2023-11-30T22:41:52.690 INFO:teuthology.orchestra.run.smithi167.stdout:REDHAT_BUGZILLA_PRODUCT_VERSION=8.4 2023-11-30T22:41:52.690 INFO:teuthology.orchestra.run.smithi167.stdout:REDHAT_SUPPORT_PRODUCT="Red Hat Enterprise Linux" 2023-11-30T22:41:52.690 INFO:teuthology.orchestra.run.smithi167.stdout:REDHAT_SUPPORT_PRODUCT_VERSION="8.4" 2023-11-30T22:41:52.690 INFO:teuthology.lock.ops:Updating smithi167.front.sepia.ceph.com on lock server 2023-11-30T22:41:52.713 INFO:teuthology.run_tasks:Running task internal.serialize_remote_roles... 2023-11-30T22:41:52.723 INFO:teuthology.run_tasks:Running task internal.check_conflict... 2023-11-30T22:41:52.751 INFO:teuthology.task.internal:Checking for old test directory... 2023-11-30T22:41:52.751 DEBUG:teuthology.orchestra.run.smithi038:> test '!' -e /home/ubuntu/cephtest 2023-11-30T22:41:52.754 DEBUG:teuthology.orchestra.run.smithi167:> test '!' -e /home/ubuntu/cephtest 2023-11-30T22:41:52.769 INFO:teuthology.run_tasks:Running task internal.check_ceph_data... 2023-11-30T22:41:52.777 INFO:teuthology.task.internal:Checking for non-empty /var/lib/ceph... 2023-11-30T22:41:52.777 DEBUG:teuthology.orchestra.run.smithi038:> test -z $(ls -A /var/lib/ceph) 2023-11-30T22:41:52.811 DEBUG:teuthology.orchestra.run.smithi167:> test -z $(ls -A /var/lib/ceph) 2023-11-30T22:41:52.826 INFO:teuthology.orchestra.run.smithi038.stderr:ls: cannot access '/var/lib/ceph': No such file or directory 2023-11-30T22:41:52.827 INFO:teuthology.orchestra.run.smithi167.stderr:ls: cannot access '/var/lib/ceph': No such file or directory 2023-11-30T22:41:52.828 INFO:teuthology.run_tasks:Running task internal.vm_setup... 2023-11-30T22:41:52.884 INFO:teuthology.run_tasks:Running task kernel... 2023-11-30T22:41:52.901 INFO:teuthology.task.kernel:normalize config orig: {'kdb': True, 'sha1': 'distro'} 2023-11-30T22:41:52.901 INFO:teuthology.task.kernel:config {'host.a': {'kdb': True, 'sha1': 'distro'}, 'host.b': {'kdb': True, 'sha1': 'distro'}}, timeout 300 2023-11-30T22:41:52.902 DEBUG:teuthology.orchestra.run.smithi038:> test -f /run/.containerenv -o -f /.dockerenv 2023-11-30T22:41:52.902 DEBUG:teuthology.orchestra.run.smithi167:> test -f /run/.containerenv -o -f /.dockerenv 2023-11-30T22:41:52.917 DEBUG:teuthology.orchestra.run:got remote process result: 1 2023-11-30T22:41:52.918 DEBUG:teuthology.orchestra.run.smithi167:> uname -r 2023-11-30T22:41:52.918 DEBUG:teuthology.orchestra.run:got remote process result: 1 2023-11-30T22:41:52.919 DEBUG:teuthology.orchestra.run.smithi038:> uname -r 2023-11-30T22:41:52.974 INFO:teuthology.orchestra.run.smithi167.stdout:4.18.0-305.25.1.el8_4.x86_64 2023-11-30T22:41:52.974 INFO:teuthology.task.kernel:Running kernel on smithi167: 4.18.0-305.25.1.el8_4.x86_64 2023-11-30T22:41:52.974 DEBUG:teuthology.orchestra.run.smithi167:> sudo yum install -y kernel 2023-11-30T22:41:52.977 INFO:teuthology.orchestra.run.smithi038.stdout:4.18.0-305.25.1.el8_4.x86_64 2023-11-30T22:41:52.977 INFO:teuthology.task.kernel:Running kernel on smithi038: 4.18.0-305.25.1.el8_4.x86_64 2023-11-30T22:41:52.977 DEBUG:teuthology.orchestra.run.smithi038:> sudo yum install -y kernel 2023-11-30T22:41:54.463 INFO:teuthology.orchestra.run.smithi167.stdout:Updating Subscription Management repositories. 2023-11-30T22:41:54.464 INFO:teuthology.orchestra.run.smithi038.stdout:Updating Subscription Management repositories. 2023-11-30T22:41:54.464 INFO:teuthology.orchestra.run.smithi167.stdout:Unable to read consumer identity 2023-11-30T22:41:54.465 INFO:teuthology.orchestra.run.smithi038.stdout:Unable to read consumer identity 2023-11-30T22:41:55.874 INFO:teuthology.orchestra.run.smithi167.stdout:Copr repo for python3-asyncssh owned by ceph 27 kB/s | 3.5 kB 00:00 2023-11-30T22:41:55.900 INFO:teuthology.orchestra.run.smithi038.stdout:Copr repo for python3-asyncssh owned by ceph 33 kB/s | 3.5 kB 00:00 2023-11-30T22:41:56.679 INFO:teuthology.orchestra.run.smithi167.stdout:Extra Packages for Enterprise Linux 21 MB/s | 16 MB 00:00 2023-11-30T22:41:56.953 INFO:teuthology.orchestra.run.smithi038.stdout:Extra Packages for Enterprise Linux 16 MB/s | 16 MB 00:01 2023-11-30T22:42:00.006 INFO:teuthology.orchestra.run.smithi167.stdout:lab-extras 4.2 MB/s | 24 kB 00:00 2023-11-30T22:42:00.408 INFO:teuthology.orchestra.run.smithi038.stdout:lab-extras 4.3 MB/s | 24 kB 00:00 2023-11-30T22:42:00.769 INFO:teuthology.orchestra.run.smithi167.stdout:Package kernel-4.18.0-80.el8.x86_64 is already installed. 2023-11-30T22:42:00.769 INFO:teuthology.orchestra.run.smithi167.stdout:Package kernel-4.18.0-425.3.1.el8.x86_64 is already installed. 2023-11-30T22:42:00.769 INFO:teuthology.orchestra.run.smithi167.stdout:Package kernel-4.18.0-305.25.1.el8_4.x86_64 is already installed. 2023-11-30T22:42:00.925 INFO:teuthology.orchestra.run.smithi167.stdout:Dependencies resolved. 2023-11-30T22:42:00.926 INFO:teuthology.orchestra.run.smithi167.stdout:Nothing to do. 2023-11-30T22:42:00.926 INFO:teuthology.orchestra.run.smithi167.stdout:Complete! 2023-11-30T22:42:01.024 DEBUG:teuthology.orchestra.run.smithi167:> echo no | sudo yum reinstall kernel || true 2023-11-30T22:42:01.166 INFO:teuthology.orchestra.run.smithi038.stdout:Package kernel-4.18.0-80.el8.x86_64 is already installed. 2023-11-30T22:42:01.166 INFO:teuthology.orchestra.run.smithi038.stdout:Package kernel-4.18.0-425.3.1.el8.x86_64 is already installed. 2023-11-30T22:42:01.166 INFO:teuthology.orchestra.run.smithi038.stdout:Package kernel-4.18.0-305.25.1.el8_4.x86_64 is already installed. 2023-11-30T22:42:01.312 INFO:teuthology.orchestra.run.smithi038.stdout:Dependencies resolved. 2023-11-30T22:42:01.314 INFO:teuthology.orchestra.run.smithi038.stdout:Nothing to do. 2023-11-30T22:42:01.314 INFO:teuthology.orchestra.run.smithi038.stdout:Complete! 2023-11-30T22:42:01.372 INFO:teuthology.orchestra.run.smithi167.stdout:Updating Subscription Management repositories. 2023-11-30T22:42:01.372 INFO:teuthology.orchestra.run.smithi167.stdout:Unable to read consumer identity 2023-11-30T22:42:01.437 DEBUG:teuthology.orchestra.run.smithi038:> echo no | sudo yum reinstall kernel || true 2023-11-30T22:42:01.666 INFO:teuthology.orchestra.run.smithi167.stdout:Last metadata expiration check: 0:00:01 ago on Thu 30 Nov 2023 10:42:00 PM UTC. 2023-11-30T22:42:01.796 INFO:teuthology.orchestra.run.smithi167.stdout:Installed package kernel-4.18.0-80.el8.x86_64 (from anaconda) not available. 2023-11-30T22:42:01.796 INFO:teuthology.orchestra.run.smithi167.stdout:Installed package kernel-4.18.0-425.3.1.el8.x86_64 (from rhel-8-for-x86_64-baseos-rpms) not available. 2023-11-30T22:42:01.796 INFO:teuthology.orchestra.run.smithi167.stdout:Installed package kernel-4.18.0-305.25.1.el8_4.x86_64 (from rhel-8-for-x86_64-baseos-rpms) not available. 2023-11-30T22:42:01.803 INFO:teuthology.orchestra.run.smithi038.stdout:Updating Subscription Management repositories. 2023-11-30T22:42:01.803 INFO:teuthology.orchestra.run.smithi038.stdout:Unable to read consumer identity 2023-11-30T22:42:01.824 INFO:teuthology.orchestra.run.smithi167.stderr:Error: No packages marked for reinstall. 2023-11-30T22:42:01.875 DEBUG:teuthology.orchestra.run.smithi167:> sudo yum reinstall -y kernel || true 2023-11-30T22:42:02.108 INFO:teuthology.orchestra.run.smithi038.stdout:Last metadata expiration check: 0:00:02 ago on Thu 30 Nov 2023 10:42:00 PM UTC. 2023-11-30T22:42:02.220 INFO:teuthology.orchestra.run.smithi167.stdout:Updating Subscription Management repositories. 2023-11-30T22:42:02.220 INFO:teuthology.orchestra.run.smithi167.stdout:Unable to read consumer identity 2023-11-30T22:42:02.249 INFO:teuthology.orchestra.run.smithi038.stdout:Installed package kernel-4.18.0-80.el8.x86_64 (from anaconda) not available. 2023-11-30T22:42:02.249 INFO:teuthology.orchestra.run.smithi038.stdout:Installed package kernel-4.18.0-425.3.1.el8.x86_64 (from rhel-8-for-x86_64-baseos-rpms) not available. 2023-11-30T22:42:02.249 INFO:teuthology.orchestra.run.smithi038.stdout:Installed package kernel-4.18.0-305.25.1.el8_4.x86_64 (from rhel-8-for-x86_64-baseos-rpms) not available. 2023-11-30T22:42:02.275 INFO:teuthology.orchestra.run.smithi038.stderr:Error: No packages marked for reinstall. 2023-11-30T22:42:02.327 DEBUG:teuthology.orchestra.run.smithi038:> sudo yum reinstall -y kernel || true 2023-11-30T22:42:02.506 INFO:teuthology.orchestra.run.smithi167.stdout:Last metadata expiration check: 0:00:02 ago on Thu 30 Nov 2023 10:42:00 PM UTC. 2023-11-30T22:42:02.628 INFO:teuthology.orchestra.run.smithi167.stdout:Installed package kernel-4.18.0-80.el8.x86_64 (from anaconda) not available. 2023-11-30T22:42:02.628 INFO:teuthology.orchestra.run.smithi167.stdout:Installed package kernel-4.18.0-425.3.1.el8.x86_64 (from rhel-8-for-x86_64-baseos-rpms) not available. 2023-11-30T22:42:02.629 INFO:teuthology.orchestra.run.smithi167.stdout:Installed package kernel-4.18.0-305.25.1.el8_4.x86_64 (from rhel-8-for-x86_64-baseos-rpms) not available. 2023-11-30T22:42:02.650 INFO:teuthology.orchestra.run.smithi167.stderr:Error: No packages marked for reinstall. 2023-11-30T22:42:02.694 INFO:teuthology.orchestra.run.smithi038.stdout:Updating Subscription Management repositories. 2023-11-30T22:42:02.694 INFO:teuthology.orchestra.run.smithi038.stdout:Unable to read consumer identity 2023-11-30T22:42:02.700 DEBUG:teuthology.orchestra.run.smithi167:> rpm -q kernel | sort -rV | head -n 1 2023-11-30T22:42:02.824 INFO:teuthology.orchestra.run.smithi167.stdout:kernel-4.18.0-425.3.1.el8.x86_64 2023-11-30T22:42:02.825 DEBUG:teuthology.task.kernel:get_latest_image_version_rpm: 4.18.0-425.3.1.el8.x86_64 2023-11-30T22:42:02.825 INFO:teuthology.task.kernel:Not newest distro kernel. Current: 4.18.0-305.25.1.el8_4.x86_64 Expected: 4.18.0-425.3.1.el8.x86_64 2023-11-30T22:42:02.825 INFO:teuthology.task.kernel:Skipping firmware on distro kernel 2023-11-30T22:42:02.825 DEBUG:teuthology.task.kernel:src is distro, skipping download 2023-11-30T22:42:02.825 INFO:teuthology.task.kernel:Installing distro kernel on host.b... 2023-11-30T22:42:02.825 DEBUG:teuthology.task.kernel:install_kernel(remote=ubuntu@smithi167.front.sepia.ceph.com, path=None, version=distro) 2023-11-30T22:42:02.825 DEBUG:teuthology.orchestra.run.smithi167:> rpm -q kernel | sort -rV | head -n 1 2023-11-30T22:42:02.950 INFO:teuthology.orchestra.run.smithi167.stdout:kernel-4.18.0-425.3.1.el8.x86_64 2023-11-30T22:42:02.950 DEBUG:teuthology.task.kernel:get_latest_image_version_rpm: 4.18.0-425.3.1.el8.x86_64 2023-11-30T22:42:02.951 DEBUG:teuthology.orchestra.run.smithi167:> sudo rpm -qi grub2-tools 2023-11-30T22:42:02.978 INFO:teuthology.orchestra.run.smithi167.stdout:Name : grub2-tools 2023-11-30T22:42:02.978 INFO:teuthology.orchestra.run.smithi167.stdout:Epoch : 1 2023-11-30T22:42:02.978 INFO:teuthology.orchestra.run.smithi167.stdout:Version : 2.02 2023-11-30T22:42:02.979 INFO:teuthology.orchestra.run.smithi167.stdout:Release : 99.el8_4.1 2023-11-30T22:42:02.979 INFO:teuthology.orchestra.run.smithi167.stdout:Architecture: x86_64 2023-11-30T22:42:02.979 INFO:teuthology.orchestra.run.smithi167.stdout:Install Date: Wed 21 Dec 2022 01:02:32 PM UTC 2023-11-30T22:42:02.979 INFO:teuthology.orchestra.run.smithi167.stdout:Group : System Environment/Base 2023-11-30T22:42:02.979 INFO:teuthology.orchestra.run.smithi167.stdout:Size : 9264631 2023-11-30T22:42:02.979 INFO:teuthology.orchestra.run.smithi167.stdout:License : GPLv3+ 2023-11-30T22:42:02.980 INFO:teuthology.orchestra.run.smithi167.stdout:Signature : RSA/SHA256, Thu 09 Sep 2021 09:41:55 AM UTC, Key ID 199e2f91fd431d51 2023-11-30T22:42:02.980 INFO:teuthology.orchestra.run.smithi167.stdout:Source RPM : grub2-2.02-99.el8_4.1.src.rpm 2023-11-30T22:42:02.980 INFO:teuthology.orchestra.run.smithi167.stdout:Build Date : Tue 18 May 2021 07:46:34 AM UTC 2023-11-30T22:42:02.980 INFO:teuthology.orchestra.run.smithi167.stdout:Build Host : x86-vm-07.build.eng.bos.redhat.com 2023-11-30T22:42:02.980 INFO:teuthology.orchestra.run.smithi167.stdout:Relocations : (not relocatable) 2023-11-30T22:42:02.981 INFO:teuthology.orchestra.run.smithi167.stdout:Packager : Red Hat, Inc. 2023-11-30T22:42:02.981 INFO:teuthology.orchestra.run.smithi167.stdout:Vendor : Red Hat, Inc. 2023-11-30T22:42:02.981 INFO:teuthology.orchestra.run.smithi167.stdout:URL : http://www.gnu.org/software/grub/ 2023-11-30T22:42:02.981 INFO:teuthology.orchestra.run.smithi167.stdout:Summary : Support tools for GRUB. 2023-11-30T22:42:02.982 INFO:teuthology.orchestra.run.smithi167.stdout:Description : 2023-11-30T22:42:02.982 INFO:teuthology.orchestra.run.smithi167.stdout: 2023-11-30T22:42:02.982 INFO:teuthology.orchestra.run.smithi167.stdout:The GRand Unified Bootloader (GRUB) is a highly configurable and 2023-11-30T22:42:02.982 INFO:teuthology.orchestra.run.smithi167.stdout:customizable bootloader with modular architecture. It supports a rich 2023-11-30T22:42:02.982 INFO:teuthology.orchestra.run.smithi167.stdout:variety of kernel formats, file systems, computer architectures and 2023-11-30T22:42:02.982 INFO:teuthology.orchestra.run.smithi167.stdout:hardware devices. 2023-11-30T22:42:02.982 INFO:teuthology.orchestra.run.smithi167.stdout: 2023-11-30T22:42:02.982 INFO:teuthology.orchestra.run.smithi167.stdout:This subpackage provides tools for support of all platforms. 2023-11-30T22:42:02.983 INFO:teuthology.task.kernel:Updating Grub Version: grub2 2023-11-30T22:42:02.983 INFO:teuthology.task.kernel:Updating grub on smithi167 to boot 4.18.0-425.3.1.el8.x86_64 2023-11-30T22:42:02.984 DEBUG:teuthology.orchestra.run.smithi167:> sudo grub2-mkconfig -o /boot/grub2/grub.cfg 2023-11-30T22:42:02.988 INFO:teuthology.orchestra.run.smithi038.stdout:Last metadata expiration check: 0:00:02 ago on Thu 30 Nov 2023 10:42:00 PM UTC. 2023-11-30T22:42:03.182 INFO:teuthology.orchestra.run.smithi038.stdout:Installed package kernel-4.18.0-80.el8.x86_64 (from anaconda) not available. 2023-11-30T22:42:03.182 INFO:teuthology.orchestra.run.smithi038.stdout:Installed package kernel-4.18.0-425.3.1.el8.x86_64 (from rhel-8-for-x86_64-baseos-rpms) not available. 2023-11-30T22:42:03.182 INFO:teuthology.orchestra.run.smithi038.stdout:Installed package kernel-4.18.0-305.25.1.el8_4.x86_64 (from rhel-8-for-x86_64-baseos-rpms) not available. 2023-11-30T22:42:03.197 INFO:teuthology.orchestra.run.smithi038.stderr:Error: No packages marked for reinstall. 2023-11-30T22:42:03.250 DEBUG:teuthology.orchestra.run.smithi038:> rpm -q kernel | sort -rV | head -n 1 2023-11-30T22:42:03.380 INFO:teuthology.orchestra.run.smithi038.stdout:kernel-4.18.0-425.3.1.el8.x86_64 2023-11-30T22:42:03.380 DEBUG:teuthology.task.kernel:get_latest_image_version_rpm: 4.18.0-425.3.1.el8.x86_64 2023-11-30T22:42:03.381 INFO:teuthology.task.kernel:Not newest distro kernel. Current: 4.18.0-305.25.1.el8_4.x86_64 Expected: 4.18.0-425.3.1.el8.x86_64 2023-11-30T22:42:03.381 INFO:teuthology.task.kernel:Skipping firmware on distro kernel 2023-11-30T22:42:03.381 DEBUG:teuthology.task.kernel:src is distro, skipping download 2023-11-30T22:42:03.381 INFO:teuthology.task.kernel:Installing distro kernel on host.a... 2023-11-30T22:42:03.381 DEBUG:teuthology.task.kernel:install_kernel(remote=ubuntu@smithi038.front.sepia.ceph.com, path=None, version=distro) 2023-11-30T22:42:03.381 DEBUG:teuthology.orchestra.run.smithi038:> rpm -q kernel | sort -rV | head -n 1 2023-11-30T22:42:03.510 INFO:teuthology.orchestra.run.smithi038.stdout:kernel-4.18.0-425.3.1.el8.x86_64 2023-11-30T22:42:03.511 DEBUG:teuthology.task.kernel:get_latest_image_version_rpm: 4.18.0-425.3.1.el8.x86_64 2023-11-30T22:42:03.511 DEBUG:teuthology.orchestra.run.smithi038:> sudo rpm -qi grub2-tools 2023-11-30T22:42:03.539 INFO:teuthology.orchestra.run.smithi038.stdout:Name : grub2-tools 2023-11-30T22:42:03.539 INFO:teuthology.orchestra.run.smithi038.stdout:Epoch : 1 2023-11-30T22:42:03.539 INFO:teuthology.orchestra.run.smithi038.stdout:Version : 2.02 2023-11-30T22:42:03.539 INFO:teuthology.orchestra.run.smithi038.stdout:Release : 99.el8_4.1 2023-11-30T22:42:03.539 INFO:teuthology.orchestra.run.smithi038.stdout:Architecture: x86_64 2023-11-30T22:42:03.539 INFO:teuthology.orchestra.run.smithi038.stdout:Install Date: Wed 21 Dec 2022 01:02:32 PM UTC 2023-11-30T22:42:03.539 INFO:teuthology.orchestra.run.smithi038.stdout:Group : System Environment/Base 2023-11-30T22:42:03.539 INFO:teuthology.orchestra.run.smithi038.stdout:Size : 9264631 2023-11-30T22:42:03.540 INFO:teuthology.orchestra.run.smithi038.stdout:License : GPLv3+ 2023-11-30T22:42:03.540 INFO:teuthology.orchestra.run.smithi038.stdout:Signature : RSA/SHA256, Thu 09 Sep 2021 09:41:55 AM UTC, Key ID 199e2f91fd431d51 2023-11-30T22:42:03.540 INFO:teuthology.orchestra.run.smithi038.stdout:Source RPM : grub2-2.02-99.el8_4.1.src.rpm 2023-11-30T22:42:03.540 INFO:teuthology.orchestra.run.smithi038.stdout:Build Date : Tue 18 May 2021 07:46:34 AM UTC 2023-11-30T22:42:03.540 INFO:teuthology.orchestra.run.smithi038.stdout:Build Host : x86-vm-07.build.eng.bos.redhat.com 2023-11-30T22:42:03.540 INFO:teuthology.orchestra.run.smithi038.stdout:Relocations : (not relocatable) 2023-11-30T22:42:03.540 INFO:teuthology.orchestra.run.smithi038.stdout:Packager : Red Hat, Inc. 2023-11-30T22:42:03.540 INFO:teuthology.orchestra.run.smithi038.stdout:Vendor : Red Hat, Inc. 2023-11-30T22:42:03.540 INFO:teuthology.orchestra.run.smithi038.stdout:URL : http://www.gnu.org/software/grub/ 2023-11-30T22:42:03.540 INFO:teuthology.orchestra.run.smithi038.stdout:Summary : Support tools for GRUB. 2023-11-30T22:42:03.540 INFO:teuthology.orchestra.run.smithi038.stdout:Description : 2023-11-30T22:42:03.541 INFO:teuthology.orchestra.run.smithi038.stdout: 2023-11-30T22:42:03.541 INFO:teuthology.orchestra.run.smithi038.stdout:The GRand Unified Bootloader (GRUB) is a highly configurable and 2023-11-30T22:42:03.541 INFO:teuthology.orchestra.run.smithi038.stdout:customizable bootloader with modular architecture. It supports a rich 2023-11-30T22:42:03.541 INFO:teuthology.orchestra.run.smithi038.stdout:variety of kernel formats, file systems, computer architectures and 2023-11-30T22:42:03.541 INFO:teuthology.orchestra.run.smithi038.stdout:hardware devices. 2023-11-30T22:42:03.541 INFO:teuthology.orchestra.run.smithi038.stdout: 2023-11-30T22:42:03.541 INFO:teuthology.orchestra.run.smithi038.stdout:This subpackage provides tools for support of all platforms. 2023-11-30T22:42:03.542 INFO:teuthology.task.kernel:Updating Grub Version: grub2 2023-11-30T22:42:03.542 INFO:teuthology.task.kernel:Updating grub on smithi038 to boot 4.18.0-425.3.1.el8.x86_64 2023-11-30T22:42:03.542 DEBUG:teuthology.orchestra.run.smithi038:> sudo grub2-mkconfig -o /boot/grub2/grub.cfg 2023-11-30T22:42:04.380 INFO:teuthology.orchestra.run.smithi167.stderr:Generating grub configuration file ... 2023-11-30T22:42:04.794 INFO:teuthology.orchestra.run.smithi038.stderr:Generating grub configuration file ... 2023-11-30T22:42:06.355 INFO:teuthology.orchestra.run.smithi167.stderr:done 2023-11-30T22:42:06.357 DEBUG:teuthology.orchestra.run.smithi167:> mktemp 2023-11-30T22:42:06.371 INFO:teuthology.orchestra.run.smithi167.stdout:/tmp/tmp.hXIejojRKM 2023-11-30T22:42:06.371 DEBUG:teuthology.orchestra.run.smithi167:> sudo cp /boot/grub2/grub.cfg /tmp/tmp.hXIejojRKM 2023-11-30T22:42:06.442 DEBUG:teuthology.orchestra.run.smithi167:> sudo chmod 0666 /tmp/tmp.hXIejojRKM 2023-11-30T22:42:06.594 DEBUG:teuthology.orchestra.remote:smithi167:/tmp/tmp.hXIejojRKM is 6KB 2023-11-30T22:42:06.643 DEBUG:teuthology.orchestra.run.smithi167:> rm -fr /tmp/tmp.hXIejojRKM 2023-11-30T22:42:06.656 DEBUG:teuthology.orchestra.run.smithi167:> sudo /bin/ls /boot/loader/entries || true 2023-11-30T22:42:06.724 INFO:teuthology.orchestra.run.smithi167.stdout:298e228f3b5e401e8ac0f5ae159a2e06-0-rescue.conf 2023-11-30T22:42:06.724 INFO:teuthology.orchestra.run.smithi167.stdout:298e228f3b5e401e8ac0f5ae159a2e06-4.18.0-305.25.1.el8_4.x86_64.conf 2023-11-30T22:42:06.724 INFO:teuthology.orchestra.run.smithi167.stdout:298e228f3b5e401e8ac0f5ae159a2e06-4.18.0-425.3.1.el8.x86_64.conf 2023-11-30T22:42:06.724 INFO:teuthology.orchestra.run.smithi167.stdout:298e228f3b5e401e8ac0f5ae159a2e06-4.18.0-80.el8.x86_64.conf 2023-11-30T22:42:06.725 DEBUG:teuthology.orchestra.run.smithi167:> sudo grub2-set-default 298e228f3b5e401e8ac0f5ae159a2e06-4.18.0-425.3.1.el8.x86_64 2023-11-30T22:42:06.882 DEBUG:teuthology.orchestra.run.smithi167:> sudo shutdown -r now 2023-11-30T22:42:06.955 INFO:teuthology.orchestra.run.smithi038.stderr:done 2023-11-30T22:42:06.957 DEBUG:teuthology.orchestra.run.smithi038:> mktemp 2023-11-30T22:42:06.987 INFO:teuthology.orchestra.run.smithi038.stdout:/tmp/tmp.Scoq6DNFlq 2023-11-30T22:42:06.987 DEBUG:teuthology.orchestra.run.smithi038:> sudo cp /boot/grub2/grub.cfg /tmp/tmp.Scoq6DNFlq 2023-11-30T22:42:07.056 DEBUG:teuthology.orchestra.run.smithi038:> sudo chmod 0666 /tmp/tmp.Scoq6DNFlq 2023-11-30T22:42:07.208 DEBUG:teuthology.orchestra.remote:smithi038:/tmp/tmp.Scoq6DNFlq is 6KB 2023-11-30T22:42:07.257 DEBUG:teuthology.orchestra.run.smithi038:> rm -fr /tmp/tmp.Scoq6DNFlq 2023-11-30T22:42:07.271 DEBUG:teuthology.orchestra.run.smithi038:> sudo /bin/ls /boot/loader/entries || true 2023-11-30T22:42:07.338 INFO:teuthology.orchestra.run.smithi038.stdout:298e228f3b5e401e8ac0f5ae159a2e06-0-rescue.conf 2023-11-30T22:42:07.338 INFO:teuthology.orchestra.run.smithi038.stdout:298e228f3b5e401e8ac0f5ae159a2e06-4.18.0-305.25.1.el8_4.x86_64.conf 2023-11-30T22:42:07.338 INFO:teuthology.orchestra.run.smithi038.stdout:298e228f3b5e401e8ac0f5ae159a2e06-4.18.0-425.3.1.el8.x86_64.conf 2023-11-30T22:42:07.338 INFO:teuthology.orchestra.run.smithi038.stdout:298e228f3b5e401e8ac0f5ae159a2e06-4.18.0-80.el8.x86_64.conf 2023-11-30T22:42:07.339 DEBUG:teuthology.orchestra.run.smithi038:> sudo grub2-set-default 298e228f3b5e401e8ac0f5ae159a2e06-4.18.0-425.3.1.el8.x86_64 2023-11-30T22:42:07.535 DEBUG:teuthology.orchestra.run.smithi038:> sudo shutdown -r now 2023-11-30T22:42:36.914 INFO:teuthology.task.kernel:Checking client host.b for new kernel version... 2023-11-30T22:42:36.915 INFO:teuthology.orchestra.remote:Trying to reconnect to host 'ubuntu@smithi167.front.sepia.ceph.com' 2023-11-30T22:42:36.916 DEBUG:teuthology.orchestra.connection:{'hostname': 'smithi167.front.sepia.ceph.com', 'username': 'ubuntu', 'timeout': 60} 2023-11-30T22:42:37.539 INFO:teuthology.task.kernel:Checking client host.a for new kernel version... 2023-11-30T22:42:37.540 INFO:teuthology.orchestra.remote:Trying to reconnect to host 'ubuntu@smithi038.front.sepia.ceph.com' 2023-11-30T22:42:37.540 DEBUG:teuthology.orchestra.connection:{'hostname': 'smithi038.front.sepia.ceph.com', 'username': 'ubuntu', 'timeout': 60} 2023-11-30T22:43:11.586 DEBUG:teuthology.orchestra.remote:[Errno None] Unable to connect to port 22 on 172.21.15.167 2023-11-30T22:43:20.594 INFO:teuthology.orchestra.remote:Trying to reconnect to host 'ubuntu@smithi167.front.sepia.ceph.com' 2023-11-30T22:43:20.595 DEBUG:teuthology.orchestra.connection:{'hostname': 'smithi167.front.sepia.ceph.com', 'username': 'ubuntu', 'timeout': 60} 2023-11-30T22:43:37.558 DEBUG:teuthology.orchestra.remote:timed out 2023-11-30T22:43:46.568 INFO:teuthology.orchestra.remote:Trying to reconnect to host 'ubuntu@smithi038.front.sepia.ceph.com' 2023-11-30T22:43:46.568 DEBUG:teuthology.orchestra.connection:{'hostname': 'smithi038.front.sepia.ceph.com', 'username': 'ubuntu', 'timeout': 60} 2023-11-30T22:43:49.994 DEBUG:teuthology.orchestra.run.smithi038:> true 2023-11-30T22:43:50.267 INFO:teuthology.orchestra.remote:Successfully reconnected to host 'ubuntu@smithi038.front.sepia.ceph.com' 2023-11-30T22:43:50.267 INFO:teuthology.task.kernel:Checking kernel version of host.a, want "4.18.0-425.3.1.el8.x86_64"... 2023-11-30T22:43:50.267 DEBUG:teuthology.orchestra.run.smithi038:> uname -r 2023-11-30T22:43:50.282 INFO:teuthology.orchestra.run.smithi038.stdout:4.18.0-425.3.1.el8.x86_64 2023-11-30T22:43:50.282 DEBUG:teuthology.task.kernel:current kernel version is 4.18.0-425.3.1.el8.x86_64 vs 4.18.0-425.3.1.el8.x86_64 2023-11-30T22:43:50.282 DEBUG:teuthology.task.kernel:utsrelease strings match, do not need to install 2023-11-30T22:43:50.282 DEBUG:teuthology.task.kernel:Distro of this test job: rhel 2023-11-30T22:43:51.283 INFO:teuthology.task.kernel:Enabling kdb on host.a... 2023-11-30T22:43:51.284 DEBUG:teuthology.orchestra.run.smithi038:> echo ttyS1 | sudo tee /sys/module/kgdboc/parameters/kgdboc 2023-11-30T22:43:51.509 INFO:teuthology.orchestra.run.smithi038.stdout:ttyS1 2023-11-30T22:43:51.522 DEBUG:teuthology.parallel:result is None 2023-11-30T22:43:52.564 DEBUG:teuthology.orchestra.run.smithi167:> true 2023-11-30T22:43:52.810 INFO:teuthology.orchestra.remote:Successfully reconnected to host 'ubuntu@smithi167.front.sepia.ceph.com' 2023-11-30T22:43:52.810 INFO:teuthology.task.kernel:Checking kernel version of host.b, want "4.18.0-425.3.1.el8.x86_64"... 2023-11-30T22:43:52.810 DEBUG:teuthology.orchestra.run.smithi167:> uname -r 2023-11-30T22:43:52.864 INFO:teuthology.orchestra.run.smithi167.stdout:4.18.0-425.3.1.el8.x86_64 2023-11-30T22:43:52.864 DEBUG:teuthology.task.kernel:current kernel version is 4.18.0-425.3.1.el8.x86_64 vs 4.18.0-425.3.1.el8.x86_64 2023-11-30T22:43:52.864 DEBUG:teuthology.task.kernel:utsrelease strings match, do not need to install 2023-11-30T22:43:52.864 DEBUG:teuthology.task.kernel:Distro of this test job: rhel 2023-11-30T22:43:53.866 INFO:teuthology.task.kernel:Enabling kdb on host.b... 2023-11-30T22:43:53.866 DEBUG:teuthology.orchestra.run.smithi167:> echo ttyS1 | sudo tee /sys/module/kgdboc/parameters/kgdboc 2023-11-30T22:43:53.953 INFO:teuthology.orchestra.run.smithi167.stdout:ttyS1 2023-11-30T22:43:53.968 DEBUG:teuthology.parallel:result is None 2023-11-30T22:43:53.968 INFO:teuthology.run_tasks:Running task internal.base... 2023-11-30T22:43:53.976 INFO:teuthology.task.internal:Creating test directory... 2023-11-30T22:43:53.976 DEBUG:teuthology.orchestra.run.smithi038:> mkdir -p -m0755 -- /home/ubuntu/cephtest 2023-11-30T22:43:53.979 DEBUG:teuthology.orchestra.run.smithi167:> mkdir -p -m0755 -- /home/ubuntu/cephtest 2023-11-30T22:43:53.994 INFO:teuthology.run_tasks:Running task internal.archive_upload... 2023-11-30T22:43:54.005 INFO:teuthology.run_tasks:Running task internal.archive... 2023-11-30T22:43:54.036 INFO:teuthology.task.internal:Creating archive directory... 2023-11-30T22:43:54.036 DEBUG:teuthology.orchestra.run.smithi038:> install -d -m0755 -- /home/ubuntu/cephtest/archive 2023-11-30T22:43:54.039 DEBUG:teuthology.orchestra.run.smithi167:> install -d -m0755 -- /home/ubuntu/cephtest/archive 2023-11-30T22:43:54.081 INFO:teuthology.run_tasks:Running task internal.coredump... 2023-11-30T22:43:54.090 INFO:teuthology.task.internal:Enabling coredump saving... 2023-11-30T22:43:54.090 DEBUG:teuthology.orchestra.run.smithi038:> 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-11-30T22:43:54.097 DEBUG:teuthology.orchestra.run.smithi167:> 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-11-30T22:43:54.134 INFO:teuthology.orchestra.run.smithi038.stdout:kernel.core_pattern = /home/ubuntu/cephtest/archive/coredump/%t.%p.core 2023-11-30T22:43:54.146 INFO:teuthology.orchestra.run.smithi038.stdout:kernel.core_pattern=/home/ubuntu/cephtest/archive/coredump/%t.%p.core 2023-11-30T22:43:54.174 INFO:teuthology.orchestra.run.smithi167.stdout:kernel.core_pattern = /home/ubuntu/cephtest/archive/coredump/%t.%p.core 2023-11-30T22:43:54.184 INFO:teuthology.orchestra.run.smithi167.stdout:kernel.core_pattern=/home/ubuntu/cephtest/archive/coredump/%t.%p.core 2023-11-30T22:43:54.186 INFO:teuthology.run_tasks:Running task internal.sudo... 2023-11-30T22:43:54.193 INFO:teuthology.task.internal:Configuring sudo... 2023-11-30T22:43:54.193 DEBUG:teuthology.orchestra.run.smithi038:> sudo sed -i.orig.teuthology -e 's/^\([^#]*\) \(requiretty\)/\1 !\2/g' -e 's/^\([^#]*\) !\(visiblepw\)/\1 \2/g' /etc/sudoers 2023-11-30T22:43:54.195 DEBUG:teuthology.orchestra.run.smithi167:> sudo sed -i.orig.teuthology -e 's/^\([^#]*\) \(requiretty\)/\1 !\2/g' -e 's/^\([^#]*\) !\(visiblepw\)/\1 \2/g' /etc/sudoers 2023-11-30T22:43:54.220 INFO:teuthology.run_tasks:Running task internal.syslog... 2023-11-30T22:43:54.229 INFO:teuthology.task.internal.syslog:Starting syslog monitoring... 2023-11-30T22:43:54.229 DEBUG:teuthology.orchestra.run.smithi038:> mkdir -p -m0755 -- /home/ubuntu/cephtest/archive/syslog 2023-11-30T22:43:54.260 DEBUG:teuthology.orchestra.run.smithi167:> mkdir -p -m0755 -- /home/ubuntu/cephtest/archive/syslog 2023-11-30T22:43:54.274 DEBUG:teuthology.orchestra.run.smithi038:> install -m 666 /dev/null /home/ubuntu/cephtest/archive/syslog/kern.log 2023-11-30T22:43:54.353 DEBUG:teuthology.orchestra.run.smithi038:> sudo chcon system_u:object_r:var_log_t:s0 /home/ubuntu/cephtest/archive/syslog/kern.log 2023-11-30T22:43:54.392 DEBUG:teuthology.orchestra.run.smithi038:> install -m 666 /dev/null /home/ubuntu/cephtest/archive/syslog/misc.log 2023-11-30T22:43:54.471 DEBUG:teuthology.orchestra.run.smithi038:> sudo chcon system_u:object_r:var_log_t:s0 /home/ubuntu/cephtest/archive/syslog/misc.log 2023-11-30T22:43:54.509 DEBUG:teuthology.orchestra.run.smithi038:> set -ex 2023-11-30T22:43:54.509 DEBUG:teuthology.orchestra.run.smithi038:> sudo dd of=/etc/rsyslog.d/80-cephtest.conf 2023-11-30T22:43:54.573 DEBUG:teuthology.orchestra.run.smithi167:> install -m 666 /dev/null /home/ubuntu/cephtest/archive/syslog/kern.log 2023-11-30T22:43:54.613 DEBUG:teuthology.orchestra.run.smithi167:> sudo chcon system_u:object_r:var_log_t:s0 /home/ubuntu/cephtest/archive/syslog/kern.log 2023-11-30T22:43:54.664 DEBUG:teuthology.orchestra.run.smithi167:> install -m 666 /dev/null /home/ubuntu/cephtest/archive/syslog/misc.log 2023-11-30T22:43:54.746 DEBUG:teuthology.orchestra.run.smithi167:> sudo chcon system_u:object_r:var_log_t:s0 /home/ubuntu/cephtest/archive/syslog/misc.log 2023-11-30T22:43:54.787 DEBUG:teuthology.orchestra.run.smithi167:> set -ex 2023-11-30T22:43:54.788 DEBUG:teuthology.orchestra.run.smithi167:> sudo dd of=/etc/rsyslog.d/80-cephtest.conf 2023-11-30T22:43:54.853 DEBUG:teuthology.orchestra.run.smithi038:> sudo service rsyslog restart 2023-11-30T22:43:54.855 DEBUG:teuthology.orchestra.run.smithi167:> sudo service rsyslog restart 2023-11-30T22:43:54.933 INFO:teuthology.orchestra.run.smithi038.stderr:Redirecting to /bin/systemctl restart rsyslog.service 2023-11-30T22:43:54.972 INFO:teuthology.orchestra.run.smithi167.stderr:Redirecting to /bin/systemctl restart rsyslog.service 2023-11-30T22:43:55.402 INFO:teuthology.run_tasks:Running task internal.timer... 2023-11-30T22:43:55.410 INFO:teuthology.task.internal:Starting timer... 2023-11-30T22:43:55.411 INFO:teuthology.run_tasks:Running task pcp... 2023-11-30T22:43:55.432 INFO:teuthology.run_tasks:Running task selinux... 2023-11-30T22:43:55.464 DEBUG:teuthology.task:Applying overrides for task selinux: {'whitelist': ['scontext=system_u:system_r:logrotate_t:s0']} 2023-11-30T22:43:55.464 DEBUG:teuthology.orchestra.run.smithi038:> sudo service auditd rotate 2023-11-30T22:43:55.539 INFO:teuthology.orchestra.run.smithi038.stdout:Rotating logs: [ OK ] 2023-11-30T22:43:55.542 DEBUG:teuthology.orchestra.run.smithi167:> sudo service auditd rotate 2023-11-30T22:43:55.612 INFO:teuthology.orchestra.run.smithi167.stdout:Rotating logs: [ OK ] 2023-11-30T22:43:55.613 DEBUG:teuthology.task.selinux:Getting current SELinux state 2023-11-30T22:43:55.613 DEBUG:teuthology.orchestra.run.smithi038:> /usr/sbin/getenforce 2023-11-30T22:43:55.638 INFO:teuthology.orchestra.run.smithi038.stdout:Permissive 2023-11-30T22:43:55.639 DEBUG:teuthology.orchestra.run.smithi167:> /usr/sbin/getenforce 2023-11-30T22:43:55.679 INFO:teuthology.orchestra.run.smithi167.stdout:Permissive 2023-11-30T22:43:55.680 DEBUG:teuthology.task.selinux:Existing SELinux modes: {'ubuntu@smithi038.front.sepia.ceph.com': 'permissive', 'ubuntu@smithi167.front.sepia.ceph.com': 'permissive'} 2023-11-30T22:43:55.680 DEBUG:teuthology.orchestra.run.smithi038:> sudo grep -a 'avc: .*denied' /var/log/audit/audit.log | grep -av -e 'comm="dmidecode"' -e chronyd.service -e 'name="cephtest"' -e scontext=system_u:system_r:nrpe_t:s0 -e scontext=system_u:system_r:pcp_pmlogger_t -e scontext=system_u:system_r:pcp_pmcd_t:s0 -e 'comm="rhsmd"' -e scontext=system_u:system_r:syslogd_t:s0 -e tcontext=system_u:system_r:nrpe_t:s0 -e 'comm="updatedb"' -e 'comm="smartd"' -e 'comm="rhsmcertd-worke"' -e 'comm="setroubleshootd"' -e 'comm="rpm"' -e tcontext=system_u:object_r:container_runtime_exec_t:s0 -e 'comm="ksmtuned"' -e 'comm="sssd"' -e 'comm="sss_cache"' -e context=system_u:system_r:NetworkManager_dispatcher_t:s0 2023-11-30T22:43:55.706 DEBUG:teuthology.orchestra.run:got remote process result: 1 2023-11-30T22:43:55.706 DEBUG:teuthology.orchestra.run.smithi167:> sudo grep -a 'avc: .*denied' /var/log/audit/audit.log | grep -av -e 'comm="dmidecode"' -e chronyd.service -e 'name="cephtest"' -e scontext=system_u:system_r:nrpe_t:s0 -e scontext=system_u:system_r:pcp_pmlogger_t -e scontext=system_u:system_r:pcp_pmcd_t:s0 -e 'comm="rhsmd"' -e scontext=system_u:system_r:syslogd_t:s0 -e tcontext=system_u:system_r:nrpe_t:s0 -e 'comm="updatedb"' -e 'comm="smartd"' -e 'comm="rhsmcertd-worke"' -e 'comm="setroubleshootd"' -e 'comm="rpm"' -e tcontext=system_u:object_r:container_runtime_exec_t:s0 -e 'comm="ksmtuned"' -e 'comm="sssd"' -e 'comm="sss_cache"' -e context=system_u:system_r:NetworkManager_dispatcher_t:s0 2023-11-30T22:43:55.744 DEBUG:teuthology.orchestra.run:got remote process result: 1 2023-11-30T22:43:55.744 INFO:teuthology.task.selinux:Putting SELinux into permissive mode 2023-11-30T22:43:55.744 DEBUG:teuthology.orchestra.run.smithi038:> sudo /usr/sbin/setenforce permissive 2023-11-30T22:43:55.776 DEBUG:teuthology.orchestra.run.smithi167:> sudo /usr/sbin/setenforce permissive 2023-11-30T22:43:55.825 INFO:teuthology.run_tasks:Running task ansible.cephlab... 2023-11-30T22:43:55.842 DEBUG:teuthology.repo_utils:Setting repo remote to https://git.ceph.com/ceph-cm-ansible.git 2023-11-30T22:43:55.848 INFO:teuthology.repo_utils:Fetching git.ceph.com_ceph-cm-ansible_main from origin 2023-11-30T22:43:55.965 DEBUG:teuthology.repo_utils:Resetting repo at /home/teuthworker/src/git.ceph.com_ceph-cm-ansible_main to origin/main 2023-11-30T22:43:55.983 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-11-30T22:43:55.984 DEBUG:teuthology.task.ansible:Running ansible-playbook -v --extra-vars '{"ansible_ssh_user": "ubuntu"}' -i /etc/ansible/hosts --limit smithi038.front.sepia.ceph.com,smithi167.front.sepia.ceph.com /home/teuthworker/src/git.ceph.com_ceph-cm-ansible_main/cephlab.yml 2023-11-30T22:52:55.095 DEBUG:teuthology.task.ansible:Reconnecting to [Remote(name='ubuntu@smithi038.front.sepia.ceph.com'), Remote(name='ubuntu@smithi167.front.sepia.ceph.com')] 2023-11-30T22:52:55.097 INFO:teuthology.orchestra.remote:Trying to reconnect to host 'ubuntu@smithi038.front.sepia.ceph.com' 2023-11-30T22:52:55.098 DEBUG:teuthology.orchestra.connection:{'hostname': 'smithi038.front.sepia.ceph.com', 'username': 'ubuntu', 'timeout': 60} 2023-11-30T22:52:55.169 DEBUG:teuthology.orchestra.run.smithi038:> true 2023-11-30T22:52:55.235 INFO:teuthology.orchestra.remote:Successfully reconnected to host 'ubuntu@smithi038.front.sepia.ceph.com' 2023-11-30T22:52:55.235 INFO:teuthology.orchestra.remote:Trying to reconnect to host 'ubuntu@smithi167.front.sepia.ceph.com' 2023-11-30T22:52:55.236 DEBUG:teuthology.orchestra.connection:{'hostname': 'smithi167.front.sepia.ceph.com', 'username': 'ubuntu', 'timeout': 60} 2023-11-30T22:52:55.303 DEBUG:teuthology.orchestra.run.smithi167:> true 2023-11-30T22:52:55.374 INFO:teuthology.orchestra.remote:Successfully reconnected to host 'ubuntu@smithi167.front.sepia.ceph.com' 2023-11-30T22:52:55.374 INFO:teuthology.run_tasks:Running task clock... 2023-11-30T22:52:55.385 INFO:teuthology.task.clock:Syncing clocks and checking initial clock skew... 2023-11-30T22:52:55.386 INFO:teuthology.orchestra.run:Running command with timeout 360 2023-11-30T22:52:55.386 DEBUG:teuthology.orchestra.run.smithi038:> 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-11-30T22:52:55.389 INFO:teuthology.orchestra.run:Running command with timeout 360 2023-11-30T22:52:55.389 DEBUG:teuthology.orchestra.run.smithi167:> 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-11-30T22:52:55.419 INFO:teuthology.orchestra.run.smithi038.stderr:Failed to stop ntp.service: Unit ntp.service not loaded. 2023-11-30T22:52:55.435 INFO:teuthology.orchestra.run.smithi038.stderr:Failed to stop ntpd.service: Unit ntpd.service not loaded. 2023-11-30T22:52:55.444 INFO:teuthology.orchestra.run.smithi167.stderr:Failed to stop ntp.service: Unit ntp.service not loaded. 2023-11-30T22:52:55.459 INFO:teuthology.orchestra.run.smithi167.stderr:Failed to stop ntpd.service: Unit ntpd.service not loaded. 2023-11-30T22:52:55.478 INFO:teuthology.orchestra.run.smithi038.stderr:sudo: ntpd: command not found 2023-11-30T22:52:55.489 INFO:teuthology.orchestra.run.smithi038.stdout:506 Cannot talk to daemon 2023-11-30T22:52:55.498 INFO:teuthology.orchestra.run.smithi167.stderr:sudo: ntpd: command not found 2023-11-30T22:52:55.504 INFO:teuthology.orchestra.run.smithi038.stderr:Failed to start ntp.service: Unit ntp.service not found. 2023-11-30T22:52:55.508 INFO:teuthology.orchestra.run.smithi167.stdout:506 Cannot talk to daemon 2023-11-30T22:52:55.518 INFO:teuthology.orchestra.run.smithi038.stderr:Failed to start ntpd.service: Unit ntpd.service not found. 2023-11-30T22:52:55.522 INFO:teuthology.orchestra.run.smithi167.stderr:Failed to start ntp.service: Unit ntp.service not found. 2023-11-30T22:52:55.535 INFO:teuthology.orchestra.run.smithi167.stderr:Failed to start ntpd.service: Unit ntpd.service not found. 2023-11-30T22:52:55.593 INFO:teuthology.orchestra.run.smithi038.stderr:bash: ntpq: command not found 2023-11-30T22:52:55.595 INFO:teuthology.orchestra.run.smithi038.stdout:210 Number of sources = 4 2023-11-30T22:52:55.596 INFO:teuthology.orchestra.run.smithi038.stdout:MS Name/IP address Stratum Poll Reach LastRx Last sample 2023-11-30T22:52:55.596 INFO:teuthology.orchestra.run.smithi038.stdout:=============================================================================== 2023-11-30T22:52:55.596 INFO:teuthology.orchestra.run.smithi038.stdout:^? hv01.front.sepia.ceph.com 0 6 0 - +0ns[ +0ns] +/- 0ns 2023-11-30T22:52:55.596 INFO:teuthology.orchestra.run.smithi038.stdout:^? hv02.front.sepia.ceph.com 0 6 0 - +0ns[ +0ns] +/- 0ns 2023-11-30T22:52:55.596 INFO:teuthology.orchestra.run.smithi038.stdout:^? hv03.front.sepia.ceph.com 0 6 0 - +0ns[ +0ns] +/- 0ns 2023-11-30T22:52:55.596 INFO:teuthology.orchestra.run.smithi038.stdout:^? hv04.front.sepia.ceph.com 0 6 0 - +0ns[ +0ns] +/- 0ns 2023-11-30T22:52:55.609 INFO:teuthology.orchestra.run.smithi167.stderr:bash: ntpq: command not found 2023-11-30T22:52:55.612 INFO:teuthology.orchestra.run.smithi167.stdout:210 Number of sources = 4 2023-11-30T22:52:55.612 INFO:teuthology.orchestra.run.smithi167.stdout:MS Name/IP address Stratum Poll Reach LastRx Last sample 2023-11-30T22:52:55.612 INFO:teuthology.orchestra.run.smithi167.stdout:=============================================================================== 2023-11-30T22:52:55.612 INFO:teuthology.orchestra.run.smithi167.stdout:^? hv01.front.sepia.ceph.com 0 6 0 - +0ns[ +0ns] +/- 0ns 2023-11-30T22:52:55.612 INFO:teuthology.orchestra.run.smithi167.stdout:^? hv02.front.sepia.ceph.com 0 6 0 - +0ns[ +0ns] +/- 0ns 2023-11-30T22:52:55.612 INFO:teuthology.orchestra.run.smithi167.stdout:^? hv03.front.sepia.ceph.com 0 6 0 - +0ns[ +0ns] +/- 0ns 2023-11-30T22:52:55.612 INFO:teuthology.orchestra.run.smithi167.stdout:^? hv04.front.sepia.ceph.com 0 6 0 - +0ns[ +0ns] +/- 0ns 2023-11-30T22:52:55.613 INFO:teuthology.run_tasks:Running task pexec... 2023-11-30T22:52:55.623 INFO:teuthology.task.pexec:Executing custom commands... 2023-11-30T22:52:55.623 INFO:teuthology.task.pexec:Running commands on host ubuntu@smithi038.front.sepia.ceph.com 2023-11-30T22:52:55.623 DEBUG:teuthology.orchestra.run.smithi038:> TESTDIR=/home/ubuntu/cephtest bash -s 2023-11-30T22:52:55.624 INFO:teuthology.task.pexec:Running commands on host ubuntu@smithi167.front.sepia.ceph.com 2023-11-30T22:52:55.624 DEBUG:teuthology.orchestra.run.smithi167:> TESTDIR=/home/ubuntu/cephtest bash -s 2023-11-30T22:52:56.048 INFO:teuthology.orchestra.run.smithi038.stdout:Updating Subscription Management repositories. 2023-11-30T22:52:56.053 INFO:teuthology.orchestra.run.smithi167.stdout:Updating Subscription Management repositories. 2023-11-30T22:52:56.897 INFO:teuthology.orchestra.run.smithi167.stdout:Last metadata expiration check: 0:01:40 ago on Thu 30 Nov 2023 10:51:16 PM UTC. 2023-11-30T22:52:56.938 INFO:teuthology.orchestra.run.smithi038.stdout:Last metadata expiration check: 0:01:26 ago on Thu 30 Nov 2023 10:51:30 PM UTC. 2023-11-30T22:52:58.902 INFO:teuthology.orchestra.run.smithi167.stdout:Dependencies resolved. 2023-11-30T22:52:58.902 INFO:teuthology.orchestra.run.smithi167.stdout:================================================================================ 2023-11-30T22:52:58.903 INFO:teuthology.orchestra.run.smithi167.stdout: Package Architecture Version Repository Size 2023-11-30T22:52:58.903 INFO:teuthology.orchestra.run.smithi167.stdout:================================================================================ 2023-11-30T22:52:58.903 INFO:teuthology.orchestra.run.smithi167.stdout:Resetting modules: 2023-11-30T22:52:58.903 INFO:teuthology.orchestra.run.smithi167.stdout: container-tools 2023-11-30T22:52:58.903 INFO:teuthology.orchestra.run.smithi167.stdout: 2023-11-30T22:52:58.903 INFO:teuthology.orchestra.run.smithi167.stdout:Transaction Summary 2023-11-30T22:52:58.903 INFO:teuthology.orchestra.run.smithi167.stdout:================================================================================ 2023-11-30T22:52:58.904 INFO:teuthology.orchestra.run.smithi167.stdout: 2023-11-30T22:52:59.074 INFO:teuthology.orchestra.run.smithi038.stdout:Dependencies resolved. 2023-11-30T22:52:59.075 INFO:teuthology.orchestra.run.smithi038.stdout:================================================================================ 2023-11-30T22:52:59.075 INFO:teuthology.orchestra.run.smithi038.stdout: Package Architecture Version Repository Size 2023-11-30T22:52:59.075 INFO:teuthology.orchestra.run.smithi038.stdout:================================================================================ 2023-11-30T22:52:59.075 INFO:teuthology.orchestra.run.smithi038.stdout:Resetting modules: 2023-11-30T22:52:59.075 INFO:teuthology.orchestra.run.smithi038.stdout: container-tools 2023-11-30T22:52:59.076 INFO:teuthology.orchestra.run.smithi038.stdout: 2023-11-30T22:52:59.076 INFO:teuthology.orchestra.run.smithi038.stdout:Transaction Summary 2023-11-30T22:52:59.076 INFO:teuthology.orchestra.run.smithi038.stdout:================================================================================ 2023-11-30T22:52:59.076 INFO:teuthology.orchestra.run.smithi038.stdout: 2023-11-30T22:52:59.760 INFO:teuthology.orchestra.run.smithi167.stdout:Last metadata expiration check: 0:01:43 ago on Thu 30 Nov 2023 10:51:16 PM UTC. 2023-11-30T22:52:59.982 INFO:teuthology.orchestra.run.smithi038.stdout:Last metadata expiration check: 0:01:29 ago on Thu 30 Nov 2023 10:51:30 PM UTC. 2023-11-30T22:53:01.546 INFO:teuthology.orchestra.run.smithi167.stdout:Complete! 2023-11-30T22:53:01.781 INFO:teuthology.orchestra.run.smithi038.stdout:Complete! 2023-11-30T22:53:02.000 INFO:teuthology.orchestra.run.smithi167.stdout:Updating Subscription Management repositories. 2023-11-30T22:53:02.250 INFO:teuthology.orchestra.run.smithi038.stdout:Updating Subscription Management repositories. 2023-11-30T22:53:02.745 INFO:teuthology.orchestra.run.smithi167.stdout:Last metadata expiration check: 0:01:46 ago on Thu 30 Nov 2023 10:51:16 PM UTC. 2023-11-30T22:53:03.010 INFO:teuthology.orchestra.run.smithi038.stdout:Last metadata expiration check: 0:01:32 ago on Thu 30 Nov 2023 10:51:30 PM UTC. 2023-11-30T22:53:04.756 INFO:teuthology.orchestra.run.smithi167.stdout:Dependencies resolved. 2023-11-30T22:53:04.804 INFO:teuthology.orchestra.run.smithi167.stdout:========================================================================================================= 2023-11-30T22:53:04.805 INFO:teuthology.orchestra.run.smithi167.stdout: Package Arch Version Repository Size 2023-11-30T22:53:04.805 INFO:teuthology.orchestra.run.smithi167.stdout:========================================================================================================= 2023-11-30T22:53:04.805 INFO:teuthology.orchestra.run.smithi167.stdout:Installing group/module packages: 2023-11-30T22:53:04.805 INFO:teuthology.orchestra.run.smithi167.stdout: buildah x86_64 1.21.4-2.module+el8.4.0+12050+ef972f71 rhel-8-for-x86_64-appstream-rpms 8.2 M 2023-11-30T22:53:04.805 INFO:teuthology.orchestra.run.smithi167.stdout: cockpit-podman noarch 32-2.module+el8.4.0+11990+22932769 rhel-8-for-x86_64-appstream-rpms 410 k 2023-11-30T22:53:04.805 INFO:teuthology.orchestra.run.smithi167.stdout: crun x86_64 0.20.1-1.module+el8.4.0+11822+6cc1e7d7 rhel-8-for-x86_64-appstream-rpms 192 k 2023-11-30T22:53:04.805 INFO:teuthology.orchestra.run.smithi167.stdout: skopeo x86_64 1:1.3.1-5.module+el8.4.0+11990+22932769 rhel-8-for-x86_64-appstream-rpms 7.0 M 2023-11-30T22:53:04.805 INFO:teuthology.orchestra.run.smithi167.stdout: toolbox noarch 0.0.8-1.module+el8.4.0+11822+6cc1e7d7 rhel-8-for-x86_64-appstream-rpms 16 k 2023-11-30T22:53:04.805 INFO:teuthology.orchestra.run.smithi167.stdout: udica noarch 0.2.4-2.module+el8.4.0+11822+6cc1e7d7 rhel-8-for-x86_64-appstream-rpms 51 k 2023-11-30T22:53:04.806 INFO:teuthology.orchestra.run.smithi167.stdout:Installing dependencies: 2023-11-30T22:53:04.806 INFO:teuthology.orchestra.run.smithi167.stdout: yajl x86_64 2.1.0-10.el8 rhel-8-for-x86_64-appstream-rpms 41 k 2023-11-30T22:53:04.806 INFO:teuthology.orchestra.run.smithi167.stdout:Installing module profiles: 2023-11-30T22:53:04.806 INFO:teuthology.orchestra.run.smithi167.stdout: container-tools/common 2023-11-30T22:53:04.806 INFO:teuthology.orchestra.run.smithi167.stdout: 2023-11-30T22:53:04.806 INFO:teuthology.orchestra.run.smithi167.stdout:Enabling module streams: 2023-11-30T22:53:04.806 INFO:teuthology.orchestra.run.smithi167.stdout: container-tools rhel8 2023-11-30T22:53:04.806 INFO:teuthology.orchestra.run.smithi167.stdout: 2023-11-30T22:53:04.806 INFO:teuthology.orchestra.run.smithi167.stdout:Transaction Summary 2023-11-30T22:53:04.806 INFO:teuthology.orchestra.run.smithi167.stdout:========================================================================================================= 2023-11-30T22:53:04.806 INFO:teuthology.orchestra.run.smithi167.stdout:Install 7 Packages 2023-11-30T22:53:04.806 INFO:teuthology.orchestra.run.smithi167.stdout: 2023-11-30T22:53:04.807 INFO:teuthology.orchestra.run.smithi167.stdout:Total download size: 16 M 2023-11-30T22:53:04.807 INFO:teuthology.orchestra.run.smithi167.stdout:Installed size: 57 M 2023-11-30T22:53:04.807 INFO:teuthology.orchestra.run.smithi167.stdout:Downloading Packages: 2023-11-30T22:53:04.847 INFO:teuthology.orchestra.run.smithi167.stdout:(1/7): yajl-2.1.0-10.el8.x86_64.rpm 1.0 MB/s | 41 kB 00:00 2023-11-30T22:53:04.863 INFO:teuthology.orchestra.run.smithi167.stdout:(2/7): toolbox-0.0.8-1.module+el8.4.0+11822+6cc 1.0 MB/s | 16 kB 00:00 2023-11-30T22:53:04.867 INFO:teuthology.orchestra.run.smithi167.stdout:(3/7): crun-0.20.1-1.module+el8.4.0+11822+6cc1e 3.1 MB/s | 192 kB 00:00 2023-11-30T22:53:04.876 INFO:teuthology.orchestra.run.smithi167.stdout:(4/7): cockpit-podman-32-2.module+el8.4.0+11990 5.8 MB/s | 410 kB 00:00 2023-11-30T22:53:04.892 INFO:teuthology.orchestra.run.smithi167.stdout:(5/7): udica-0.2.4-2.module+el8.4.0+11822+6cc1e 3.1 MB/s | 51 kB 00:00 2023-11-30T22:53:04.969 INFO:teuthology.orchestra.run.smithi167.stdout:(6/7): skopeo-1.3.1-5.module+el8.4.0+11990+2293 66 MB/s | 7.0 MB 00:00 2023-11-30T22:53:04.996 INFO:teuthology.orchestra.run.smithi167.stdout:(7/7): buildah-1.21.4-2.module+el8.4.0+12050+ef 63 MB/s | 8.2 MB 00:00 2023-11-30T22:53:04.997 INFO:teuthology.orchestra.run.smithi167.stdout:-------------------------------------------------------------------------------- 2023-11-30T22:53:04.997 INFO:teuthology.orchestra.run.smithi167.stdout:Total 83 MB/s | 16 MB 00:00 2023-11-30T22:53:05.003 INFO:teuthology.orchestra.run.smithi167.stdout:Running transaction check 2023-11-30T22:53:05.020 INFO:teuthology.orchestra.run.smithi167.stdout:Transaction check succeeded. 2023-11-30T22:53:05.020 INFO:teuthology.orchestra.run.smithi167.stdout:Running transaction test 2023-11-30T22:53:05.263 INFO:teuthology.orchestra.run.smithi038.stdout:Dependencies resolved. 2023-11-30T22:53:05.318 INFO:teuthology.orchestra.run.smithi038.stdout:========================================================================================================= 2023-11-30T22:53:05.318 INFO:teuthology.orchestra.run.smithi038.stdout: Package Arch Version Repository Size 2023-11-30T22:53:05.318 INFO:teuthology.orchestra.run.smithi038.stdout:========================================================================================================= 2023-11-30T22:53:05.318 INFO:teuthology.orchestra.run.smithi038.stdout:Installing group/module packages: 2023-11-30T22:53:05.318 INFO:teuthology.orchestra.run.smithi038.stdout: buildah x86_64 1.21.4-2.module+el8.4.0+12050+ef972f71 rhel-8-for-x86_64-appstream-rpms 8.2 M 2023-11-30T22:53:05.318 INFO:teuthology.orchestra.run.smithi038.stdout: cockpit-podman noarch 32-2.module+el8.4.0+11990+22932769 rhel-8-for-x86_64-appstream-rpms 410 k 2023-11-30T22:53:05.318 INFO:teuthology.orchestra.run.smithi038.stdout: crun x86_64 0.20.1-1.module+el8.4.0+11822+6cc1e7d7 rhel-8-for-x86_64-appstream-rpms 192 k 2023-11-30T22:53:05.318 INFO:teuthology.orchestra.run.smithi038.stdout: skopeo x86_64 1:1.3.1-5.module+el8.4.0+11990+22932769 rhel-8-for-x86_64-appstream-rpms 7.0 M 2023-11-30T22:53:05.318 INFO:teuthology.orchestra.run.smithi038.stdout: toolbox noarch 0.0.8-1.module+el8.4.0+11822+6cc1e7d7 rhel-8-for-x86_64-appstream-rpms 16 k 2023-11-30T22:53:05.318 INFO:teuthology.orchestra.run.smithi038.stdout: udica noarch 0.2.4-2.module+el8.4.0+11822+6cc1e7d7 rhel-8-for-x86_64-appstream-rpms 51 k 2023-11-30T22:53:05.319 INFO:teuthology.orchestra.run.smithi038.stdout:Installing dependencies: 2023-11-30T22:53:05.319 INFO:teuthology.orchestra.run.smithi038.stdout: yajl x86_64 2.1.0-10.el8 rhel-8-for-x86_64-appstream-rpms 41 k 2023-11-30T22:53:05.319 INFO:teuthology.orchestra.run.smithi038.stdout:Installing module profiles: 2023-11-30T22:53:05.319 INFO:teuthology.orchestra.run.smithi038.stdout: container-tools/common 2023-11-30T22:53:05.319 INFO:teuthology.orchestra.run.smithi038.stdout: 2023-11-30T22:53:05.319 INFO:teuthology.orchestra.run.smithi038.stdout:Enabling module streams: 2023-11-30T22:53:05.319 INFO:teuthology.orchestra.run.smithi038.stdout: container-tools rhel8 2023-11-30T22:53:05.319 INFO:teuthology.orchestra.run.smithi038.stdout: 2023-11-30T22:53:05.319 INFO:teuthology.orchestra.run.smithi038.stdout:Transaction Summary 2023-11-30T22:53:05.319 INFO:teuthology.orchestra.run.smithi038.stdout:========================================================================================================= 2023-11-30T22:53:05.319 INFO:teuthology.orchestra.run.smithi038.stdout:Install 7 Packages 2023-11-30T22:53:05.319 INFO:teuthology.orchestra.run.smithi038.stdout: 2023-11-30T22:53:05.320 INFO:teuthology.orchestra.run.smithi038.stdout:Total download size: 16 M 2023-11-30T22:53:05.320 INFO:teuthology.orchestra.run.smithi038.stdout:Installed size: 57 M 2023-11-30T22:53:05.320 INFO:teuthology.orchestra.run.smithi038.stdout:Downloading Packages: 2023-11-30T22:53:05.360 INFO:teuthology.orchestra.run.smithi038.stdout:(1/7): yajl-2.1.0-10.el8.x86_64.rpm 1.0 MB/s | 41 kB 00:00 2023-11-30T22:53:05.371 INFO:teuthology.orchestra.run.smithi038.stdout:(2/7): crun-0.20.1-1.module+el8.4.0+11822+6cc1e 3.7 MB/s | 192 kB 00:00 2023-11-30T22:53:05.376 INFO:teuthology.orchestra.run.smithi038.stdout:(3/7): toolbox-0.0.8-1.module+el8.4.0+11822+6cc 993 kB/s | 16 kB 00:00 2023-11-30T22:53:05.381 INFO:teuthology.orchestra.run.smithi038.stdout:(4/7): cockpit-podman-32-2.module+el8.4.0+11990 6.6 MB/s | 410 kB 00:00 2023-11-30T22:53:05.398 INFO:teuthology.orchestra.run.smithi038.stdout:(5/7): udica-0.2.4-2.module+el8.4.0+11822+6cc1e 3.0 MB/s | 51 kB 00:00 2023-11-30T22:53:05.494 INFO:teuthology.orchestra.run.smithi038.stdout:(6/7): skopeo-1.3.1-5.module+el8.4.0+11990+2293 57 MB/s | 7.0 MB 00:00 2023-11-30T22:53:05.525 INFO:teuthology.orchestra.run.smithi038.stdout:(7/7): buildah-1.21.4-2.module+el8.4.0+12050+ef 55 MB/s | 8.2 MB 00:00 2023-11-30T22:53:05.526 INFO:teuthology.orchestra.run.smithi038.stdout:-------------------------------------------------------------------------------- 2023-11-30T22:53:05.526 INFO:teuthology.orchestra.run.smithi038.stdout:Total 77 MB/s | 16 MB 00:00 2023-11-30T22:53:05.533 INFO:teuthology.orchestra.run.smithi038.stdout:Running transaction check 2023-11-30T22:53:05.551 INFO:teuthology.orchestra.run.smithi038.stdout:Transaction check succeeded. 2023-11-30T22:53:05.552 INFO:teuthology.orchestra.run.smithi038.stdout:Running transaction test 2023-11-30T22:53:05.612 INFO:teuthology.orchestra.run.smithi167.stdout:Transaction test succeeded. 2023-11-30T22:53:05.616 INFO:teuthology.orchestra.run.smithi167.stdout:Running transaction 2023-11-30T22:53:06.036 INFO:teuthology.orchestra.run.smithi167.stdout: Preparing : 1/1 2023-11-30T22:53:06.088 INFO:teuthology.orchestra.run.smithi038.stdout:Transaction test succeeded. 2023-11-30T22:53:06.092 INFO:teuthology.orchestra.run.smithi038.stdout:Running transaction 2023-11-30T22:53:06.279 INFO:teuthology.orchestra.run.smithi167.stdout: Installing : yajl-2.1.0-10.el8.x86_64 1/7 2023-11-30T22:53:06.454 INFO:teuthology.orchestra.run.smithi167.stdout: Installing : crun-0.20.1-1.module+el8.4.0+11822+6cc1e7d7.x86_64 2/7 2023-11-30T22:53:06.554 INFO:teuthology.orchestra.run.smithi038.stdout: Preparing : 1/1 2023-11-30T22:53:06.756 INFO:teuthology.orchestra.run.smithi038.stdout: Installing : yajl-2.1.0-10.el8.x86_64 1/7 2023-11-30T22:53:06.932 INFO:teuthology.orchestra.run.smithi038.stdout: Installing : crun-0.20.1-1.module+el8.4.0+11822+6cc1e7d7.x86_64 2/7 2023-11-30T22:53:07.385 INFO:teuthology.orchestra.run.smithi167.stdout: Installing : udica-0.2.4-2.module+el8.4.0+11822+6cc1e7d7.noarch 3/7 2023-11-30T22:53:07.914 INFO:teuthology.orchestra.run.smithi038.stdout: Installing : udica-0.2.4-2.module+el8.4.0+11822+6cc1e7d7.noarch 3/7 2023-11-30T22:53:08.237 INFO:teuthology.orchestra.run.smithi167.stdout: Installing : buildah-1.21.4-2.module+el8.4.0+12050+ef972f71.x86_6 4/7 2023-11-30T22:53:08.422 INFO:teuthology.orchestra.run.smithi167.stdout: Installing : skopeo-1:1.3.1-5.module+el8.4.0+11990+22932769.x86_6 5/7 2023-11-30T22:53:08.550 INFO:teuthology.orchestra.run.smithi167.stdout: Installing : toolbox-0.0.8-1.module+el8.4.0+11822+6cc1e7d7.noarch 6/7 2023-11-30T22:53:08.743 INFO:teuthology.orchestra.run.smithi167.stdout: Installing : cockpit-podman-32-2.module+el8.4.0+11990+22932769.no 7/7 2023-11-30T22:53:08.773 INFO:teuthology.orchestra.run.smithi038.stdout: Installing : buildah-1.21.4-2.module+el8.4.0+12050+ef972f71.x86_6 4/7 2023-11-30T22:53:08.974 INFO:teuthology.orchestra.run.smithi038.stdout: Installing : skopeo-1:1.3.1-5.module+el8.4.0+11990+22932769.x86_6 5/7 2023-11-30T22:53:08.991 INFO:teuthology.orchestra.run.smithi167.stdout: Running scriptlet: cockpit-podman-32-2.module+el8.4.0+11990+22932769.no 7/7 2023-11-30T22:53:08.991 INFO:teuthology.orchestra.run.smithi167.stdout: Verifying : yajl-2.1.0-10.el8.x86_64 1/7 2023-11-30T22:53:08.991 INFO:teuthology.orchestra.run.smithi167.stdout: Verifying : crun-0.20.1-1.module+el8.4.0+11822+6cc1e7d7.x86_64 2/7 2023-11-30T22:53:08.991 INFO:teuthology.orchestra.run.smithi167.stdout: Verifying : cockpit-podman-32-2.module+el8.4.0+11990+22932769.no 3/7 2023-11-30T22:53:08.991 INFO:teuthology.orchestra.run.smithi167.stdout: Verifying : toolbox-0.0.8-1.module+el8.4.0+11822+6cc1e7d7.noarch 4/7 2023-11-30T22:53:08.991 INFO:teuthology.orchestra.run.smithi167.stdout: Verifying : skopeo-1:1.3.1-5.module+el8.4.0+11990+22932769.x86_6 5/7 2023-11-30T22:53:08.992 INFO:teuthology.orchestra.run.smithi167.stdout: Verifying : buildah-1.21.4-2.module+el8.4.0+12050+ef972f71.x86_6 6/7 2023-11-30T22:53:09.122 INFO:teuthology.orchestra.run.smithi038.stdout: Installing : toolbox-0.0.8-1.module+el8.4.0+11822+6cc1e7d7.noarch 6/7 2023-11-30T22:53:09.295 INFO:teuthology.orchestra.run.smithi038.stdout: Installing : cockpit-podman-32-2.module+el8.4.0+11990+22932769.no 7/7 2023-11-30T22:53:09.571 INFO:teuthology.orchestra.run.smithi038.stdout: Running scriptlet: cockpit-podman-32-2.module+el8.4.0+11990+22932769.no 7/7 2023-11-30T22:53:09.572 INFO:teuthology.orchestra.run.smithi038.stdout: Verifying : yajl-2.1.0-10.el8.x86_64 1/7 2023-11-30T22:53:09.572 INFO:teuthology.orchestra.run.smithi038.stdout: Verifying : crun-0.20.1-1.module+el8.4.0+11822+6cc1e7d7.x86_64 2/7 2023-11-30T22:53:09.572 INFO:teuthology.orchestra.run.smithi038.stdout: Verifying : cockpit-podman-32-2.module+el8.4.0+11990+22932769.no 3/7 2023-11-30T22:53:09.572 INFO:teuthology.orchestra.run.smithi038.stdout: Verifying : toolbox-0.0.8-1.module+el8.4.0+11822+6cc1e7d7.noarch 4/7 2023-11-30T22:53:09.572 INFO:teuthology.orchestra.run.smithi038.stdout: Verifying : skopeo-1:1.3.1-5.module+el8.4.0+11990+22932769.x86_6 5/7 2023-11-30T22:53:09.572 INFO:teuthology.orchestra.run.smithi038.stdout: Verifying : buildah-1.21.4-2.module+el8.4.0+12050+ef972f71.x86_6 6/7 2023-11-30T22:53:10.256 INFO:teuthology.orchestra.run.smithi167.stdout: Verifying : udica-0.2.4-2.module+el8.4.0+11822+6cc1e7d7.noarch 7/7 2023-11-30T22:53:10.256 INFO:teuthology.orchestra.run.smithi167.stdout:Last metadata expiration check: 0:01:53 ago on Thu 30 Nov 2023 10:51:16 PM UTC. 2023-11-30T22:53:10.634 INFO:teuthology.orchestra.run.smithi038.stdout: Verifying : udica-0.2.4-2.module+el8.4.0+11822+6cc1e7d7.noarch 7/7 2023-11-30T22:53:10.634 INFO:teuthology.orchestra.run.smithi038.stdout:Last metadata expiration check: 0:01:40 ago on Thu 30 Nov 2023 10:51:30 PM UTC. 2023-11-30T22:53:12.312 INFO:teuthology.orchestra.run.smithi167.stdout:Installed products updated. 2023-11-30T22:53:12.421 INFO:teuthology.orchestra.run.smithi167.stdout: 2023-11-30T22:53:12.422 INFO:teuthology.orchestra.run.smithi167.stdout:Installed: 2023-11-30T22:53:12.422 INFO:teuthology.orchestra.run.smithi167.stdout: buildah-1.21.4-2.module+el8.4.0+12050+ef972f71.x86_64 2023-11-30T22:53:12.422 INFO:teuthology.orchestra.run.smithi167.stdout: cockpit-podman-32-2.module+el8.4.0+11990+22932769.noarch 2023-11-30T22:53:12.422 INFO:teuthology.orchestra.run.smithi167.stdout: crun-0.20.1-1.module+el8.4.0+11822+6cc1e7d7.x86_64 2023-11-30T22:53:12.422 INFO:teuthology.orchestra.run.smithi167.stdout: skopeo-1:1.3.1-5.module+el8.4.0+11990+22932769.x86_64 2023-11-30T22:53:12.422 INFO:teuthology.orchestra.run.smithi167.stdout: toolbox-0.0.8-1.module+el8.4.0+11822+6cc1e7d7.noarch 2023-11-30T22:53:12.423 INFO:teuthology.orchestra.run.smithi167.stdout: udica-0.2.4-2.module+el8.4.0+11822+6cc1e7d7.noarch 2023-11-30T22:53:12.423 INFO:teuthology.orchestra.run.smithi167.stdout: yajl-2.1.0-10.el8.x86_64 2023-11-30T22:53:12.423 INFO:teuthology.orchestra.run.smithi167.stdout: 2023-11-30T22:53:12.423 INFO:teuthology.orchestra.run.smithi167.stdout:Complete! 2023-11-30T22:53:12.575 DEBUG:teuthology.parallel:result is None 2023-11-30T22:53:12.948 INFO:teuthology.orchestra.run.smithi038.stdout:Installed products updated. 2023-11-30T22:53:13.061 INFO:teuthology.orchestra.run.smithi038.stdout: 2023-11-30T22:53:13.061 INFO:teuthology.orchestra.run.smithi038.stdout:Installed: 2023-11-30T22:53:13.061 INFO:teuthology.orchestra.run.smithi038.stdout: buildah-1.21.4-2.module+el8.4.0+12050+ef972f71.x86_64 2023-11-30T22:53:13.061 INFO:teuthology.orchestra.run.smithi038.stdout: cockpit-podman-32-2.module+el8.4.0+11990+22932769.noarch 2023-11-30T22:53:13.061 INFO:teuthology.orchestra.run.smithi038.stdout: crun-0.20.1-1.module+el8.4.0+11822+6cc1e7d7.x86_64 2023-11-30T22:53:13.062 INFO:teuthology.orchestra.run.smithi038.stdout: skopeo-1:1.3.1-5.module+el8.4.0+11990+22932769.x86_64 2023-11-30T22:53:13.062 INFO:teuthology.orchestra.run.smithi038.stdout: toolbox-0.0.8-1.module+el8.4.0+11822+6cc1e7d7.noarch 2023-11-30T22:53:13.062 INFO:teuthology.orchestra.run.smithi038.stdout: udica-0.2.4-2.module+el8.4.0+11822+6cc1e7d7.noarch 2023-11-30T22:53:13.062 INFO:teuthology.orchestra.run.smithi038.stdout: yajl-2.1.0-10.el8.x86_64 2023-11-30T22:53:13.062 INFO:teuthology.orchestra.run.smithi038.stdout: 2023-11-30T22:53:13.062 INFO:teuthology.orchestra.run.smithi038.stdout:Complete! 2023-11-30T22:53:13.178 DEBUG:teuthology.parallel:result is None 2023-11-30T22:53:13.178 INFO:teuthology.run_tasks:Running task nvme_loop... 2023-11-30T22:53:13.189 INFO:tasks.nvme_loop:Setting up nvme_loop on scratch devices... 2023-11-30T22:53:13.189 DEBUG:teuthology.orchestra.run.smithi038:> set -ex 2023-11-30T22:53:13.189 DEBUG:teuthology.orchestra.run.smithi038:> dd if=/scratch_devs of=/dev/stdout 2023-11-30T22:53:13.204 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-11-30T22:53:13.204 DEBUG:teuthology.orchestra.run.smithi038:> stat /dev/vg_nvme/lv_1 2023-11-30T22:53:13.260 INFO:teuthology.orchestra.run.smithi038.stdout: File: /dev/vg_nvme/lv_1 -> ../dm-0 2023-11-30T22:53:13.260 INFO:teuthology.orchestra.run.smithi038.stdout: Size: 7 Blocks: 0 IO Block: 4096 symbolic link 2023-11-30T22:53:13.260 INFO:teuthology.orchestra.run.smithi038.stdout:Device: 6h/6d Inode: 216805 Links: 1 2023-11-30T22:53:13.260 INFO:teuthology.orchestra.run.smithi038.stdout:Access: (0777/lrwxrwxrwx) Uid: ( 0/ root) Gid: ( 0/ root) 2023-11-30T22:53:13.260 INFO:teuthology.orchestra.run.smithi038.stdout:Context: system_u:object_r:device_t:s0 2023-11-30T22:53:13.260 INFO:teuthology.orchestra.run.smithi038.stdout:Access: 2023-11-30 22:52:52.971042801 +0000 2023-11-30T22:53:13.260 INFO:teuthology.orchestra.run.smithi038.stdout:Modify: 2023-11-30 22:52:25.434545326 +0000 2023-11-30T22:53:13.260 INFO:teuthology.orchestra.run.smithi038.stdout:Change: 2023-11-30 22:52:25.434545326 +0000 2023-11-30T22:53:13.260 INFO:teuthology.orchestra.run.smithi038.stdout: Birth: - 2023-11-30T22:53:13.261 DEBUG:teuthology.orchestra.run.smithi038:> sudo dd if=/dev/vg_nvme/lv_1 of=/dev/null count=1 2023-11-30T22:53:13.323 INFO:teuthology.orchestra.run.smithi038.stderr:1+0 records in 2023-11-30T22:53:13.323 INFO:teuthology.orchestra.run.smithi038.stderr:1+0 records out 2023-11-30T22:53:13.323 INFO:teuthology.orchestra.run.smithi038.stderr:512 bytes copied, 0.00028652 s, 1.8 MB/s 2023-11-30T22:53:13.324 DEBUG:teuthology.orchestra.run.smithi038:> ! mount | grep -v devtmpfs | grep -q /dev/vg_nvme/lv_1 2023-11-30T22:53:13.380 DEBUG:teuthology.orchestra.run.smithi038:> stat /dev/vg_nvme/lv_2 2023-11-30T22:53:13.436 INFO:teuthology.orchestra.run.smithi038.stdout: File: /dev/vg_nvme/lv_2 -> ../dm-1 2023-11-30T22:53:13.436 INFO:teuthology.orchestra.run.smithi038.stdout: Size: 7 Blocks: 0 IO Block: 4096 symbolic link 2023-11-30T22:53:13.436 INFO:teuthology.orchestra.run.smithi038.stdout:Device: 6h/6d Inode: 218061 Links: 1 2023-11-30T22:53:13.436 INFO:teuthology.orchestra.run.smithi038.stdout:Access: (0777/lrwxrwxrwx) Uid: ( 0/ root) Gid: ( 0/ root) 2023-11-30T22:53:13.436 INFO:teuthology.orchestra.run.smithi038.stdout:Context: system_u:object_r:device_t:s0 2023-11-30T22:53:13.436 INFO:teuthology.orchestra.run.smithi038.stdout:Access: 2023-11-30 22:52:52.971042801 +0000 2023-11-30T22:53:13.436 INFO:teuthology.orchestra.run.smithi038.stdout:Modify: 2023-11-30 22:52:25.936536162 +0000 2023-11-30T22:53:13.436 INFO:teuthology.orchestra.run.smithi038.stdout:Change: 2023-11-30 22:52:25.936536162 +0000 2023-11-30T22:53:13.436 INFO:teuthology.orchestra.run.smithi038.stdout: Birth: - 2023-11-30T22:53:13.437 DEBUG:teuthology.orchestra.run.smithi038:> sudo dd if=/dev/vg_nvme/lv_2 of=/dev/null count=1 2023-11-30T22:53:13.499 INFO:teuthology.orchestra.run.smithi038.stderr:1+0 records in 2023-11-30T22:53:13.499 INFO:teuthology.orchestra.run.smithi038.stderr:1+0 records out 2023-11-30T22:53:13.499 INFO:teuthology.orchestra.run.smithi038.stderr:512 bytes copied, 0.000345524 s, 1.5 MB/s 2023-11-30T22:53:13.500 DEBUG:teuthology.orchestra.run.smithi038:> ! mount | grep -v devtmpfs | grep -q /dev/vg_nvme/lv_2 2023-11-30T22:53:13.557 DEBUG:teuthology.orchestra.run.smithi038:> stat /dev/vg_nvme/lv_3 2023-11-30T22:53:13.612 INFO:teuthology.orchestra.run.smithi038.stdout: File: /dev/vg_nvme/lv_3 -> ../dm-2 2023-11-30T22:53:13.612 INFO:teuthology.orchestra.run.smithi038.stdout: Size: 7 Blocks: 0 IO Block: 4096 symbolic link 2023-11-30T22:53:13.612 INFO:teuthology.orchestra.run.smithi038.stdout:Device: 6h/6d Inode: 223280 Links: 1 2023-11-30T22:53:13.612 INFO:teuthology.orchestra.run.smithi038.stdout:Access: (0777/lrwxrwxrwx) Uid: ( 0/ root) Gid: ( 0/ root) 2023-11-30T22:53:13.612 INFO:teuthology.orchestra.run.smithi038.stdout:Context: system_u:object_r:device_t:s0 2023-11-30T22:53:13.613 INFO:teuthology.orchestra.run.smithi038.stdout:Access: 2023-11-30 22:52:52.971042801 +0000 2023-11-30T22:53:13.613 INFO:teuthology.orchestra.run.smithi038.stdout:Modify: 2023-11-30 22:52:26.429527162 +0000 2023-11-30T22:53:13.613 INFO:teuthology.orchestra.run.smithi038.stdout:Change: 2023-11-30 22:52:26.429527162 +0000 2023-11-30T22:53:13.613 INFO:teuthology.orchestra.run.smithi038.stdout: Birth: - 2023-11-30T22:53:13.613 DEBUG:teuthology.orchestra.run.smithi038:> sudo dd if=/dev/vg_nvme/lv_3 of=/dev/null count=1 2023-11-30T22:53:13.676 INFO:teuthology.orchestra.run.smithi038.stderr:1+0 records in 2023-11-30T22:53:13.676 INFO:teuthology.orchestra.run.smithi038.stderr:1+0 records out 2023-11-30T22:53:13.676 INFO:teuthology.orchestra.run.smithi038.stderr:512 bytes copied, 0.000273176 s, 1.9 MB/s 2023-11-30T22:53:13.677 DEBUG:teuthology.orchestra.run.smithi038:> ! mount | grep -v devtmpfs | grep -q /dev/vg_nvme/lv_3 2023-11-30T22:53:13.732 DEBUG:teuthology.orchestra.run.smithi038:> stat /dev/vg_nvme/lv_4 2023-11-30T22:53:13.787 INFO:teuthology.orchestra.run.smithi038.stdout: File: /dev/vg_nvme/lv_4 -> ../dm-3 2023-11-30T22:53:13.787 INFO:teuthology.orchestra.run.smithi038.stdout: Size: 7 Blocks: 0 IO Block: 4096 symbolic link 2023-11-30T22:53:13.787 INFO:teuthology.orchestra.run.smithi038.stdout:Device: 6h/6d Inode: 219693 Links: 1 2023-11-30T22:53:13.787 INFO:teuthology.orchestra.run.smithi038.stdout:Access: (0777/lrwxrwxrwx) Uid: ( 0/ root) Gid: ( 0/ root) 2023-11-30T22:53:13.788 INFO:teuthology.orchestra.run.smithi038.stdout:Context: system_u:object_r:device_t:s0 2023-11-30T22:53:13.788 INFO:teuthology.orchestra.run.smithi038.stdout:Access: 2023-11-30 22:52:52.971042801 +0000 2023-11-30T22:53:13.788 INFO:teuthology.orchestra.run.smithi038.stdout:Modify: 2023-11-30 22:52:26.937517888 +0000 2023-11-30T22:53:13.788 INFO:teuthology.orchestra.run.smithi038.stdout:Change: 2023-11-30 22:52:26.937517888 +0000 2023-11-30T22:53:13.788 INFO:teuthology.orchestra.run.smithi038.stdout: Birth: - 2023-11-30T22:53:13.788 DEBUG:teuthology.orchestra.run.smithi038:> sudo dd if=/dev/vg_nvme/lv_4 of=/dev/null count=1 2023-11-30T22:53:13.852 INFO:teuthology.orchestra.run.smithi038.stderr:1+0 records in 2023-11-30T22:53:13.852 INFO:teuthology.orchestra.run.smithi038.stderr:1+0 records out 2023-11-30T22:53:13.852 INFO:teuthology.orchestra.run.smithi038.stderr:512 bytes copied, 0.000293189 s, 1.7 MB/s 2023-11-30T22:53:13.853 DEBUG:teuthology.orchestra.run.smithi038:> ! mount | grep -v devtmpfs | grep -q /dev/vg_nvme/lv_4 2023-11-30T22:53:13.909 DEBUG:teuthology.orchestra.run.smithi038:> 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-11-30T22:53:14.033 INFO:teuthology.orchestra.run.smithi038.stdout:loop 2023-11-30T22:53:14.034 INFO:tasks.nvme_loop:Connecting nvme_loop smithi038:/dev/vg_nvme/lv_1... 2023-11-30T22:53:14.034 DEBUG:teuthology.orchestra.run.smithi038:> 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-11-30T22:53:14.067 INFO:teuthology.orchestra.run.smithi038.stdout:1 2023-11-30T22:53:14.104 INFO:teuthology.orchestra.run.smithi038.stdout:/dev/vg_nvme/lv_11 2023-11-30T22:53:14.144 INFO:tasks.nvme_loop:Connecting nvme_loop smithi038:/dev/vg_nvme/lv_2... 2023-11-30T22:53:14.144 DEBUG:teuthology.orchestra.run.smithi038:> 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-11-30T22:53:14.219 INFO:teuthology.orchestra.run.smithi038.stdout:1 2023-11-30T22:53:14.255 INFO:teuthology.orchestra.run.smithi038.stdout:/dev/vg_nvme/lv_21 2023-11-30T22:53:14.294 INFO:tasks.nvme_loop:Connecting nvme_loop smithi038:/dev/vg_nvme/lv_3... 2023-11-30T22:53:14.295 DEBUG:teuthology.orchestra.run.smithi038:> 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-11-30T22:53:14.367 INFO:teuthology.orchestra.run.smithi038.stdout:1 2023-11-30T22:53:14.403 INFO:teuthology.orchestra.run.smithi038.stdout:/dev/vg_nvme/lv_31 2023-11-30T22:53:14.442 INFO:tasks.nvme_loop:Connecting nvme_loop smithi038:/dev/vg_nvme/lv_4... 2023-11-30T22:53:14.442 DEBUG:teuthology.orchestra.run.smithi038:> 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-11-30T22:53:14.517 INFO:teuthology.orchestra.run.smithi038.stdout:1 2023-11-30T22:53:14.552 INFO:teuthology.orchestra.run.smithi038.stdout:/dev/vg_nvme/lv_41 2023-11-30T22:53:14.591 DEBUG:teuthology.orchestra.run.smithi038:> set -ex 2023-11-30T22:53:14.591 DEBUG:teuthology.orchestra.run.smithi038:> dd if=/scratch_devs of=/dev/stdout 2023-11-30T22:53:14.647 DEBUG:teuthology.orchestra.run.smithi038:> sudo nvme list 2023-11-30T22:53:14.711 INFO:teuthology.orchestra.run.smithi038.stdout:Node SN Model Namespace Usage Format FW Rev 2023-11-30T22:53:14.711 INFO:teuthology.orchestra.run.smithi038.stdout:---------------- -------------------- ---------------------------------------- --------- -------------------------- ---------------- -------- 2023-11-30T22:53:14.711 INFO:teuthology.orchestra.run.smithi038.stdout:/dev/nvme0n1 BTLE736103BB4P0KGN INTEL SSDPEDKE040T7 1 4.00 TB / 4.00 TB 512 B + 0 B QDV1013D 2023-11-30T22:53:14.711 INFO:teuthology.orchestra.run.smithi038.stdout:/dev/nvme1n1 6a8d2ce758a0d80e49d0 Linux 1 96.00 GB / 96.00 GB 512 B + 0 B 4.18.0-4 2023-11-30T22:53:14.711 INFO:teuthology.orchestra.run.smithi038.stdout:/dev/nvme2n1 f55a2d6b29c0cd9e926a Linux 1 96.00 GB / 96.00 GB 512 B + 0 B 4.18.0-4 2023-11-30T22:53:14.712 INFO:teuthology.orchestra.run.smithi038.stdout:/dev/nvme3n1 e448bd66a37931b492b9 Linux 1 96.00 GB / 96.00 GB 512 B + 0 B 4.18.0-4 2023-11-30T22:53:14.712 INFO:teuthology.orchestra.run.smithi038.stdout:/dev/nvme4n1 c0cb444d0cf7ab7de931 Linux 1 96.00 GB / 96.00 GB 512 B + 0 B 4.18.0-4 2023-11-30T22:53:14.712 INFO:tasks.nvme_loop:new_devs ['/dev/nvme1n1', '/dev/nvme2n1', '/dev/nvme3n1', '/dev/nvme4n1'] 2023-11-30T22:53:14.713 DEBUG:teuthology.orchestra.run.smithi038:> set -ex 2023-11-30T22:53:14.713 DEBUG:teuthology.orchestra.run.smithi038:> sudo dd of=/scratch_devs 2023-11-30T22:53:14.777 DEBUG:teuthology.orchestra.run.smithi167:> set -ex 2023-11-30T22:53:14.778 DEBUG:teuthology.orchestra.run.smithi167:> dd if=/scratch_devs of=/dev/stdout 2023-11-30T22:53:14.796 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-11-30T22:53:14.796 DEBUG:teuthology.orchestra.run.smithi167:> stat /dev/vg_nvme/lv_1 2023-11-30T22:53:14.854 INFO:teuthology.orchestra.run.smithi167.stdout: File: /dev/vg_nvme/lv_1 -> ../dm-0 2023-11-30T22:53:14.854 INFO:teuthology.orchestra.run.smithi167.stdout: Size: 7 Blocks: 0 IO Block: 4096 symbolic link 2023-11-30T22:53:14.854 INFO:teuthology.orchestra.run.smithi167.stdout:Device: 6h/6d Inode: 223262 Links: 1 2023-11-30T22:53:14.854 INFO:teuthology.orchestra.run.smithi167.stdout:Access: (0777/lrwxrwxrwx) Uid: ( 0/ root) Gid: ( 0/ root) 2023-11-30T22:53:14.854 INFO:teuthology.orchestra.run.smithi167.stdout:Context: system_u:object_r:device_t:s0 2023-11-30T22:53:14.854 INFO:teuthology.orchestra.run.smithi167.stdout:Access: 2023-11-30 22:52:52.995960152 +0000 2023-11-30T22:53:14.855 INFO:teuthology.orchestra.run.smithi167.stdout:Modify: 2023-11-30 22:52:10.741701284 +0000 2023-11-30T22:53:14.855 INFO:teuthology.orchestra.run.smithi167.stdout:Change: 2023-11-30 22:52:10.741701284 +0000 2023-11-30T22:53:14.855 INFO:teuthology.orchestra.run.smithi167.stdout: Birth: - 2023-11-30T22:53:14.855 DEBUG:teuthology.orchestra.run.smithi167:> sudo dd if=/dev/vg_nvme/lv_1 of=/dev/null count=1 2023-11-30T22:53:14.920 INFO:teuthology.orchestra.run.smithi167.stderr:1+0 records in 2023-11-30T22:53:14.920 INFO:teuthology.orchestra.run.smithi167.stderr:1+0 records out 2023-11-30T22:53:14.920 INFO:teuthology.orchestra.run.smithi167.stderr:512 bytes copied, 0.000256654 s, 2.0 MB/s 2023-11-30T22:53:14.921 DEBUG:teuthology.orchestra.run.smithi167:> ! mount | grep -v devtmpfs | grep -q /dev/vg_nvme/lv_1 2023-11-30T22:53:14.978 DEBUG:teuthology.orchestra.run.smithi167:> stat /dev/vg_nvme/lv_2 2023-11-30T22:53:15.034 INFO:teuthology.orchestra.run.smithi167.stdout: File: /dev/vg_nvme/lv_2 -> ../dm-1 2023-11-30T22:53:15.034 INFO:teuthology.orchestra.run.smithi167.stdout: Size: 7 Blocks: 0 IO Block: 4096 symbolic link 2023-11-30T22:53:15.034 INFO:teuthology.orchestra.run.smithi167.stdout:Device: 6h/6d Inode: 217572 Links: 1 2023-11-30T22:53:15.035 INFO:teuthology.orchestra.run.smithi167.stdout:Access: (0777/lrwxrwxrwx) Uid: ( 0/ root) Gid: ( 0/ root) 2023-11-30T22:53:15.035 INFO:teuthology.orchestra.run.smithi167.stdout:Context: system_u:object_r:device_t:s0 2023-11-30T22:53:15.035 INFO:teuthology.orchestra.run.smithi167.stdout:Access: 2023-11-30 22:52:52.995960152 +0000 2023-11-30T22:53:15.035 INFO:teuthology.orchestra.run.smithi167.stdout:Modify: 2023-11-30 22:52:11.432689130 +0000 2023-11-30T22:53:15.035 INFO:teuthology.orchestra.run.smithi167.stdout:Change: 2023-11-30 22:52:11.432689130 +0000 2023-11-30T22:53:15.035 INFO:teuthology.orchestra.run.smithi167.stdout: Birth: - 2023-11-30T22:53:15.035 DEBUG:teuthology.orchestra.run.smithi167:> sudo dd if=/dev/vg_nvme/lv_2 of=/dev/null count=1 2023-11-30T22:53:15.098 INFO:teuthology.orchestra.run.smithi167.stderr:1+0 records in 2023-11-30T22:53:15.098 INFO:teuthology.orchestra.run.smithi167.stderr:1+0 records out 2023-11-30T22:53:15.098 INFO:teuthology.orchestra.run.smithi167.stderr:512 bytes copied, 0.000223988 s, 2.3 MB/s 2023-11-30T22:53:15.099 DEBUG:teuthology.orchestra.run.smithi167:> ! mount | grep -v devtmpfs | grep -q /dev/vg_nvme/lv_2 2023-11-30T22:53:15.156 DEBUG:teuthology.orchestra.run.smithi167:> stat /dev/vg_nvme/lv_3 2023-11-30T22:53:15.211 INFO:teuthology.orchestra.run.smithi167.stdout: File: /dev/vg_nvme/lv_3 -> ../dm-2 2023-11-30T22:53:15.211 INFO:teuthology.orchestra.run.smithi167.stdout: Size: 7 Blocks: 0 IO Block: 4096 symbolic link 2023-11-30T22:53:15.211 INFO:teuthology.orchestra.run.smithi167.stdout:Device: 6h/6d Inode: 219810 Links: 1 2023-11-30T22:53:15.211 INFO:teuthology.orchestra.run.smithi167.stdout:Access: (0777/lrwxrwxrwx) Uid: ( 0/ root) Gid: ( 0/ root) 2023-11-30T22:53:15.211 INFO:teuthology.orchestra.run.smithi167.stdout:Context: system_u:object_r:device_t:s0 2023-11-30T22:53:15.212 INFO:teuthology.orchestra.run.smithi167.stdout:Access: 2023-11-30 22:52:52.995960152 +0000 2023-11-30T22:53:15.212 INFO:teuthology.orchestra.run.smithi167.stdout:Modify: 2023-11-30 22:52:11.926680441 +0000 2023-11-30T22:53:15.212 INFO:teuthology.orchestra.run.smithi167.stdout:Change: 2023-11-30 22:52:11.926680441 +0000 2023-11-30T22:53:15.212 INFO:teuthology.orchestra.run.smithi167.stdout: Birth: - 2023-11-30T22:53:15.212 DEBUG:teuthology.orchestra.run.smithi167:> sudo dd if=/dev/vg_nvme/lv_3 of=/dev/null count=1 2023-11-30T22:53:15.275 INFO:teuthology.orchestra.run.smithi167.stderr:1+0 records in 2023-11-30T22:53:15.275 INFO:teuthology.orchestra.run.smithi167.stderr:1+0 records out 2023-11-30T22:53:15.275 INFO:teuthology.orchestra.run.smithi167.stderr:512 bytes copied, 0.000218783 s, 2.3 MB/s 2023-11-30T22:53:15.276 DEBUG:teuthology.orchestra.run.smithi167:> ! mount | grep -v devtmpfs | grep -q /dev/vg_nvme/lv_3 2023-11-30T22:53:15.332 DEBUG:teuthology.orchestra.run.smithi167:> stat /dev/vg_nvme/lv_4 2023-11-30T22:53:15.387 INFO:teuthology.orchestra.run.smithi167.stdout: File: /dev/vg_nvme/lv_4 -> ../dm-3 2023-11-30T22:53:15.387 INFO:teuthology.orchestra.run.smithi167.stdout: Size: 7 Blocks: 0 IO Block: 4096 symbolic link 2023-11-30T22:53:15.387 INFO:teuthology.orchestra.run.smithi167.stdout:Device: 6h/6d Inode: 224384 Links: 1 2023-11-30T22:53:15.387 INFO:teuthology.orchestra.run.smithi167.stdout:Access: (0777/lrwxrwxrwx) Uid: ( 0/ root) Gid: ( 0/ root) 2023-11-30T22:53:15.387 INFO:teuthology.orchestra.run.smithi167.stdout:Context: system_u:object_r:device_t:s0 2023-11-30T22:53:15.387 INFO:teuthology.orchestra.run.smithi167.stdout:Access: 2023-11-30 22:52:52.995960152 +0000 2023-11-30T22:53:15.387 INFO:teuthology.orchestra.run.smithi167.stdout:Modify: 2023-11-30 22:52:12.426671646 +0000 2023-11-30T22:53:15.388 INFO:teuthology.orchestra.run.smithi167.stdout:Change: 2023-11-30 22:52:12.426671646 +0000 2023-11-30T22:53:15.388 INFO:teuthology.orchestra.run.smithi167.stdout: Birth: - 2023-11-30T22:53:15.388 DEBUG:teuthology.orchestra.run.smithi167:> sudo dd if=/dev/vg_nvme/lv_4 of=/dev/null count=1 2023-11-30T22:53:15.450 INFO:teuthology.orchestra.run.smithi167.stderr:1+0 records in 2023-11-30T22:53:15.450 INFO:teuthology.orchestra.run.smithi167.stderr:1+0 records out 2023-11-30T22:53:15.450 INFO:teuthology.orchestra.run.smithi167.stderr:512 bytes copied, 0.000207501 s, 2.5 MB/s 2023-11-30T22:53:15.451 DEBUG:teuthology.orchestra.run.smithi167:> ! mount | grep -v devtmpfs | grep -q /dev/vg_nvme/lv_4 2023-11-30T22:53:15.506 DEBUG:teuthology.orchestra.run.smithi167:> 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-11-30T22:53:15.621 INFO:teuthology.orchestra.run.smithi167.stdout:loop 2023-11-30T22:53:15.623 INFO:tasks.nvme_loop:Connecting nvme_loop smithi167:/dev/vg_nvme/lv_1... 2023-11-30T22:53:15.623 DEBUG:teuthology.orchestra.run.smithi167:> 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-11-30T22:53:15.656 INFO:teuthology.orchestra.run.smithi167.stdout:1 2023-11-30T22:53:15.690 INFO:teuthology.orchestra.run.smithi167.stdout:/dev/vg_nvme/lv_11 2023-11-30T22:53:15.731 INFO:tasks.nvme_loop:Connecting nvme_loop smithi167:/dev/vg_nvme/lv_2... 2023-11-30T22:53:15.731 DEBUG:teuthology.orchestra.run.smithi167:> 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-11-30T22:53:15.804 INFO:teuthology.orchestra.run.smithi167.stdout:1 2023-11-30T22:53:15.839 INFO:teuthology.orchestra.run.smithi167.stdout:/dev/vg_nvme/lv_21 2023-11-30T22:53:15.878 INFO:tasks.nvme_loop:Connecting nvme_loop smithi167:/dev/vg_nvme/lv_3... 2023-11-30T22:53:15.879 DEBUG:teuthology.orchestra.run.smithi167:> 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-11-30T22:53:15.951 INFO:teuthology.orchestra.run.smithi167.stdout:1 2023-11-30T22:53:15.986 INFO:teuthology.orchestra.run.smithi167.stdout:/dev/vg_nvme/lv_31 2023-11-30T22:53:16.024 INFO:tasks.nvme_loop:Connecting nvme_loop smithi167:/dev/vg_nvme/lv_4... 2023-11-30T22:53:16.024 DEBUG:teuthology.orchestra.run.smithi167:> 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-11-30T22:53:16.097 INFO:teuthology.orchestra.run.smithi167.stdout:1 2023-11-30T22:53:16.132 INFO:teuthology.orchestra.run.smithi167.stdout:/dev/vg_nvme/lv_41 2023-11-30T22:53:16.170 DEBUG:teuthology.orchestra.run.smithi167:> set -ex 2023-11-30T22:53:16.170 DEBUG:teuthology.orchestra.run.smithi167:> dd if=/scratch_devs of=/dev/stdout 2023-11-30T22:53:16.229 DEBUG:teuthology.orchestra.run.smithi167:> sudo nvme list 2023-11-30T22:53:16.292 INFO:teuthology.orchestra.run.smithi167.stdout:Node SN Model Namespace Usage Format FW Rev 2023-11-30T22:53:16.292 INFO:teuthology.orchestra.run.smithi167.stdout:---------------- -------------------- ---------------------------------------- --------- -------------------------- ---------------- -------- 2023-11-30T22:53:16.292 INFO:teuthology.orchestra.run.smithi167.stdout:/dev/nvme0n1 CVFT62330080400BGN INTEL SSDPEDMD400G4 1 400.09 GB / 400.09 GB 512 B + 0 B 8DV101H0 2023-11-30T22:53:16.292 INFO:teuthology.orchestra.run.smithi167.stdout:/dev/nvme1n1 5ea87b4bb0241fa264dc Linux 1 96.00 GB / 96.00 GB 512 B + 0 B 4.18.0-4 2023-11-30T22:53:16.292 INFO:teuthology.orchestra.run.smithi167.stdout:/dev/nvme2n1 a44f4bf7bb683ab77971 Linux 1 96.00 GB / 96.00 GB 512 B + 0 B 4.18.0-4 2023-11-30T22:53:16.292 INFO:teuthology.orchestra.run.smithi167.stdout:/dev/nvme3n1 6e45ee5c98b6fc4698a8 Linux 1 96.00 GB / 96.00 GB 512 B + 0 B 4.18.0-4 2023-11-30T22:53:16.292 INFO:teuthology.orchestra.run.smithi167.stdout:/dev/nvme4n1 58049ed3d57b48a10302 Linux 1 96.00 GB / 96.00 GB 512 B + 0 B 4.18.0-4 2023-11-30T22:53:16.294 INFO:tasks.nvme_loop:new_devs ['/dev/nvme1n1', '/dev/nvme2n1', '/dev/nvme3n1', '/dev/nvme4n1'] 2023-11-30T22:53:16.294 DEBUG:teuthology.orchestra.run.smithi167:> set -ex 2023-11-30T22:53:16.294 DEBUG:teuthology.orchestra.run.smithi167:> sudo dd of=/scratch_devs 2023-11-30T22:53:16.358 INFO:teuthology.run_tasks:Running task cephadm... 2023-11-30T22:53:16.439 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': '0dc074ce0b0b3b4f393f56dd32ef36884ebf45a9'} 2023-11-30T22:53:16.440 INFO:tasks.cephadm:Cluster image is quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:0dc074ce0b0b3b4f393f56dd32ef36884ebf45a9 2023-11-30T22:53:16.440 INFO:tasks.cephadm:Cluster fsid is 3faf8b00-8fd3-11ee-95a2-87774f69a715 2023-11-30T22:53:16.440 INFO:tasks.cephadm:Choosing monitor IPs and ports... 2023-11-30T22:53:16.440 INFO:tasks.cephadm:No mon roles; fabricating mons 2023-11-30T22:53:16.440 INFO:tasks.cephadm:Monitor IPs: {'mon.smithi038': '172.21.15.38', 'mon.smithi167': '172.21.15.167'} 2023-11-30T22:53:16.441 INFO:tasks.cephadm:Normalizing hostnames... 2023-11-30T22:53:16.441 DEBUG:teuthology.orchestra.run.smithi038:> sudo hostname $(hostname -s) 2023-11-30T22:53:16.472 DEBUG:teuthology.orchestra.run.smithi167:> sudo hostname $(hostname -s) 2023-11-30T22:53:16.496 INFO:tasks.cephadm:Downloading cephadm (repo https://github.com/ceph/ceph-ci.git ref 0dc074ce0b0b3b4f393f56dd32ef36884ebf45a9)... 2023-11-30T22:53:16.497 DEBUG:teuthology.orchestra.run.smithi038:> curl --silent https://raw.githubusercontent.com/ceph/ceph-ci/0dc074ce0b0b3b4f393f56dd32ef36884ebf45a9/src/cephadm/cephadm > /home/ubuntu/cephtest/cephadm && ls -l /home/ubuntu/cephtest/cephadm 2023-11-30T22:53:16.736 INFO:teuthology.orchestra.run.smithi038.stdout:-rw-rw-r--. 1 ubuntu ubuntu 355729 Nov 30 22:53 /home/ubuntu/cephtest/cephadm 2023-11-30T22:53:16.736 DEBUG:teuthology.orchestra.run.smithi167:> curl --silent https://raw.githubusercontent.com/ceph/ceph-ci/0dc074ce0b0b3b4f393f56dd32ef36884ebf45a9/src/cephadm/cephadm > /home/ubuntu/cephtest/cephadm && ls -l /home/ubuntu/cephtest/cephadm 2023-11-30T22:53:16.891 INFO:teuthology.orchestra.run.smithi167.stdout:-rw-rw-r--. 1 ubuntu ubuntu 355729 Nov 30 22:53 /home/ubuntu/cephtest/cephadm 2023-11-30T22:53:16.892 DEBUG:teuthology.orchestra.run.smithi038:> test -s /home/ubuntu/cephtest/cephadm && test $(stat -c%s /home/ubuntu/cephtest/cephadm) -gt 1000 && chmod +x /home/ubuntu/cephtest/cephadm 2023-11-30T22:53:16.912 DEBUG:teuthology.orchestra.run.smithi167:> test -s /home/ubuntu/cephtest/cephadm && test $(stat -c%s /home/ubuntu/cephtest/cephadm) -gt 1000 && chmod +x /home/ubuntu/cephtest/cephadm 2023-11-30T22:53:16.940 DEBUG:teuthology.orchestra.run.smithi038:> sudo mkdir -p /etc/ceph 2023-11-30T22:53:16.982 DEBUG:teuthology.orchestra.run.smithi167:> sudo mkdir -p /etc/ceph 2023-11-30T22:53:17.007 DEBUG:teuthology.orchestra.run.smithi038:> sudo chmod 777 /etc/ceph 2023-11-30T22:53:17.053 DEBUG:teuthology.orchestra.run.smithi167:> sudo chmod 777 /etc/ceph 2023-11-30T22:53:17.077 INFO:tasks.cephadm:Writing seed config... 2023-11-30T22:53:17.078 INFO:tasks.cephadm: override: [mgr] debug mgr = 20 2023-11-30T22:53:17.078 INFO:tasks.cephadm: override: [mgr] debug ms = 1 2023-11-30T22:53:17.078 INFO:tasks.cephadm: override: [mon] debug mon = 20 2023-11-30T22:53:17.078 INFO:tasks.cephadm: override: [mon] debug ms = 1 2023-11-30T22:53:17.078 INFO:tasks.cephadm: override: [mon] debug paxos = 20 2023-11-30T22:53:17.078 INFO:tasks.cephadm: override: [osd] debug ms = 1 2023-11-30T22:53:17.079 INFO:tasks.cephadm: override: [osd] debug osd = 20 2023-11-30T22:53:17.079 INFO:tasks.cephadm: override: [osd] osd shutdown pgref assert = True 2023-11-30T22:53:17.079 DEBUG:teuthology.orchestra.run.smithi038:> set -ex 2023-11-30T22:53:17.079 DEBUG:teuthology.orchestra.run.smithi038:> dd of=/home/ubuntu/cephtest/seed.ceph.conf 2023-11-30T22:53:17.112 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 = 3faf8b00-8fd3-11ee-95a2-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-11-30T22:53:17.112 DEBUG:teuthology.orchestra.run.smithi038:mon.smithi038> sudo journalctl -f -n 0 -u ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715@mon.smithi038.service 2023-11-30T22:53:17.154 INFO:tasks.cephadm:Bootstrapping... 2023-11-30T22:53:17.154 DEBUG:teuthology.orchestra.run.smithi038:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:0dc074ce0b0b3b4f393f56dd32ef36884ebf45a9 -v bootstrap --fsid 3faf8b00-8fd3-11ee-95a2-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.38 --skip-admin-label && sudo chmod +r /etc/ceph/ceph.client.admin.keyring 2023-11-30T22:53:17.183 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:-- Logs begin at Thu 2023-11-30 22:43:31 UTC. -- 2023-11-30T22:53:17.503 INFO:teuthology.orchestra.run.smithi038.stderr:-------------------------------------------------------------------------------- 2023-11-30T22:53:17.504 INFO:teuthology.orchestra.run.smithi038.stderr:cephadm ['--image', 'quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:0dc074ce0b0b3b4f393f56dd32ef36884ebf45a9', '-v', 'bootstrap', '--fsid', '3faf8b00-8fd3-11ee-95a2-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.38', '--skip-admin-label'] 2023-11-30T22:53:19.275 INFO:teuthology.orchestra.run.smithi038.stderr:/bin/podman: 3.2.3 2023-11-30T22:53:19.385 INFO:teuthology.orchestra.run.smithi038.stderr:Verifying podman|docker is present... 2023-11-30T22:53:19.432 INFO:teuthology.orchestra.run.smithi038.stderr:/bin/podman: 3.2.3 2023-11-30T22:53:19.538 INFO:teuthology.orchestra.run.smithi038.stderr:Verifying lvm2 is present... 2023-11-30T22:53:19.538 INFO:teuthology.orchestra.run.smithi038.stderr:Verifying time synchronization is in place... 2023-11-30T22:53:19.545 INFO:teuthology.orchestra.run.smithi038.stderr:systemctl: Failed to get unit file state for chrony.service: No such file or directory 2023-11-30T22:53:19.551 INFO:teuthology.orchestra.run.smithi038.stderr:systemctl: inactive 2023-11-30T22:53:19.558 INFO:teuthology.orchestra.run.smithi038.stderr:systemctl: enabled 2023-11-30T22:53:19.564 INFO:teuthology.orchestra.run.smithi038.stderr:systemctl: active 2023-11-30T22:53:19.565 INFO:teuthology.orchestra.run.smithi038.stderr:Unit chronyd.service is enabled and running 2023-11-30T22:53:19.565 INFO:teuthology.orchestra.run.smithi038.stderr:Repeating the final host check... 2023-11-30T22:53:19.608 INFO:teuthology.orchestra.run.smithi038.stderr:/bin/podman: 3.2.3 2023-11-30T22:53:19.715 INFO:teuthology.orchestra.run.smithi038.stderr:podman (/bin/podman) version 3.2.3 is present 2023-11-30T22:53:19.715 INFO:teuthology.orchestra.run.smithi038.stderr:systemctl is present 2023-11-30T22:53:19.716 INFO:teuthology.orchestra.run.smithi038.stderr:lvcreate is present 2023-11-30T22:53:19.721 INFO:teuthology.orchestra.run.smithi038.stderr:systemctl: Failed to get unit file state for chrony.service: No such file or directory 2023-11-30T22:53:19.727 INFO:teuthology.orchestra.run.smithi038.stderr:systemctl: inactive 2023-11-30T22:53:19.733 INFO:teuthology.orchestra.run.smithi038.stderr:systemctl: enabled 2023-11-30T22:53:19.739 INFO:teuthology.orchestra.run.smithi038.stderr:systemctl: active 2023-11-30T22:53:19.739 INFO:teuthology.orchestra.run.smithi038.stderr:Unit chronyd.service is enabled and running 2023-11-30T22:53:19.740 INFO:teuthology.orchestra.run.smithi038.stderr:Host looks OK 2023-11-30T22:53:19.740 INFO:teuthology.orchestra.run.smithi038.stderr:Cluster fsid: 3faf8b00-8fd3-11ee-95a2-87774f69a715 2023-11-30T22:53:19.740 INFO:teuthology.orchestra.run.smithi038.stderr:Acquiring lock 140609558306888 on /run/cephadm/3faf8b00-8fd3-11ee-95a2-87774f69a715.lock 2023-11-30T22:53:19.740 INFO:teuthology.orchestra.run.smithi038.stderr:Lock 140609558306888 acquired on /run/cephadm/3faf8b00-8fd3-11ee-95a2-87774f69a715.lock 2023-11-30T22:53:19.740 INFO:teuthology.orchestra.run.smithi038.stderr:Verifying IP 172.21.15.38 port 3300 ... 2023-11-30T22:53:19.741 INFO:teuthology.orchestra.run.smithi038.stderr:Verifying IP 172.21.15.38 port 6789 ... 2023-11-30T22:53:19.741 INFO:teuthology.orchestra.run.smithi038.stderr:Base mon IP(s) is [172.21.15.38:3300, 172.21.15.38:6789], mon addrv is [v2:172.21.15.38:3300,v1:172.21.15.38:6789] 2023-11-30T22:53:19.745 INFO:teuthology.orchestra.run.smithi038.stderr:/sbin/ip: default via 172.21.15.254 dev ens1f0 proto dhcp metric 100 2023-11-30T22:53:19.745 INFO:teuthology.orchestra.run.smithi038.stderr:/sbin/ip: 172.21.0.0/20 dev ens1f0 proto kernel scope link src 172.21.15.38 metric 100 2023-11-30T22:53:19.747 INFO:teuthology.orchestra.run.smithi038.stderr:/sbin/ip: ::1 dev lo proto kernel metric 256 pref medium 2023-11-30T22:53:19.747 INFO:teuthology.orchestra.run.smithi038.stderr:/sbin/ip: fe80::/64 dev ens1f0 proto kernel metric 256 pref medium 2023-11-30T22:53:19.748 INFO:teuthology.orchestra.run.smithi038.stderr:/sbin/ip: default via fe80::327c:5e00:6487:71e0 dev ens1f0 proto ra metric 1024 expires 1784sec hoplimit 64 pref medium 2023-11-30T22:53:19.750 INFO:teuthology.orchestra.run.smithi038.stderr:/sbin/ip: 1: lo: mtu 65536 state UNKNOWN qlen 1000 2023-11-30T22:53:19.750 INFO:teuthology.orchestra.run.smithi038.stderr:/sbin/ip: inet6 ::1/128 scope host 2023-11-30T22:53:19.750 INFO:teuthology.orchestra.run.smithi038.stderr:/sbin/ip: valid_lft forever preferred_lft forever 2023-11-30T22:53:19.750 INFO:teuthology.orchestra.run.smithi038.stderr:/sbin/ip: 3: ens1f0: mtu 1500 state UP qlen 1000 2023-11-30T22:53:19.750 INFO:teuthology.orchestra.run.smithi038.stderr:/sbin/ip: inet6 fe80::ec4:7aff:febd:15fc/64 scope link noprefixroute 2023-11-30T22:53:19.750 INFO:teuthology.orchestra.run.smithi038.stderr:/sbin/ip: valid_lft forever preferred_lft forever 2023-11-30T22:53:19.751 INFO:teuthology.orchestra.run.smithi038.stderr:Mon IP `172.21.15.38` is in CIDR network `172.21.0.0/20` 2023-11-30T22:53:19.751 INFO:teuthology.orchestra.run.smithi038.stderr:Mon IP `172.21.15.38` is in CIDR network `172.21.0.0/20` 2023-11-30T22:53:19.751 INFO:teuthology.orchestra.run.smithi038.stderr:Inferred mon public CIDR from local network configuration ['172.21.0.0/20', '172.21.0.0/20'] 2023-11-30T22:53:19.752 INFO:teuthology.orchestra.run.smithi038.stderr:Internal network (--cluster-network) has not been provided, OSD replication will default to the public_network 2023-11-30T22:53:19.753 INFO:teuthology.orchestra.run.smithi038.stderr:Pulling container image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:0dc074ce0b0b3b4f393f56dd32ef36884ebf45a9... 2023-11-30T22:53:19.827 INFO:teuthology.orchestra.run.smithi038.stderr:/bin/podman: Trying to pull quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:0dc074ce0b0b3b4f393f56dd32ef36884ebf45a9... 2023-11-30T22:53:19.922 INFO:teuthology.orchestra.run.smithi038.stderr:/bin/podman: Getting image source signatures 2023-11-30T22:53:20.062 INFO:teuthology.orchestra.run.smithi038.stderr:/bin/podman: Copying blob sha256:d3e436ac93e4b5a6d94c7ac8024df331e66e67275836276615dc044fd3cbf83a 2023-11-30T22:53:20.111 INFO:teuthology.orchestra.run.smithi038.stderr:/bin/podman: Copying blob sha256:96ba01455e65bc03491e2f2316657b68180ac5005b1d5caba9f26ab597b9194e 2023-11-30T22:53:39.744 INFO:teuthology.orchestra.run.smithi038.stderr:/bin/podman: Copying config sha256:d30c4dc4d760f2fdb463af249ff72204aa7b305461ccb4ab64a229b59c3e2dc6 2023-11-30T22:53:39.800 INFO:teuthology.orchestra.run.smithi038.stderr:/bin/podman: Writing manifest to image destination 2023-11-30T22:53:39.800 INFO:teuthology.orchestra.run.smithi038.stderr:/bin/podman: Storing signatures 2023-11-30T22:53:53.911 INFO:teuthology.orchestra.run.smithi038.stderr:/bin/podman: d30c4dc4d760f2fdb463af249ff72204aa7b305461ccb4ab64a229b59c3e2dc6 2023-11-30T22:53:54.643 INFO:teuthology.orchestra.run.smithi038.stderr:ceph: ceph version 16.2.14-328-g0dc074ce (0dc074ce0b0b3b4f393f56dd32ef36884ebf45a9) pacific (stable) 2023-11-30T22:53:55.075 INFO:teuthology.orchestra.run.smithi038.stderr:Ceph version: ceph version 16.2.14-328-g0dc074ce (0dc074ce0b0b3b4f393f56dd32ef36884ebf45a9) pacific (stable) 2023-11-30T22:53:55.075 INFO:teuthology.orchestra.run.smithi038.stderr:Extracting ceph user uid/gid from container image... 2023-11-30T22:53:55.486 INFO:teuthology.orchestra.run.smithi038.stderr:stat: 167 167 2023-11-30T22:53:55.820 INFO:teuthology.orchestra.run.smithi038.stderr:Creating initial keys... 2023-11-30T22:53:56.178 INFO:teuthology.orchestra.run.smithi038.stderr:/usr/bin/ceph-authtool: AQCEEmllUZ5DChAAjk9+tEyXCjmaA4+TFqlCTA== 2023-11-30T22:53:56.903 INFO:teuthology.orchestra.run.smithi038.stderr:/usr/bin/ceph-authtool: AQCEEmllnj+VNRAAq6RYK/9Sk3hNGQMSma1Jpw== 2023-11-30T22:53:57.677 INFO:teuthology.orchestra.run.smithi038.stderr:/usr/bin/ceph-authtool: AQCFEmll8dkBKBAAQqjq52hQj2uPx2SVu7nVMg== 2023-11-30T22:53:58.261 INFO:teuthology.orchestra.run.smithi038.stderr:Creating initial monmap... 2023-11-30T22:53:58.645 INFO:teuthology.orchestra.run.smithi038.stderr:/usr/bin/monmaptool: /usr/bin/monmaptool: monmap file /tmp/monmap 2023-11-30T22:53:58.645 INFO:teuthology.orchestra.run.smithi038.stderr:/usr/bin/monmaptool: /usr/bin/monmaptool: set fsid to 3faf8b00-8fd3-11ee-95a2-87774f69a715 2023-11-30T22:53:58.645 INFO:teuthology.orchestra.run.smithi038.stderr:/usr/bin/monmaptool: /usr/bin/monmaptool: writing epoch 0 to /tmp/monmap (1 monitors) 2023-11-30T22:53:59.405 INFO:teuthology.orchestra.run.smithi038.stderr:monmaptool for smithi038 [v2:172.21.15.38:3300,v1:172.21.15.38:6789] on /usr/bin/monmaptool: monmap file /tmp/monmap 2023-11-30T22:53:59.405 INFO:teuthology.orchestra.run.smithi038.stderr:/usr/bin/monmaptool: set fsid to 3faf8b00-8fd3-11ee-95a2-87774f69a715 2023-11-30T22:53:59.405 INFO:teuthology.orchestra.run.smithi038.stderr:/usr/bin/monmaptool: writing epoch 0 to /tmp/monmap (1 monitors) 2023-11-30T22:53:59.406 INFO:teuthology.orchestra.run.smithi038.stderr: 2023-11-30T22:53:59.406 INFO:teuthology.orchestra.run.smithi038.stderr:Creating mon... 2023-11-30T22:53:59.827 INFO:teuthology.orchestra.run.smithi038.stderr:/usr/bin/ceph-mon: debug 2023-11-30T22:53:59.801+0000 7f5a29133880 0 set uid:gid to 167:167 (ceph:ceph) 2023-11-30T22:53:59.828 INFO:teuthology.orchestra.run.smithi038.stderr:/usr/bin/ceph-mon: debug 2023-11-30T22:53:59.801+0000 7f5a29133880 1 imported monmap: 2023-11-30T22:53:59.828 INFO:teuthology.orchestra.run.smithi038.stderr:/usr/bin/ceph-mon: epoch 0 2023-11-30T22:53:59.828 INFO:teuthology.orchestra.run.smithi038.stderr:/usr/bin/ceph-mon: fsid 3faf8b00-8fd3-11ee-95a2-87774f69a715 2023-11-30T22:53:59.828 INFO:teuthology.orchestra.run.smithi038.stderr:/usr/bin/ceph-mon: last_changed 2023-11-30T22:53:58.638783+0000 2023-11-30T22:53:59.828 INFO:teuthology.orchestra.run.smithi038.stderr:/usr/bin/ceph-mon: created 2023-11-30T22:53:58.638783+0000 2023-11-30T22:53:59.828 INFO:teuthology.orchestra.run.smithi038.stderr:/usr/bin/ceph-mon: min_mon_release 0 (unknown) 2023-11-30T22:53:59.828 INFO:teuthology.orchestra.run.smithi038.stderr:/usr/bin/ceph-mon: election_strategy: 1 2023-11-30T22:53:59.828 INFO:teuthology.orchestra.run.smithi038.stderr:/usr/bin/ceph-mon: 0: [v2:172.21.15.38:3300/0,v1:172.21.15.38:6789/0] mon.smithi038 2023-11-30T22:53:59.828 INFO:teuthology.orchestra.run.smithi038.stderr:/usr/bin/ceph-mon: 2023-11-30T22:53:59.828 INFO:teuthology.orchestra.run.smithi038.stderr:/usr/bin/ceph-mon: debug 2023-11-30T22:53:59.801+0000 7f5a29133880 0 /usr/bin/ceph-mon: set fsid to 3faf8b00-8fd3-11ee-95a2-87774f69a715 2023-11-30T22:53:59.829 INFO:teuthology.orchestra.run.smithi038.stderr:/usr/bin/ceph-mon: debug 2023-11-30T22:53:59.802+0000 7f5a29133880 4 rocksdb: RocksDB version: 6.8.1 2023-11-30T22:53:59.829 INFO:teuthology.orchestra.run.smithi038.stderr:/usr/bin/ceph-mon: 2023-11-30T22:53:59.829 INFO:teuthology.orchestra.run.smithi038.stderr:/usr/bin/ceph-mon: debug 2023-11-30T22:53:59.802+0000 7f5a29133880 4 rocksdb: Git sha rocksdb_build_git_sha:@0@ 2023-11-30T22:53:59.829 INFO:teuthology.orchestra.run.smithi038.stderr:/usr/bin/ceph-mon: debug 2023-11-30T22:53:59.802+0000 7f5a29133880 4 rocksdb: Compile date Nov 29 2023 2023-11-30T22:53:59.829 INFO:teuthology.orchestra.run.smithi038.stderr:/usr/bin/ceph-mon: debug 2023-11-30T22:53:59.802+0000 7f5a29133880 4 rocksdb: DB SUMMARY 2023-11-30T22:53:59.829 INFO:teuthology.orchestra.run.smithi038.stderr:/usr/bin/ceph-mon: 2023-11-30T22:53:59.829 INFO:teuthology.orchestra.run.smithi038.stderr:/usr/bin/ceph-mon: debug 2023-11-30T22:53:59.802+0000 7f5a29133880 4 rocksdb: SST files in /var/lib/ceph/mon/ceph-smithi038/store.db dir, Total Num: 0, files: 2023-11-30T22:53:59.829 INFO:teuthology.orchestra.run.smithi038.stderr:/usr/bin/ceph-mon: 2023-11-30T22:53:59.829 INFO:teuthology.orchestra.run.smithi038.stderr:/usr/bin/ceph-mon: debug 2023-11-30T22:53:59.802+0000 7f5a29133880 4 rocksdb: Write Ahead Log file in /var/lib/ceph/mon/ceph-smithi038/store.db: 2023-11-30T22:53:59.829 INFO:teuthology.orchestra.run.smithi038.stderr:/usr/bin/ceph-mon: 2023-11-30T22:53:59.829 INFO:teuthology.orchestra.run.smithi038.stderr:/usr/bin/ceph-mon: debug 2023-11-30T22:53:59.802+0000 7f5a29133880 4 rocksdb: Options.error_if_exists: 0 2023-11-30T22:53:59.829 INFO:teuthology.orchestra.run.smithi038.stderr:/usr/bin/ceph-mon: debug 2023-11-30T22:53:59.802+0000 7f5a29133880 4 rocksdb: Options.create_if_missing: 1 2023-11-30T22:53:59.829 INFO:teuthology.orchestra.run.smithi038.stderr:/usr/bin/ceph-mon: debug 2023-11-30T22:53:59.802+0000 7f5a29133880 4 rocksdb: Options.paranoid_checks: 1 2023-11-30T22:53:59.830 INFO:teuthology.orchestra.run.smithi038.stderr:/usr/bin/ceph-mon: debug 2023-11-30T22:53:59.802+0000 7f5a29133880 4 rocksdb: Options.env: 0x563f2a084080 2023-11-30T22:53:59.830 INFO:teuthology.orchestra.run.smithi038.stderr:/usr/bin/ceph-mon: debug 2023-11-30T22:53:59.802+0000 7f5a29133880 4 rocksdb: Options.fs: Posix File System 2023-11-30T22:53:59.830 INFO:teuthology.orchestra.run.smithi038.stderr:/usr/bin/ceph-mon: debug 2023-11-30T22:53:59.802+0000 7f5a29133880 4 rocksdb: Options.info_log: 0x563f2c555380 2023-11-30T22:53:59.830 INFO:teuthology.orchestra.run.smithi038.stderr:/usr/bin/ceph-mon: debug 2023-11-30T22:53:59.802+0000 7f5a29133880 4 rocksdb: Options.max_file_opening_threads: 16 2023-11-30T22:53:59.830 INFO:teuthology.orchestra.run.smithi038.stderr:/usr/bin/ceph-mon: debug 2023-11-30T22:53:59.802+0000 7f5a29133880 4 rocksdb: Options.statistics: (nil) 2023-11-30T22:53:59.830 INFO:teuthology.orchestra.run.smithi038.stderr:/usr/bin/ceph-mon: debug 2023-11-30T22:53:59.802+0000 7f5a29133880 4 rocksdb: Options.use_fsync: 0 2023-11-30T22:53:59.830 INFO:teuthology.orchestra.run.smithi038.stderr:/usr/bin/ceph-mon: debug 2023-11-30T22:53:59.802+0000 7f5a29133880 4 rocksdb: Options.max_log_file_size: 0 2023-11-30T22:53:59.830 INFO:teuthology.orchestra.run.smithi038.stderr:/usr/bin/ceph-mon: debug 2023-11-30T22:53:59.802+0000 7f5a29133880 4 rocksdb: Options.max_manifest_file_size: 1073741824 2023-11-30T22:53:59.830 INFO:teuthology.orchestra.run.smithi038.stderr:/usr/bin/ceph-mon: debug 2023-11-30T22:53:59.802+0000 7f5a29133880 4 rocksdb: Options.log_file_time_to_roll: 0 2023-11-30T22:53:59.830 INFO:teuthology.orchestra.run.smithi038.stderr:/usr/bin/ceph-mon: debug 2023-11-30T22:53:59.802+0000 7f5a29133880 4 rocksdb: Options.keep_log_file_num: 1000 2023-11-30T22:53:59.830 INFO:teuthology.orchestra.run.smithi038.stderr:/usr/bin/ceph-mon: debug 2023-11-30T22:53:59.802+0000 7f5a29133880 4 rocksdb: Options.recycle_log_file_num: 0 2023-11-30T22:53:59.830 INFO:teuthology.orchestra.run.smithi038.stderr:/usr/bin/ceph-mon: debug 2023-11-30T22:53:59.802+0000 7f5a29133880 4 rocksdb: Options.allow_fallocate: 1 2023-11-30T22:53:59.831 INFO:teuthology.orchestra.run.smithi038.stderr:/usr/bin/ceph-mon: debug 2023-11-30T22:53:59.802+0000 7f5a29133880 4 rocksdb: Options.allow_mmap_reads: 0 2023-11-30T22:53:59.831 INFO:teuthology.orchestra.run.smithi038.stderr:/usr/bin/ceph-mon: debug 2023-11-30T22:53:59.802+0000 7f5a29133880 4 rocksdb: Options.allow_mmap_writes: 0 2023-11-30T22:53:59.831 INFO:teuthology.orchestra.run.smithi038.stderr:/usr/bin/ceph-mon: debug 2023-11-30T22:53:59.802+0000 7f5a29133880 4 rocksdb: Options.use_direct_reads: 0 2023-11-30T22:53:59.831 INFO:teuthology.orchestra.run.smithi038.stderr:/usr/bin/ceph-mon: debug 2023-11-30T22:53:59.802+0000 7f5a29133880 4 rocksdb: Options.use_direct_io_for_flush_and_compaction: 0 2023-11-30T22:53:59.831 INFO:teuthology.orchestra.run.smithi038.stderr:/usr/bin/ceph-mon: debug 2023-11-30T22:53:59.802+0000 7f5a29133880 4 rocksdb: Options.create_missing_column_families: 0 2023-11-30T22:53:59.831 INFO:teuthology.orchestra.run.smithi038.stderr:/usr/bin/ceph-mon: debug 2023-11-30T22:53:59.802+0000 7f5a29133880 4 rocksdb: Options.db_log_dir: 2023-11-30T22:53:59.831 INFO:teuthology.orchestra.run.smithi038.stderr:/usr/bin/ceph-mon: debug 2023-11-30T22:53:59.802+0000 7f5a29133880 4 rocksdb: Options.wal_dir: /var/lib/ceph/mon/ceph-smithi038/store.db 2023-11-30T22:53:59.831 INFO:teuthology.orchestra.run.smithi038.stderr:/usr/bin/ceph-mon: debug 2023-11-30T22:53:59.802+0000 7f5a29133880 4 rocksdb: Options.table_cache_numshardbits: 6 2023-11-30T22:53:59.831 INFO:teuthology.orchestra.run.smithi038.stderr:/usr/bin/ceph-mon: debug 2023-11-30T22:53:59.802+0000 7f5a29133880 4 rocksdb: Options.max_subcompactions: 1 2023-11-30T22:53:59.831 INFO:teuthology.orchestra.run.smithi038.stderr:/usr/bin/ceph-mon: debug 2023-11-30T22:53:59.802+0000 7f5a29133880 4 rocksdb: Options.max_background_flushes: -1 2023-11-30T22:53:59.831 INFO:teuthology.orchestra.run.smithi038.stderr:/usr/bin/ceph-mon: debug 2023-11-30T22:53:59.802+0000 7f5a29133880 4 rocksdb: Options.WAL_ttl_seconds: 0 2023-11-30T22:53:59.831 INFO:teuthology.orchestra.run.smithi038.stderr:/usr/bin/ceph-mon: debug 2023-11-30T22:53:59.802+0000 7f5a29133880 4 rocksdb: Options.WAL_size_limit_MB: 0 2023-11-30T22:53:59.831 INFO:teuthology.orchestra.run.smithi038.stderr:/usr/bin/ceph-mon: debug 2023-11-30T22:53:59.802+0000 7f5a29133880 4 rocksdb: Options.max_write_batch_group_size_bytes: 1048576 2023-11-30T22:53:59.832 INFO:teuthology.orchestra.run.smithi038.stderr:/usr/bin/ceph-mon: debug 2023-11-30T22:53:59.802+0000 7f5a29133880 4 rocksdb: Options.manifest_preallocation_size: 4194304 2023-11-30T22:53:59.832 INFO:teuthology.orchestra.run.smithi038.stderr:/usr/bin/ceph-mon: debug 2023-11-30T22:53:59.802+0000 7f5a29133880 4 rocksdb: Options.is_fd_close_on_exec: 1 2023-11-30T22:53:59.832 INFO:teuthology.orchestra.run.smithi038.stderr:/usr/bin/ceph-mon: debug 2023-11-30T22:53:59.802+0000 7f5a29133880 4 rocksdb: Options.advise_random_on_open: 1 2023-11-30T22:53:59.832 INFO:teuthology.orchestra.run.smithi038.stderr:/usr/bin/ceph-mon: debug 2023-11-30T22:53:59.802+0000 7f5a29133880 4 rocksdb: Options.db_write_buffer_size: 0 2023-11-30T22:53:59.832 INFO:teuthology.orchestra.run.smithi038.stderr:/usr/bin/ceph-mon: debug 2023-11-30T22:53:59.802+0000 7f5a29133880 4 rocksdb: Options.write_buffer_manager: 0x563f2c55b980 2023-11-30T22:53:59.832 INFO:teuthology.orchestra.run.smithi038.stderr:/usr/bin/ceph-mon: debug 2023-11-30T22:53:59.802+0000 7f5a29133880 4 rocksdb: Options.access_hint_on_compaction_start: 1 2023-11-30T22:53:59.832 INFO:teuthology.orchestra.run.smithi038.stderr:/usr/bin/ceph-mon: debug 2023-11-30T22:53:59.802+0000 7f5a29133880 4 rocksdb: Options.new_table_reader_for_compaction_inputs: 0 2023-11-30T22:53:59.832 INFO:teuthology.orchestra.run.smithi038.stderr:/usr/bin/ceph-mon: debug 2023-11-30T22:53:59.802+0000 7f5a29133880 4 rocksdb: Options.random_access_max_buffer_size: 1048576 2023-11-30T22:53:59.832 INFO:teuthology.orchestra.run.smithi038.stderr:/usr/bin/ceph-mon: debug 2023-11-30T22:53:59.802+0000 7f5a29133880 4 rocksdb: Options.use_adaptive_mutex: 0 2023-11-30T22:53:59.832 INFO:teuthology.orchestra.run.smithi038.stderr:/usr/bin/ceph-mon: debug 2023-11-30T22:53:59.802+0000 7f5a29133880 4 rocksdb: Options.rate_limiter: (nil) 2023-11-30T22:53:59.832 INFO:teuthology.orchestra.run.smithi038.stderr:/usr/bin/ceph-mon: debug 2023-11-30T22:53:59.802+0000 7f5a29133880 4 rocksdb: Options.sst_file_manager.rate_bytes_per_sec: 0 2023-11-30T22:53:59.832 INFO:teuthology.orchestra.run.smithi038.stderr:/usr/bin/ceph-mon: debug 2023-11-30T22:53:59.802+0000 7f5a29133880 4 rocksdb: Options.wal_recovery_mode: 2 2023-11-30T22:53:59.833 INFO:teuthology.orchestra.run.smithi038.stderr:/usr/bin/ceph-mon: debug 2023-11-30T22:53:59.802+0000 7f5a29133880 4 rocksdb: Options.enable_thread_tracking: 0 2023-11-30T22:53:59.833 INFO:teuthology.orchestra.run.smithi038.stderr:/usr/bin/ceph-mon: debug 2023-11-30T22:53:59.802+0000 7f5a29133880 4 rocksdb: Options.enable_pipelined_write: 0 2023-11-30T22:53:59.833 INFO:teuthology.orchestra.run.smithi038.stderr:/usr/bin/ceph-mon: debug 2023-11-30T22:53:59.802+0000 7f5a29133880 4 rocksdb: Options.unordered_write: 0 2023-11-30T22:53:59.833 INFO:teuthology.orchestra.run.smithi038.stderr:/usr/bin/ceph-mon: debug 2023-11-30T22:53:59.802+0000 7f5a29133880 4 rocksdb: Options.allow_concurrent_memtable_write: 1 2023-11-30T22:53:59.833 INFO:teuthology.orchestra.run.smithi038.stderr:/usr/bin/ceph-mon: debug 2023-11-30T22:53:59.802+0000 7f5a29133880 4 rocksdb: Options.enable_write_thread_adaptive_yield: 1 2023-11-30T22:53:59.833 INFO:teuthology.orchestra.run.smithi038.stderr:/usr/bin/ceph-mon: debug 2023-11-30T22:53:59.802+0000 7f5a29133880 4 rocksdb: Options.write_thread_max_yield_usec: 100 2023-11-30T22:53:59.833 INFO:teuthology.orchestra.run.smithi038.stderr:/usr/bin/ceph-mon: debug 2023-11-30T22:53:59.802+0000 7f5a29133880 4 rocksdb: Options.write_thread_slow_yield_usec: 3 2023-11-30T22:53:59.833 INFO:teuthology.orchestra.run.smithi038.stderr:/usr/bin/ceph-mon: debug 2023-11-30T22:53:59.802+0000 7f5a29133880 4 rocksdb: Options.row_cache: None 2023-11-30T22:53:59.833 INFO:teuthology.orchestra.run.smithi038.stderr:/usr/bin/ceph-mon: debug 2023-11-30T22:53:59.802+0000 7f5a29133880 4 rocksdb: Options.wal_filter: None 2023-11-30T22:53:59.833 INFO:teuthology.orchestra.run.smithi038.stderr:/usr/bin/ceph-mon: debug 2023-11-30T22:53:59.802+0000 7f5a29133880 4 rocksdb: Options.avoid_flush_during_recovery: 0 2023-11-30T22:53:59.833 INFO:teuthology.orchestra.run.smithi038.stderr:/usr/bin/ceph-mon: debug 2023-11-30T22:53:59.802+0000 7f5a29133880 4 rocksdb: Options.allow_ingest_behind: 0 2023-11-30T22:53:59.833 INFO:teuthology.orchestra.run.smithi038.stderr:/usr/bin/ceph-mon: debug 2023-11-30T22:53:59.802+0000 7f5a29133880 4 rocksdb: Options.preserve_deletes: 0 2023-11-30T22:53:59.833 INFO:teuthology.orchestra.run.smithi038.stderr:/usr/bin/ceph-mon: debug 2023-11-30T22:53:59.802+0000 7f5a29133880 4 rocksdb: Options.two_write_queues: 0 2023-11-30T22:53:59.834 INFO:teuthology.orchestra.run.smithi038.stderr:/usr/bin/ceph-mon: debug 2023-11-30T22:53:59.802+0000 7f5a29133880 4 rocksdb: Options.manual_wal_flush: 0 2023-11-30T22:53:59.834 INFO:teuthology.orchestra.run.smithi038.stderr:/usr/bin/ceph-mon: debug 2023-11-30T22:53:59.802+0000 7f5a29133880 4 rocksdb: Options.atomic_flush: 0 2023-11-30T22:53:59.834 INFO:teuthology.orchestra.run.smithi038.stderr:/usr/bin/ceph-mon: debug 2023-11-30T22:53:59.802+0000 7f5a29133880 4 rocksdb: Options.avoid_unnecessary_blocking_io: 0 2023-11-30T22:53:59.834 INFO:teuthology.orchestra.run.smithi038.stderr:/usr/bin/ceph-mon: debug 2023-11-30T22:53:59.802+0000 7f5a29133880 4 rocksdb: Options.persist_stats_to_disk: 0 2023-11-30T22:53:59.834 INFO:teuthology.orchestra.run.smithi038.stderr:/usr/bin/ceph-mon: debug 2023-11-30T22:53:59.802+0000 7f5a29133880 4 rocksdb: Options.write_dbid_to_manifest: 0 2023-11-30T22:53:59.834 INFO:teuthology.orchestra.run.smithi038.stderr:/usr/bin/ceph-mon: debug 2023-11-30T22:53:59.802+0000 7f5a29133880 4 rocksdb: Options.log_readahead_size: 0 2023-11-30T22:53:59.834 INFO:teuthology.orchestra.run.smithi038.stderr:/usr/bin/ceph-mon: debug 2023-11-30T22:53:59.802+0000 7f5a29133880 4 rocksdb: Options.sst_file_checksum_func: Unknown 2023-11-30T22:53:59.834 INFO:teuthology.orchestra.run.smithi038.stderr:/usr/bin/ceph-mon: debug 2023-11-30T22:53:59.802+0000 7f5a29133880 4 rocksdb: Options.max_background_jobs: 2 2023-11-30T22:53:59.834 INFO:teuthology.orchestra.run.smithi038.stderr:/usr/bin/ceph-mon: debug 2023-11-30T22:53:59.802+0000 7f5a29133880 4 rocksdb: Options.max_background_compactions: -1 2023-11-30T22:53:59.834 INFO:teuthology.orchestra.run.smithi038.stderr:/usr/bin/ceph-mon: debug 2023-11-30T22:53:59.802+0000 7f5a29133880 4 rocksdb: Options.avoid_flush_during_shutdown: 0 2023-11-30T22:53:59.834 INFO:teuthology.orchestra.run.smithi038.stderr:/usr/bin/ceph-mon: debug 2023-11-30T22:53:59.802+0000 7f5a29133880 4 rocksdb: Options.writable_file_max_buffer_size: 1048576 2023-11-30T22:53:59.834 INFO:teuthology.orchestra.run.smithi038.stderr:/usr/bin/ceph-mon: debug 2023-11-30T22:53:59.802+0000 7f5a29133880 4 rocksdb: Options.delayed_write_rate : 16777216 2023-11-30T22:53:59.835 INFO:teuthology.orchestra.run.smithi038.stderr:/usr/bin/ceph-mon: debug 2023-11-30T22:53:59.802+0000 7f5a29133880 4 rocksdb: Options.max_total_wal_size: 0 2023-11-30T22:53:59.835 INFO:teuthology.orchestra.run.smithi038.stderr:/usr/bin/ceph-mon: debug 2023-11-30T22:53:59.802+0000 7f5a29133880 4 rocksdb: Options.delete_obsolete_files_period_micros: 21600000000 2023-11-30T22:53:59.835 INFO:teuthology.orchestra.run.smithi038.stderr:/usr/bin/ceph-mon: debug 2023-11-30T22:53:59.802+0000 7f5a29133880 4 rocksdb: Options.stats_dump_period_sec: 600 2023-11-30T22:53:59.835 INFO:teuthology.orchestra.run.smithi038.stderr:/usr/bin/ceph-mon: debug 2023-11-30T22:53:59.802+0000 7f5a29133880 4 rocksdb: Options.stats_persist_period_sec: 600 2023-11-30T22:53:59.835 INFO:teuthology.orchestra.run.smithi038.stderr:/usr/bin/ceph-mon: debug 2023-11-30T22:53:59.802+0000 7f5a29133880 4 rocksdb: Options.stats_history_buffer_size: 1048576 2023-11-30T22:53:59.835 INFO:teuthology.orchestra.run.smithi038.stderr:/usr/bin/ceph-mon: debug 2023-11-30T22:53:59.802+0000 7f5a29133880 4 rocksdb: Options.max_open_files: -1 2023-11-30T22:53:59.835 INFO:teuthology.orchestra.run.smithi038.stderr:/usr/bin/ceph-mon: debug 2023-11-30T22:53:59.802+0000 7f5a29133880 4 rocksdb: Options.bytes_per_sync: 0 2023-11-30T22:53:59.835 INFO:teuthology.orchestra.run.smithi038.stderr:/usr/bin/ceph-mon: debug 2023-11-30T22:53:59.802+0000 7f5a29133880 4 rocksdb: Options.wal_bytes_per_sync: 0 2023-11-30T22:53:59.835 INFO:teuthology.orchestra.run.smithi038.stderr:/usr/bin/ceph-mon: debug 2023-11-30T22:53:59.802+0000 7f5a29133880 4 rocksdb: Options.strict_bytes_per_sync: 0 2023-11-30T22:53:59.835 INFO:teuthology.orchestra.run.smithi038.stderr:/usr/bin/ceph-mon: debug 2023-11-30T22:53:59.802+0000 7f5a29133880 4 rocksdb: Options.compaction_readahead_size: 0 2023-11-30T22:53:59.835 INFO:teuthology.orchestra.run.smithi038.stderr:/usr/bin/ceph-mon: debug 2023-11-30T22:53:59.802+0000 7f5a29133880 4 rocksdb: Compression algorithms supported: 2023-11-30T22:53:59.835 INFO:teuthology.orchestra.run.smithi038.stderr:/usr/bin/ceph-mon: debug 2023-11-30T22:53:59.802+0000 7f5a29133880 4 rocksdb: kZSTDNotFinalCompression supported: 0 2023-11-30T22:53:59.836 INFO:teuthology.orchestra.run.smithi038.stderr:/usr/bin/ceph-mon: debug 2023-11-30T22:53:59.802+0000 7f5a29133880 4 rocksdb: kZSTD supported: 0 2023-11-30T22:53:59.836 INFO:teuthology.orchestra.run.smithi038.stderr:/usr/bin/ceph-mon: debug 2023-11-30T22:53:59.802+0000 7f5a29133880 4 rocksdb: kXpressCompression supported: 0 2023-11-30T22:53:59.836 INFO:teuthology.orchestra.run.smithi038.stderr:/usr/bin/ceph-mon: debug 2023-11-30T22:53:59.802+0000 7f5a29133880 4 rocksdb: kLZ4HCCompression supported: 1 2023-11-30T22:53:59.836 INFO:teuthology.orchestra.run.smithi038.stderr:/usr/bin/ceph-mon: debug 2023-11-30T22:53:59.802+0000 7f5a29133880 4 rocksdb: kLZ4Compression supported: 1 2023-11-30T22:53:59.836 INFO:teuthology.orchestra.run.smithi038.stderr:/usr/bin/ceph-mon: debug 2023-11-30T22:53:59.802+0000 7f5a29133880 4 rocksdb: kBZip2Compression supported: 0 2023-11-30T22:53:59.836 INFO:teuthology.orchestra.run.smithi038.stderr:/usr/bin/ceph-mon: debug 2023-11-30T22:53:59.802+0000 7f5a29133880 4 rocksdb: kZlibCompression supported: 1 2023-11-30T22:53:59.836 INFO:teuthology.orchestra.run.smithi038.stderr:/usr/bin/ceph-mon: debug 2023-11-30T22:53:59.802+0000 7f5a29133880 4 rocksdb: kSnappyCompression supported: 1 2023-11-30T22:53:59.836 INFO:teuthology.orchestra.run.smithi038.stderr:/usr/bin/ceph-mon: debug 2023-11-30T22:53:59.802+0000 7f5a29133880 4 rocksdb: Fast CRC32 supported: Supported on x86 2023-11-30T22:53:59.836 INFO:teuthology.orchestra.run.smithi038.stderr:/usr/bin/ceph-mon: debug 2023-11-30T22:53:59.803+0000 7f5a29133880 4 rocksdb: [db_impl/db_impl_open.cc:273] Creating manifest 1 2023-11-30T22:53:59.836 INFO:teuthology.orchestra.run.smithi038.stderr:/usr/bin/ceph-mon: 2023-11-30T22:53:59.836 INFO:teuthology.orchestra.run.smithi038.stderr:/usr/bin/ceph-mon: debug 2023-11-30T22:53:59.806+0000 7f5a29133880 4 rocksdb: [version_set.cc:4413] Recovering from manifest file: /var/lib/ceph/mon/ceph-smithi038/store.db/MANIFEST-000001 2023-11-30T22:53:59.836 INFO:teuthology.orchestra.run.smithi038.stderr:/usr/bin/ceph-mon: 2023-11-30T22:53:59.836 INFO:teuthology.orchestra.run.smithi038.stderr:/usr/bin/ceph-mon: debug 2023-11-30T22:53:59.806+0000 7f5a29133880 4 rocksdb: [column_family.cc:552] --------------- Options for column family [default]: 2023-11-30T22:53:59.837 INFO:teuthology.orchestra.run.smithi038.stderr:/usr/bin/ceph-mon: 2023-11-30T22:53:59.837 INFO:teuthology.orchestra.run.smithi038.stderr:/usr/bin/ceph-mon: debug 2023-11-30T22:53:59.806+0000 7f5a29133880 4 rocksdb: Options.comparator: leveldb.BytewiseComparator 2023-11-30T22:53:59.837 INFO:teuthology.orchestra.run.smithi038.stderr:/usr/bin/ceph-mon: debug 2023-11-30T22:53:59.806+0000 7f5a29133880 4 rocksdb: Options.merge_operator: 2023-11-30T22:53:59.837 INFO:teuthology.orchestra.run.smithi038.stderr:/usr/bin/ceph-mon: debug 2023-11-30T22:53:59.806+0000 7f5a29133880 4 rocksdb: Options.compaction_filter: None 2023-11-30T22:53:59.837 INFO:teuthology.orchestra.run.smithi038.stderr:/usr/bin/ceph-mon: debug 2023-11-30T22:53:59.806+0000 7f5a29133880 4 rocksdb: Options.compaction_filter_factory: None 2023-11-30T22:53:59.837 INFO:teuthology.orchestra.run.smithi038.stderr:/usr/bin/ceph-mon: debug 2023-11-30T22:53:59.806+0000 7f5a29133880 4 rocksdb: Options.memtable_factory: SkipListFactory 2023-11-30T22:53:59.837 INFO:teuthology.orchestra.run.smithi038.stderr:/usr/bin/ceph-mon: debug 2023-11-30T22:53:59.806+0000 7f5a29133880 4 rocksdb: Options.table_factory: BlockBasedTable 2023-11-30T22:53:59.837 INFO:teuthology.orchestra.run.smithi038.stderr:/usr/bin/ceph-mon: debug 2023-11-30T22:53:59.806+0000 7f5a29133880 4 rocksdb: table_factory options: flush_block_policy_factory: FlushBlockBySizePolicyFactory (0x563f2c46bd30) 2023-11-30T22:53:59.837 INFO:teuthology.orchestra.run.smithi038.stderr:/usr/bin/ceph-mon: cache_index_and_filter_blocks: 1 2023-11-30T22:53:59.837 INFO:teuthology.orchestra.run.smithi038.stderr:/usr/bin/ceph-mon: cache_index_and_filter_blocks_with_high_priority: 0 2023-11-30T22:53:59.837 INFO:teuthology.orchestra.run.smithi038.stderr:/usr/bin/ceph-mon: pin_l0_filter_and_index_blocks_in_cache: 0 2023-11-30T22:53:59.837 INFO:teuthology.orchestra.run.smithi038.stderr:/usr/bin/ceph-mon: pin_top_level_index_and_filter: 1 2023-11-30T22:53:59.837 INFO:teuthology.orchestra.run.smithi038.stderr:/usr/bin/ceph-mon: index_type: 0 2023-11-30T22:53:59.838 INFO:teuthology.orchestra.run.smithi038.stderr:/usr/bin/ceph-mon: data_block_index_type: 0 2023-11-30T22:53:59.838 INFO:teuthology.orchestra.run.smithi038.stderr:/usr/bin/ceph-mon: index_shortening: 1 2023-11-30T22:53:59.838 INFO:teuthology.orchestra.run.smithi038.stderr:/usr/bin/ceph-mon: data_block_hash_table_util_ratio: 0.750000 2023-11-30T22:53:59.838 INFO:teuthology.orchestra.run.smithi038.stderr:/usr/bin/ceph-mon: hash_index_allow_collision: 1 2023-11-30T22:53:59.838 INFO:teuthology.orchestra.run.smithi038.stderr:/usr/bin/ceph-mon: checksum: 1 2023-11-30T22:53:59.838 INFO:teuthology.orchestra.run.smithi038.stderr:/usr/bin/ceph-mon: no_block_cache: 0 2023-11-30T22:53:59.838 INFO:teuthology.orchestra.run.smithi038.stderr:/usr/bin/ceph-mon: block_cache: 0x563f2c4a0d10 2023-11-30T22:53:59.838 INFO:teuthology.orchestra.run.smithi038.stderr:/usr/bin/ceph-mon: block_cache_name: BinnedLRUCache 2023-11-30T22:53:59.838 INFO:teuthology.orchestra.run.smithi038.stderr:/usr/bin/ceph-mon: block_cache_options: 2023-11-30T22:53:59.838 INFO:teuthology.orchestra.run.smithi038.stderr:/usr/bin/ceph-mon: capacity : 536870912 2023-11-30T22:53:59.838 INFO:teuthology.orchestra.run.smithi038.stderr:/usr/bin/ceph-mon: num_shard_bits : 4 2023-11-30T22:53:59.838 INFO:teuthology.orchestra.run.smithi038.stderr:/usr/bin/ceph-mon: strict_capacity_limit : 0 2023-11-30T22:53:59.838 INFO:teuthology.orchestra.run.smithi038.stderr:/usr/bin/ceph-mon: high_pri_pool_ratio: 0.000 2023-11-30T22:53:59.839 INFO:teuthology.orchestra.run.smithi038.stderr:/usr/bin/ceph-mon: block_cache_compressed: (nil) 2023-11-30T22:53:59.839 INFO:teuthology.orchestra.run.smithi038.stderr:/usr/bin/ceph-mon: persistent_cache: (nil) 2023-11-30T22:53:59.839 INFO:teuthology.orchestra.run.smithi038.stderr:/usr/bin/ceph-mon: block_size: 4096 2023-11-30T22:53:59.839 INFO:teuthology.orchestra.run.smithi038.stderr:/usr/bin/ceph-mon: block_size_deviation: 10 2023-11-30T22:53:59.839 INFO:teuthology.orchestra.run.smithi038.stderr:/usr/bin/ceph-mon: block_restart_interval: 16 2023-11-30T22:53:59.839 INFO:teuthology.orchestra.run.smithi038.stderr:/usr/bin/ceph-mon: index_block_restart_interval: 1 2023-11-30T22:53:59.839 INFO:teuthology.orchestra.run.smithi038.stderr:/usr/bin/ceph-mon: metadata_block_size: 4096 2023-11-30T22:53:59.839 INFO:teuthology.orchestra.run.smithi038.stderr:/usr/bin/ceph-mon: partition_filters: 0 2023-11-30T22:53:59.839 INFO:teuthology.orchestra.run.smithi038.stderr:/usr/bin/ceph-mon: use_delta_encoding: 1 2023-11-30T22:53:59.839 INFO:teuthology.orchestra.run.smithi038.stderr:/usr/bin/ceph-mon: filter_policy: rocksdb.BuiltinBloomFilter 2023-11-30T22:53:59.839 INFO:teuthology.orchestra.run.smithi038.stderr:/usr/bin/ceph-mon: whole_key_filtering: 1 2023-11-30T22:53:59.839 INFO:teuthology.orchestra.run.smithi038.stderr:/usr/bin/ceph-mon: verify_compression: 0 2023-11-30T22:53:59.839 INFO:teuthology.orchestra.run.smithi038.stderr:/usr/bin/ceph-mon: read_amp_bytes_per_bit: 0 2023-11-30T22:53:59.840 INFO:teuthology.orchestra.run.smithi038.stderr:/usr/bin/ceph-mon: format_version: 2 2023-11-30T22:53:59.840 INFO:teuthology.orchestra.run.smithi038.stderr:/usr/bin/ceph-mon: enable_index_compression: 1 2023-11-30T22:53:59.840 INFO:teuthology.orchestra.run.smithi038.stderr:/usr/bin/ceph-mon: block_align: 0 2023-11-30T22:53:59.840 INFO:teuthology.orchestra.run.smithi038.stderr:/usr/bin/ceph-mon: 2023-11-30T22:53:59.840 INFO:teuthology.orchestra.run.smithi038.stderr:/usr/bin/ceph-mon: debug 2023-11-30T22:53:59.806+0000 7f5a29133880 4 rocksdb: Options.write_buffer_size: 33554432 2023-11-30T22:53:59.840 INFO:teuthology.orchestra.run.smithi038.stderr:/usr/bin/ceph-mon: debug 2023-11-30T22:53:59.806+0000 7f5a29133880 4 rocksdb: Options.max_write_buffer_number: 2 2023-11-30T22:53:59.840 INFO:teuthology.orchestra.run.smithi038.stderr:/usr/bin/ceph-mon: debug 2023-11-30T22:53:59.806+0000 7f5a29133880 4 rocksdb: Options.compression: NoCompression 2023-11-30T22:53:59.840 INFO:teuthology.orchestra.run.smithi038.stderr:/usr/bin/ceph-mon: debug 2023-11-30T22:53:59.806+0000 7f5a29133880 4 rocksdb: Options.bottommost_compression: Disabled 2023-11-30T22:53:59.840 INFO:teuthology.orchestra.run.smithi038.stderr:/usr/bin/ceph-mon: debug 2023-11-30T22:53:59.806+0000 7f5a29133880 4 rocksdb: Options.prefix_extractor: nullptr 2023-11-30T22:53:59.840 INFO:teuthology.orchestra.run.smithi038.stderr:/usr/bin/ceph-mon: debug 2023-11-30T22:53:59.806+0000 7f5a29133880 4 rocksdb: Options.memtable_insert_with_hint_prefix_extractor: nullptr 2023-11-30T22:53:59.840 INFO:teuthology.orchestra.run.smithi038.stderr:/usr/bin/ceph-mon: debug 2023-11-30T22:53:59.806+0000 7f5a29133880 4 rocksdb: Options.num_levels: 7 2023-11-30T22:53:59.840 INFO:teuthology.orchestra.run.smithi038.stderr:/usr/bin/ceph-mon: debug 2023-11-30T22:53:59.806+0000 7f5a29133880 4 rocksdb: Options.min_write_buffer_number_to_merge: 1 2023-11-30T22:53:59.840 INFO:teuthology.orchestra.run.smithi038.stderr:/usr/bin/ceph-mon: debug 2023-11-30T22:53:59.806+0000 7f5a29133880 4 rocksdb: Options.max_write_buffer_number_to_maintain: 0 2023-11-30T22:53:59.841 INFO:teuthology.orchestra.run.smithi038.stderr:/usr/bin/ceph-mon: debug 2023-11-30T22:53:59.806+0000 7f5a29133880 4 rocksdb: Options.max_write_buffer_size_to_maintain: 0 2023-11-30T22:53:59.841 INFO:teuthology.orchestra.run.smithi038.stderr:/usr/bin/ceph-mon: debug 2023-11-30T22:53:59.806+0000 7f5a29133880 4 rocksdb: Options.bottommost_compression_opts.window_bits: -14 2023-11-30T22:53:59.841 INFO:teuthology.orchestra.run.smithi038.stderr:/usr/bin/ceph-mon: debug 2023-11-30T22:53:59.806+0000 7f5a29133880 4 rocksdb: Options.bottommost_compression_opts.level: 32767 2023-11-30T22:53:59.841 INFO:teuthology.orchestra.run.smithi038.stderr:/usr/bin/ceph-mon: debug 2023-11-30T22:53:59.806+0000 7f5a29133880 4 rocksdb: Options.bottommost_compression_opts.strategy: 0 2023-11-30T22:53:59.841 INFO:teuthology.orchestra.run.smithi038.stderr:/usr/bin/ceph-mon: debug 2023-11-30T22:53:59.806+0000 7f5a29133880 4 rocksdb: Options.bottommost_compression_opts.max_dict_bytes: 0 2023-11-30T22:53:59.841 INFO:teuthology.orchestra.run.smithi038.stderr:/usr/bin/ceph-mon: debug 2023-11-30T22:53:59.806+0000 7f5a29133880 4 rocksdb: Options.bottommost_compression_opts.zstd_max_train_bytes: 0 2023-11-30T22:53:59.841 INFO:teuthology.orchestra.run.smithi038.stderr:/usr/bin/ceph-mon: debug 2023-11-30T22:53:59.806+0000 7f5a29133880 4 rocksdb: Options.bottommost_compression_opts.enabled: false 2023-11-30T22:53:59.841 INFO:teuthology.orchestra.run.smithi038.stderr:/usr/bin/ceph-mon: debug 2023-11-30T22:53:59.806+0000 7f5a29133880 4 rocksdb: Options.compression_opts.window_bits: -14 2023-11-30T22:53:59.841 INFO:teuthology.orchestra.run.smithi038.stderr:/usr/bin/ceph-mon: debug 2023-11-30T22:53:59.806+0000 7f5a29133880 4 rocksdb: Options.compression_opts.level: 32767 2023-11-30T22:53:59.841 INFO:teuthology.orchestra.run.smithi038.stderr:/usr/bin/ceph-mon: debug 2023-11-30T22:53:59.806+0000 7f5a29133880 4 rocksdb: Options.compression_opts.strategy: 0 2023-11-30T22:53:59.841 INFO:teuthology.orchestra.run.smithi038.stderr:/usr/bin/ceph-mon: debug 2023-11-30T22:53:59.806+0000 7f5a29133880 4 rocksdb: Options.compression_opts.max_dict_bytes: 0 2023-11-30T22:53:59.841 INFO:teuthology.orchestra.run.smithi038.stderr:/usr/bin/ceph-mon: debug 2023-11-30T22:53:59.806+0000 7f5a29133880 4 rocksdb: Options.compression_opts.zstd_max_train_bytes: 0 2023-11-30T22:53:59.842 INFO:teuthology.orchestra.run.smithi038.stderr:/usr/bin/ceph-mon: debug 2023-11-30T22:53:59.806+0000 7f5a29133880 4 rocksdb: Options.compression_opts.enabled: false 2023-11-30T22:53:59.842 INFO:teuthology.orchestra.run.smithi038.stderr:/usr/bin/ceph-mon: debug 2023-11-30T22:53:59.806+0000 7f5a29133880 4 rocksdb: Options.level0_file_num_compaction_trigger: 4 2023-11-30T22:53:59.842 INFO:teuthology.orchestra.run.smithi038.stderr:/usr/bin/ceph-mon: debug 2023-11-30T22:53:59.806+0000 7f5a29133880 4 rocksdb: Options.level0_slowdown_writes_trigger: 20 2023-11-30T22:53:59.842 INFO:teuthology.orchestra.run.smithi038.stderr:/usr/bin/ceph-mon: debug 2023-11-30T22:53:59.806+0000 7f5a29133880 4 rocksdb: Options.level0_stop_writes_trigger: 36 2023-11-30T22:53:59.842 INFO:teuthology.orchestra.run.smithi038.stderr:/usr/bin/ceph-mon: debug 2023-11-30T22:53:59.806+0000 7f5a29133880 4 rocksdb: Options.target_file_size_base: 67108864 2023-11-30T22:53:59.842 INFO:teuthology.orchestra.run.smithi038.stderr:/usr/bin/ceph-mon: debug 2023-11-30T22:53:59.806+0000 7f5a29133880 4 rocksdb: Options.target_file_size_multiplier: 1 2023-11-30T22:53:59.842 INFO:teuthology.orchestra.run.smithi038.stderr:/usr/bin/ceph-mon: debug 2023-11-30T22:53:59.806+0000 7f5a29133880 4 rocksdb: Options.max_bytes_for_level_base: 268435456 2023-11-30T22:53:59.842 INFO:teuthology.orchestra.run.smithi038.stderr:/usr/bin/ceph-mon: debug 2023-11-30T22:53:59.806+0000 7f5a29133880 4 rocksdb: Options.level_compaction_dynamic_level_bytes: 1 2023-11-30T22:53:59.842 INFO:teuthology.orchestra.run.smithi038.stderr:/usr/bin/ceph-mon: debug 2023-11-30T22:53:59.806+0000 7f5a29133880 4 rocksdb: Options.max_bytes_for_level_multiplier: 10.000000 2023-11-30T22:53:59.842 INFO:teuthology.orchestra.run.smithi038.stderr:/usr/bin/ceph-mon: debug 2023-11-30T22:53:59.806+0000 7f5a29133880 4 rocksdb: Options.max_bytes_for_level_multiplier_addtl[0]: 1 2023-11-30T22:53:59.842 INFO:teuthology.orchestra.run.smithi038.stderr:/usr/bin/ceph-mon: debug 2023-11-30T22:53:59.806+0000 7f5a29133880 4 rocksdb: Options.max_bytes_for_level_multiplier_addtl[1]: 1 2023-11-30T22:53:59.842 INFO:teuthology.orchestra.run.smithi038.stderr:/usr/bin/ceph-mon: debug 2023-11-30T22:53:59.806+0000 7f5a29133880 4 rocksdb: Options.max_bytes_for_level_multiplier_addtl[2]: 1 2023-11-30T22:53:59.842 INFO:teuthology.orchestra.run.smithi038.stderr:/usr/bin/ceph-mon: debug 2023-11-30T22:53:59.806+0000 7f5a29133880 4 rocksdb: Options.max_bytes_for_level_multiplier_addtl[3]: 1 2023-11-30T22:53:59.843 INFO:teuthology.orchestra.run.smithi038.stderr:/usr/bin/ceph-mon: debug 2023-11-30T22:53:59.806+0000 7f5a29133880 4 rocksdb: Options.max_bytes_for_level_multiplier_addtl[4]: 1 2023-11-30T22:53:59.843 INFO:teuthology.orchestra.run.smithi038.stderr:/usr/bin/ceph-mon: debug 2023-11-30T22:53:59.806+0000 7f5a29133880 4 rocksdb: Options.max_bytes_for_level_multiplier_addtl[5]: 1 2023-11-30T22:53:59.843 INFO:teuthology.orchestra.run.smithi038.stderr:/usr/bin/ceph-mon: debug 2023-11-30T22:53:59.806+0000 7f5a29133880 4 rocksdb: Options.max_bytes_for_level_multiplier_addtl[6]: 1 2023-11-30T22:53:59.843 INFO:teuthology.orchestra.run.smithi038.stderr:/usr/bin/ceph-mon: debug 2023-11-30T22:53:59.806+0000 7f5a29133880 4 rocksdb: Options.max_sequential_skip_in_iterations: 8 2023-11-30T22:53:59.843 INFO:teuthology.orchestra.run.smithi038.stderr:/usr/bin/ceph-mon: debug 2023-11-30T22:53:59.806+0000 7f5a29133880 4 rocksdb: Options.max_compaction_bytes: 1677721600 2023-11-30T22:53:59.843 INFO:teuthology.orchestra.run.smithi038.stderr:/usr/bin/ceph-mon: debug 2023-11-30T22:53:59.806+0000 7f5a29133880 4 rocksdb: Options.arena_block_size: 4194304 2023-11-30T22:53:59.843 INFO:teuthology.orchestra.run.smithi038.stderr:/usr/bin/ceph-mon: debug 2023-11-30T22:53:59.806+0000 7f5a29133880 4 rocksdb: Options.soft_pending_compaction_bytes_limit: 68719476736 2023-11-30T22:53:59.843 INFO:teuthology.orchestra.run.smithi038.stderr:/usr/bin/ceph-mon: debug 2023-11-30T22:53:59.806+0000 7f5a29133880 4 rocksdb: Options.hard_pending_compaction_bytes_limit: 274877906944 2023-11-30T22:53:59.843 INFO:teuthology.orchestra.run.smithi038.stderr:/usr/bin/ceph-mon: debug 2023-11-30T22:53:59.806+0000 7f5a29133880 4 rocksdb: Options.rate_limit_delay_max_milliseconds: 100 2023-11-30T22:53:59.843 INFO:teuthology.orchestra.run.smithi038.stderr:/usr/bin/ceph-mon: debug 2023-11-30T22:53:59.806+0000 7f5a29133880 4 rocksdb: Options.disable_auto_compactions: 0 2023-11-30T22:53:59.843 INFO:teuthology.orchestra.run.smithi038.stderr:/usr/bin/ceph-mon: debug 2023-11-30T22:53:59.806+0000 7f5a29133880 4 rocksdb: Options.compaction_style: kCompactionStyleLevel 2023-11-30T22:53:59.843 INFO:teuthology.orchestra.run.smithi038.stderr:/usr/bin/ceph-mon: debug 2023-11-30T22:53:59.806+0000 7f5a29133880 4 rocksdb: Options.compaction_pri: kMinOverlappingRatio 2023-11-30T22:53:59.843 INFO:teuthology.orchestra.run.smithi038.stderr:/usr/bin/ceph-mon: debug 2023-11-30T22:53:59.806+0000 7f5a29133880 4 rocksdb: Options.compaction_options_universal.size_ratio: 1 2023-11-30T22:53:59.844 INFO:teuthology.orchestra.run.smithi038.stderr:/usr/bin/ceph-mon: debug 2023-11-30T22:53:59.806+0000 7f5a29133880 4 rocksdb: Options.compaction_options_universal.min_merge_width: 2 2023-11-30T22:53:59.844 INFO:teuthology.orchestra.run.smithi038.stderr:/usr/bin/ceph-mon: debug 2023-11-30T22:53:59.806+0000 7f5a29133880 4 rocksdb: Options.compaction_options_universal.max_merge_width: 4294967295 2023-11-30T22:53:59.844 INFO:teuthology.orchestra.run.smithi038.stderr:/usr/bin/ceph-mon: debug 2023-11-30T22:53:59.806+0000 7f5a29133880 4 rocksdb: Options.compaction_options_universal.max_size_amplification_percent: 200 2023-11-30T22:53:59.844 INFO:teuthology.orchestra.run.smithi038.stderr:/usr/bin/ceph-mon: debug 2023-11-30T22:53:59.806+0000 7f5a29133880 4 rocksdb: Options.compaction_options_universal.compression_size_percent: -1 2023-11-30T22:53:59.844 INFO:teuthology.orchestra.run.smithi038.stderr:/usr/bin/ceph-mon: debug 2023-11-30T22:53:59.806+0000 7f5a29133880 4 rocksdb: Options.compaction_options_universal.stop_style: kCompactionStopStyleTotalSize 2023-11-30T22:53:59.844 INFO:teuthology.orchestra.run.smithi038.stderr:/usr/bin/ceph-mon: debug 2023-11-30T22:53:59.806+0000 7f5a29133880 4 rocksdb: Options.compaction_options_fifo.max_table_files_size: 1073741824 2023-11-30T22:53:59.844 INFO:teuthology.orchestra.run.smithi038.stderr:/usr/bin/ceph-mon: debug 2023-11-30T22:53:59.806+0000 7f5a29133880 4 rocksdb: Options.compaction_options_fifo.allow_compaction: 0 2023-11-30T22:53:59.844 INFO:teuthology.orchestra.run.smithi038.stderr:/usr/bin/ceph-mon: debug 2023-11-30T22:53:59.806+0000 7f5a29133880 4 rocksdb: Options.table_properties_collectors: 2023-11-30T22:53:59.844 INFO:teuthology.orchestra.run.smithi038.stderr:/usr/bin/ceph-mon: debug 2023-11-30T22:53:59.806+0000 7f5a29133880 4 rocksdb: Options.inplace_update_support: 0 2023-11-30T22:53:59.844 INFO:teuthology.orchestra.run.smithi038.stderr:/usr/bin/ceph-mon: debug 2023-11-30T22:53:59.806+0000 7f5a29133880 4 rocksdb: Options.inplace_update_num_locks: 10000 2023-11-30T22:53:59.844 INFO:teuthology.orchestra.run.smithi038.stderr:/usr/bin/ceph-mon: debug 2023-11-30T22:53:59.806+0000 7f5a29133880 4 rocksdb: Options.memtable_prefix_bloom_size_ratio: 0.000000 2023-11-30T22:53:59.844 INFO:teuthology.orchestra.run.smithi038.stderr:/usr/bin/ceph-mon: debug 2023-11-30T22:53:59.806+0000 7f5a29133880 4 rocksdb: Options.memtable_whole_key_filtering: 0 2023-11-30T22:53:59.845 INFO:teuthology.orchestra.run.smithi038.stderr:/usr/bin/ceph-mon: debug 2023-11-30T22:53:59.806+0000 7f5a29133880 4 rocksdb: Options.memtable_huge_page_size: 0 2023-11-30T22:53:59.845 INFO:teuthology.orchestra.run.smithi038.stderr:/usr/bin/ceph-mon: debug 2023-11-30T22:53:59.806+0000 7f5a29133880 4 rocksdb: Options.bloom_locality: 0 2023-11-30T22:53:59.845 INFO:teuthology.orchestra.run.smithi038.stderr:/usr/bin/ceph-mon: debug 2023-11-30T22:53:59.806+0000 7f5a29133880 4 rocksdb: Options.max_successive_merges: 0 2023-11-30T22:53:59.845 INFO:teuthology.orchestra.run.smithi038.stderr:/usr/bin/ceph-mon: debug 2023-11-30T22:53:59.806+0000 7f5a29133880 4 rocksdb: Options.optimize_filters_for_hits: 0 2023-11-30T22:53:59.845 INFO:teuthology.orchestra.run.smithi038.stderr:/usr/bin/ceph-mon: debug 2023-11-30T22:53:59.806+0000 7f5a29133880 4 rocksdb: Options.paranoid_file_checks: 0 2023-11-30T22:53:59.845 INFO:teuthology.orchestra.run.smithi038.stderr:/usr/bin/ceph-mon: debug 2023-11-30T22:53:59.806+0000 7f5a29133880 4 rocksdb: Options.force_consistency_checks: 0 2023-11-30T22:53:59.845 INFO:teuthology.orchestra.run.smithi038.stderr:/usr/bin/ceph-mon: debug 2023-11-30T22:53:59.806+0000 7f5a29133880 4 rocksdb: Options.report_bg_io_stats: 0 2023-11-30T22:53:59.845 INFO:teuthology.orchestra.run.smithi038.stderr:/usr/bin/ceph-mon: debug 2023-11-30T22:53:59.806+0000 7f5a29133880 4 rocksdb: Options.ttl: 2592000 2023-11-30T22:53:59.845 INFO:teuthology.orchestra.run.smithi038.stderr:/usr/bin/ceph-mon: debug 2023-11-30T22:53:59.806+0000 7f5a29133880 4 rocksdb: Options.periodic_compaction_seconds: 0 2023-11-30T22:53:59.845 INFO:teuthology.orchestra.run.smithi038.stderr:/usr/bin/ceph-mon: debug 2023-11-30T22:53:59.806+0000 7f5a29133880 4 rocksdb: [version_set.cc:4568] Recovered from manifest file:/var/lib/ceph/mon/ceph-smithi038/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-11-30T22:53:59.845 INFO:teuthology.orchestra.run.smithi038.stderr:/usr/bin/ceph-mon: 2023-11-30T22:53:59.845 INFO:teuthology.orchestra.run.smithi038.stderr:/usr/bin/ceph-mon: debug 2023-11-30T22:53:59.806+0000 7f5a29133880 4 rocksdb: [version_set.cc:4577] Column family [default] (ID 0), log number is 0 2023-11-30T22:53:59.845 INFO:teuthology.orchestra.run.smithi038.stderr:/usr/bin/ceph-mon: 2023-11-30T22:53:59.846 INFO:teuthology.orchestra.run.smithi038.stderr:/usr/bin/ceph-mon: debug 2023-11-30T22:53:59.807+0000 7f5a29133880 4 rocksdb: DB pointer 0x563f2c569800 2023-11-30T22:53:59.846 INFO:teuthology.orchestra.run.smithi038.stderr:/usr/bin/ceph-mon: debug 2023-11-30T22:53:59.807+0000 7f5a11fba700 4 rocksdb: [db_impl/db_impl.cc:850] ------- DUMPING STATS ------- 2023-11-30T22:53:59.846 INFO:teuthology.orchestra.run.smithi038.stderr:/usr/bin/ceph-mon: debug 2023-11-30T22:53:59.807+0000 7f5a11fba700 4 rocksdb: [db_impl/db_impl.cc:851] 2023-11-30T22:53:59.846 INFO:teuthology.orchestra.run.smithi038.stderr:/usr/bin/ceph-mon: ** DB Stats ** 2023-11-30T22:53:59.846 INFO:teuthology.orchestra.run.smithi038.stderr:/usr/bin/ceph-mon: Uptime(secs): 0.0 total, 0.0 interval 2023-11-30T22:53:59.846 INFO:teuthology.orchestra.run.smithi038.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-11-30T22:53:59.846 INFO:teuthology.orchestra.run.smithi038.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-11-30T22:53:59.846 INFO:teuthology.orchestra.run.smithi038.stderr:/usr/bin/ceph-mon: Cumulative stall: 00:00:0.000 H:M:S, 0.0 percent 2023-11-30T22:53:59.846 INFO:teuthology.orchestra.run.smithi038.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-11-30T22:53:59.846 INFO:teuthology.orchestra.run.smithi038.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-11-30T22:53:59.846 INFO:teuthology.orchestra.run.smithi038.stderr:/usr/bin/ceph-mon: Interval stall: 00:00:0.000 H:M:S, 0.0 percent 2023-11-30T22:53:59.846 INFO:teuthology.orchestra.run.smithi038.stderr:/usr/bin/ceph-mon: 2023-11-30T22:53:59.847 INFO:teuthology.orchestra.run.smithi038.stderr:/usr/bin/ceph-mon: ** Compaction Stats [default] ** 2023-11-30T22:53:59.847 INFO:teuthology.orchestra.run.smithi038.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-11-30T22:53:59.847 INFO:teuthology.orchestra.run.smithi038.stderr:/usr/bin/ceph-mon: ---------------------------------------------------------------------------------------------------------------------------------------------------------------------------- 2023-11-30T22:53:59.847 INFO:teuthology.orchestra.run.smithi038.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-11-30T22:53:59.847 INFO:teuthology.orchestra.run.smithi038.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-11-30T22:53:59.847 INFO:teuthology.orchestra.run.smithi038.stderr:/usr/bin/ceph-mon: 2023-11-30T22:53:59.847 INFO:teuthology.orchestra.run.smithi038.stderr:/usr/bin/ceph-mon: ** Compaction Stats [default] ** 2023-11-30T22:53:59.847 INFO:teuthology.orchestra.run.smithi038.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-11-30T22:53:59.847 INFO:teuthology.orchestra.run.smithi038.stderr:/usr/bin/ceph-mon: ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- 2023-11-30T22:53:59.847 INFO:teuthology.orchestra.run.smithi038.stderr:/usr/bin/ceph-mon: Uptime(secs): 0.0 total, 0.0 interval 2023-11-30T22:53:59.847 INFO:teuthology.orchestra.run.smithi038.stderr:/usr/bin/ceph-mon: Flush(GB): cumulative 0.000, interval 0.000 2023-11-30T22:53:59.847 INFO:teuthology.orchestra.run.smithi038.stderr:/usr/bin/ceph-mon: AddFile(GB): cumulative 0.000, interval 0.000 2023-11-30T22:53:59.848 INFO:teuthology.orchestra.run.smithi038.stderr:/usr/bin/ceph-mon: AddFile(Total Files): cumulative 0, interval 0 2023-11-30T22:53:59.848 INFO:teuthology.orchestra.run.smithi038.stderr:/usr/bin/ceph-mon: AddFile(L0 Files): cumulative 0, interval 0 2023-11-30T22:53:59.848 INFO:teuthology.orchestra.run.smithi038.stderr:/usr/bin/ceph-mon: AddFile(Keys): cumulative 0, interval 0 2023-11-30T22:53:59.848 INFO:teuthology.orchestra.run.smithi038.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-11-30T22:53:59.848 INFO:teuthology.orchestra.run.smithi038.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-11-30T22:53:59.848 INFO:teuthology.orchestra.run.smithi038.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-11-30T22:53:59.848 INFO:teuthology.orchestra.run.smithi038.stderr:/usr/bin/ceph-mon: 2023-11-30T22:53:59.848 INFO:teuthology.orchestra.run.smithi038.stderr:/usr/bin/ceph-mon: ** File Read Latency Histogram By Level [default] ** 2023-11-30T22:53:59.848 INFO:teuthology.orchestra.run.smithi038.stderr:/usr/bin/ceph-mon: 2023-11-30T22:53:59.848 INFO:teuthology.orchestra.run.smithi038.stderr:/usr/bin/ceph-mon: ** Compaction Stats [default] ** 2023-11-30T22:53:59.848 INFO:teuthology.orchestra.run.smithi038.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-11-30T22:53:59.848 INFO:teuthology.orchestra.run.smithi038.stderr:/usr/bin/ceph-mon: ---------------------------------------------------------------------------------------------------------------------------------------------------------------------------- 2023-11-30T22:53:59.848 INFO:teuthology.orchestra.run.smithi038.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-11-30T22:53:59.849 INFO:teuthology.orchestra.run.smithi038.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-11-30T22:53:59.849 INFO:teuthology.orchestra.run.smithi038.stderr:/usr/bin/ceph-mon: 2023-11-30T22:53:59.849 INFO:teuthology.orchestra.run.smithi038.stderr:/usr/bin/ceph-mon: ** Compaction Stats [default] ** 2023-11-30T22:53:59.849 INFO:teuthology.orchestra.run.smithi038.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-11-30T22:53:59.849 INFO:teuthology.orchestra.run.smithi038.stderr:/usr/bin/ceph-mon: ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- 2023-11-30T22:53:59.849 INFO:teuthology.orchestra.run.smithi038.stderr:/usr/bin/ceph-mon: Uptime(secs): 0.0 total, 0.0 interval 2023-11-30T22:53:59.849 INFO:teuthology.orchestra.run.smithi038.stderr:/usr/bin/ceph-mon: Flush(GB): cumulative 0.000, interval 0.000 2023-11-30T22:53:59.849 INFO:teuthology.orchestra.run.smithi038.stderr:/usr/bin/ceph-mon: AddFile(GB): cumulative 0.000, interval 0.000 2023-11-30T22:53:59.849 INFO:teuthology.orchestra.run.smithi038.stderr:/usr/bin/ceph-mon: AddFile(Total Files): cumulative 0, interval 0 2023-11-30T22:53:59.849 INFO:teuthology.orchestra.run.smithi038.stderr:/usr/bin/ceph-mon: AddFile(L0 Files): cumulative 0, interval 0 2023-11-30T22:53:59.849 INFO:teuthology.orchestra.run.smithi038.stderr:/usr/bin/ceph-mon: AddFile(Keys): cumulative 0, interval 0 2023-11-30T22:53:59.849 INFO:teuthology.orchestra.run.smithi038.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-11-30T22:53:59.850 INFO:teuthology.orchestra.run.smithi038.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-11-30T22:53:59.850 INFO:teuthology.orchestra.run.smithi038.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-11-30T22:53:59.850 INFO:teuthology.orchestra.run.smithi038.stderr:/usr/bin/ceph-mon: 2023-11-30T22:53:59.850 INFO:teuthology.orchestra.run.smithi038.stderr:/usr/bin/ceph-mon: ** File Read Latency Histogram By Level [default] ** 2023-11-30T22:53:59.850 INFO:teuthology.orchestra.run.smithi038.stderr:/usr/bin/ceph-mon: 2023-11-30T22:53:59.850 INFO:teuthology.orchestra.run.smithi038.stderr:/usr/bin/ceph-mon: debug 2023-11-30T22:53:59.809+0000 7f5a29133880 4 rocksdb: [db_impl/db_impl.cc:397] Shutdown: canceling all background work 2023-11-30T22:53:59.850 INFO:teuthology.orchestra.run.smithi038.stderr:/usr/bin/ceph-mon: debug 2023-11-30T22:53:59.809+0000 7f5a29133880 4 rocksdb: [db_impl/db_impl.cc:573] Shutdown complete 2023-11-30T22:53:59.850 INFO:teuthology.orchestra.run.smithi038.stderr:/usr/bin/ceph-mon: debug 2023-11-30T22:53:59.809+0000 7f5a29133880 0 /usr/bin/ceph-mon: created monfs at /var/lib/ceph/mon/ceph-smithi038 for mon.smithi038 2023-11-30T22:54:00.252 INFO:teuthology.orchestra.run.smithi038.stderr:create mon.smithi038 on 2023-11-30T22:54:00.373 INFO:teuthology.orchestra.run.smithi038.stderr:systemctl: Created symlink /etc/systemd/system/multi-user.target.wants/ceph.target → /etc/systemd/system/ceph.target. 2023-11-30T22:54:00.481 INFO:teuthology.orchestra.run.smithi038.stderr:systemctl: Created symlink /etc/systemd/system/multi-user.target.wants/ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715.target → /etc/systemd/system/ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715.target. 2023-11-30T22:54:00.481 INFO:teuthology.orchestra.run.smithi038.stderr:systemctl: Created symlink /etc/systemd/system/ceph.target.wants/ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715.target → /etc/systemd/system/ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715.target. 2023-11-30T22:54:00.703 INFO:teuthology.orchestra.run.smithi038.stderr:systemctl: Failed to reset failed state of unit ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715@mon.smithi038.service: Unit ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715@mon.smithi038.service not loaded. 2023-11-30T22:54:00.710 INFO:teuthology.orchestra.run.smithi038.stderr:systemctl: Created symlink /etc/systemd/system/ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715.target.wants/ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715@mon.smithi038.service → /etc/systemd/system/ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715@.service. 2023-11-30T22:54:01.024 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:54:00 smithi038 systemd[1]: Starting Ceph mon.smithi038 for 3faf8b00-8fd3-11ee-95a2-87774f69a715... 2023-11-30T22:54:01.444 INFO:teuthology.orchestra.run.smithi038.stderr:systemctl: disabled 2023-11-30T22:54:01.451 INFO:teuthology.orchestra.run.smithi038.stderr:systemctl: inactive 2023-11-30T22:54:01.452 INFO:teuthology.orchestra.run.smithi038.stderr:firewalld.service is not enabled 2023-11-30T22:54:01.452 INFO:teuthology.orchestra.run.smithi038.stderr:Not possible to enable service . firewalld.service is not available 2023-11-30T22:54:01.452 INFO:teuthology.orchestra.run.smithi038.stderr:Waiting for mon to start... 2023-11-30T22:54:01.453 INFO:teuthology.orchestra.run.smithi038.stderr:Waiting for mon... 2023-11-30T22:54:01.646 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:54:01 smithi038 bash[80958]: 31fbfe4e551f1e2cdbc851c6cbc9882803cf450d0bd206e0dc75bf4b61d4ab51 2023-11-30T22:54:01.647 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:54:01 smithi038 conmon[80998]: cluster 2023-11-30T22:54:01.397676+0000 mon.smithi038 (mon.0) 2023-11-30T22:54:01.647 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:54:01 smithi038 conmon[80998]: 0 : [INF] mkfs 3faf8b00-8fd3-11ee-95a2-87774f69a715 2023-11-30T22:54:01.647 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:54:01 smithi038 conmon[80998]: cluster 2023-11- 2023-11-30T22:54:01.647 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:54:01 smithi038 conmon[80998]: 30T22:54:01.375027+0000 mon.smithi038 (mon.0) 1 : cluster [INF] mon.smithi038 is new leader, mons smithi038 in quorum (ranks 0) 2023-11-30T22:54:01.647 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:54:01 smithi038 systemd[1]: Started Ceph mon.smithi038 for 3faf8b00-8fd3-11ee-95a2-87774f69a715. 2023-11-30T22:54:01.965 INFO:teuthology.orchestra.run.smithi038.stderr:/usr/bin/ceph: cluster: 2023-11-30T22:54:01.965 INFO:teuthology.orchestra.run.smithi038.stderr:/usr/bin/ceph: id: 3faf8b00-8fd3-11ee-95a2-87774f69a715 2023-11-30T22:54:01.965 INFO:teuthology.orchestra.run.smithi038.stderr:/usr/bin/ceph: health: HEALTH_OK 2023-11-30T22:54:01.965 INFO:teuthology.orchestra.run.smithi038.stderr:/usr/bin/ceph: 2023-11-30T22:54:01.965 INFO:teuthology.orchestra.run.smithi038.stderr:/usr/bin/ceph: services: 2023-11-30T22:54:01.965 INFO:teuthology.orchestra.run.smithi038.stderr:/usr/bin/ceph: mon: 1 daemons, quorum smithi038 (age 0.566251s) 2023-11-30T22:54:01.965 INFO:teuthology.orchestra.run.smithi038.stderr:/usr/bin/ceph: mgr: no daemons active 2023-11-30T22:54:01.965 INFO:teuthology.orchestra.run.smithi038.stderr:/usr/bin/ceph: osd: 0 osds: 0 up, 0 in 2023-11-30T22:54:01.965 INFO:teuthology.orchestra.run.smithi038.stderr:/usr/bin/ceph: 2023-11-30T22:54:01.965 INFO:teuthology.orchestra.run.smithi038.stderr:/usr/bin/ceph: data: 2023-11-30T22:54:01.966 INFO:teuthology.orchestra.run.smithi038.stderr:/usr/bin/ceph: pools: 0 pools, 0 pgs 2023-11-30T22:54:01.966 INFO:teuthology.orchestra.run.smithi038.stderr:/usr/bin/ceph: objects: 0 objects, 0 B 2023-11-30T22:54:01.966 INFO:teuthology.orchestra.run.smithi038.stderr:/usr/bin/ceph: usage: 0 B used, 0 B / 0 B avail 2023-11-30T22:54:01.966 INFO:teuthology.orchestra.run.smithi038.stderr:/usr/bin/ceph: pgs: 2023-11-30T22:54:01.966 INFO:teuthology.orchestra.run.smithi038.stderr:/usr/bin/ceph: 2023-11-30T22:54:02.293 INFO:teuthology.orchestra.run.smithi038.stderr:mon is available 2023-11-30T22:54:02.293 INFO:teuthology.orchestra.run.smithi038.stderr:Assimilating anything we can from ceph.conf... 2023-11-30T22:54:02.565 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:54:02 smithi038 conmon[80998]: cluster 2023-11-30T22:54:01.396673+0000 mon.smithi038 (mon.0) 2 : cluster [INF] mon.smithi038 is new leader, mons smithi038 in quorum (ranks 0) 2023-11-30T22:54:02.565 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:54:02 smithi038 conmon[80998]: cluster 2023-11-30T22:54:01.396927+0000 mon.smithi038 (mon.0) 3 : cluster [DBG] monmap e1: 1 mons at {smithi038=[v2:172.21.15.38:3300/0,v1:172.21.15.38:6789/0]} removed_ranks: {} 2023-11-30T22:54:02.565 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:54:02 smithi038 conmon[80998]: cluster 2023-11-30T22:54:01.401389+0000 mon.smithi038 (mon.0) 4 : cluster [DBG] fsmap 2023-11-30T22:54:02.565 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:54:02 smithi038 conmon[80998]: cluster 2023-11-30T22:54:01.407377+0000 mon.smithi038 (mon.0) 5 : cluster [DBG] osdmap e1: 0 total, 0 up, 0 in 2023-11-30T22:54:02.565 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:54:02 smithi038 conmon[80998]: cluster 2023-11-30T22:54:01.408052+0000 mon.smithi038 (mon.0) 6 : cluster [DBG] mgrmap e1: no daemons active 2023-11-30T22:54:02.565 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:54:02 smithi038 conmon[80998]: audit 2023-11-30T22:54:01.962868+0000 mon.smithi038 (mon.0) 7 : audit [DBG] from='client.? 172.21.15.38:0/4109883102' entity='client.admin' cmd=[{"prefix": "status"}]: dispatch 2023-11-30T22:54:02.823 INFO:teuthology.orchestra.run.smithi038.stderr:/usr/bin/ceph: 2023-11-30T22:54:02.823 INFO:teuthology.orchestra.run.smithi038.stderr:/usr/bin/ceph: [global] 2023-11-30T22:54:02.824 INFO:teuthology.orchestra.run.smithi038.stderr:/usr/bin/ceph: fsid = 3faf8b00-8fd3-11ee-95a2-87774f69a715 2023-11-30T22:54:02.824 INFO:teuthology.orchestra.run.smithi038.stderr:/usr/bin/ceph: mon_host = [v2:172.21.15.38:3300,v1:172.21.15.38:6789] 2023-11-30T22:54:02.824 INFO:teuthology.orchestra.run.smithi038.stderr:/usr/bin/ceph: mon_osd_allow_pg_remap = true 2023-11-30T22:54:02.824 INFO:teuthology.orchestra.run.smithi038.stderr:/usr/bin/ceph: mon_osd_allow_primary_affinity = true 2023-11-30T22:54:02.824 INFO:teuthology.orchestra.run.smithi038.stderr:/usr/bin/ceph: mon_warn_on_no_sortbitwise = false 2023-11-30T22:54:02.824 INFO:teuthology.orchestra.run.smithi038.stderr:/usr/bin/ceph: osd_crush_chooseleaf_type = 0 2023-11-30T22:54:02.824 INFO:teuthology.orchestra.run.smithi038.stderr:/usr/bin/ceph: 2023-11-30T22:54:02.824 INFO:teuthology.orchestra.run.smithi038.stderr:/usr/bin/ceph: [mgr] 2023-11-30T22:54:02.824 INFO:teuthology.orchestra.run.smithi038.stderr:/usr/bin/ceph: mgr/telemetry/nag = false 2023-11-30T22:54:02.824 INFO:teuthology.orchestra.run.smithi038.stderr:/usr/bin/ceph: 2023-11-30T22:54:02.824 INFO:teuthology.orchestra.run.smithi038.stderr:/usr/bin/ceph: [osd] 2023-11-30T22:54:02.825 INFO:teuthology.orchestra.run.smithi038.stderr:/usr/bin/ceph: osd_map_max_advance = 10 2023-11-30T22:54:02.825 INFO:teuthology.orchestra.run.smithi038.stderr:/usr/bin/ceph: osd_sloppy_crc = true 2023-11-30T22:54:03.229 INFO:teuthology.orchestra.run.smithi038.stderr:Generating new minimal ceph.conf... 2023-11-30T22:54:03.524 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:54:03 smithi038 conmon[80998]: audit 2023-11-30T22:54:02. 2023-11-30T22:54:03.524 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:54:03 smithi038 conmon[80998]: 818826+0000 mon.smithi038 (mon.0) 8 : audit [INF] from='client.? 172.21.15.38:0/2978150026' entity='client.admin' cmd=[{"prefix": "config assimilate-conf"}]: dispatch 2023-11-30T22:54:03.524 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:54:03 smithi038 conmon[80998]: audit 2023-11-30T 2023-11-30T22:54:03.524 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:54:03 smithi038 conmon[80998]: 22:54:02.822238+0000 mon.smithi038 (mon.0) 9 : audit [INF] from='client.? 172.21.15.38:0/2978150026' entity='client.admin' cmd='[{"prefix": "config assimilate-conf"}]': finished 2023-11-30T22:54:04.064 INFO:teuthology.orchestra.run.smithi038.stderr:Restarting the monitor... 2023-11-30T22:54:04.413 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:54:04 smithi038 systemd[1]: Stopping Ceph mon.smithi038 for 3faf8b00-8fd3-11ee-95a2-87774f69a715... 2023-11-30T22:54:04.413 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:54:04 smithi038 bash[81479]: Error: no container with name or ID "ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-mon.smithi038" found: no such container 2023-11-30T22:54:04.705 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:54:04 smithi038 conmon[80998]: audit 2023-11-30T22:54:03.711855+0000 mon.smithi038 (mon 2023-11-30T22:54:04.705 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:54:04 smithi038 conmon[80998]: .0) 10 : audit [DBG] from='client.? 172.21.15.38:0/1182740937' entity='client.admin' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2023-11-30T22:54:04.705 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:54:04 smithi038 conmon[80998]: debug 2023-11-30T22:54:04.421+0000 7ffa1e9db700 -1 received signal: Terminated from /dev/init -- /usr/bin/ceph-mon -n mon.smithi038 -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-11-30T22:54:04.705 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:54:04 smithi038 conmon[80998]: debug 2023-11-30T22:54:04.421+0000 7ffa1e9db700 -1 mon.smithi038@0(leader) e1 *** Got Signal Terminated *** 2023-11-30T22:54:05.024 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:54:04 smithi038 bash[81596]: ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-mon-smithi038 2023-11-30T22:54:05.524 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:54:05 smithi038 systemd[1]: ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715@mon.smithi038.service: Succeeded. 2023-11-30T22:54:05.524 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:54:05 smithi038 systemd[1]: Stopped Ceph mon.smithi038 for 3faf8b00-8fd3-11ee-95a2-87774f69a715. 2023-11-30T22:54:05.524 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:54:05 smithi038 systemd[1]: Starting Ceph mon.smithi038 for 3faf8b00-8fd3-11ee-95a2-87774f69a715... 2023-11-30T22:54:05.789 INFO:teuthology.orchestra.run.smithi038.stderr:Setting public_network to 172.21.0.0/20 in mon config section 2023-11-30T22:54:05.970 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:54:05 smithi038 conmon[81956]: debug 2023-11-30T22:54:05.690+0000 7fd5042cf880 0 set uid:gid to 167:167 (ceph:ceph) 2023-11-30T22:54:05.971 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:54:05 smithi038 conmon[81956]: debug 2023-11-30T22:54:05.690+0000 7fd5042cf880 0 ceph version 16.2.14-328-g0dc074ce (0dc074ce0b0b3b4f393f56dd32ef36884ebf45a9) pacific (stable), process ceph-mon, pid 7 2023-11-30T22:54:05.971 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:54:05 smithi038 conmon[81956]: debug 2023-11-30T22:54:05.690+0000 7fd5042cf880 0 pidfile_write: ignore empty --pid-file 2023-11-30T22:54:05.971 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:54:05 smithi038 conmon[81956]: debug 2023-11-30T22:54:05.694+0000 7fd5042cf880 0 load: jerasure load: lrc load: isa 2023-11-30T22:54:05.971 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:54:05 smithi038 conmon[81956]: debug 2023-11-30T22:54:05.695+0000 7fd5042cf880 4 rocksdb: RocksDB version: 6.8.1 2023-11-30T22:54:05.971 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:54:05 smithi038 conmon[81956]: 2023-11-30T22:54:05.971 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:54:05 smithi038 conmon[81956]: debug 2023-11-30T22:54:05.695+0000 7fd5042cf880 4 rocksdb: Git sha rocksdb_build_git_sha:@0@ 2023-11-30T22:54:05.971 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:54:05 smithi038 conmon[81956]: debug 2023-11-30T22:54:05.695+0000 7fd5042cf880 4 rocksdb: Compile date Nov 29 2023 2023-11-30T22:54:05.971 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:54:05 smithi038 conmon[81956]: debug 2023-11-30T22:54:05.695+0000 7fd5042cf880 4 rocksdb: DB SUMMARY 2023-11-30T22:54:05.971 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:54:05 smithi038 conmon[81956]: 2023-11-30T22:54:05.971 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:54:05 smithi038 conmon[81956]: debug 2023-11-30T22:54:05.695+0000 7fd5042cf880 4 rocksdb: CURRENT file: CURRENT 2023-11-30T22:54:05.971 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:54:05 smithi038 conmon[81956]: 2023-11-30T22:54:05.972 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:54:05 smithi038 conmon[81956]: debug 2023-11-30T22:54:05.695+0000 7fd5042cf880 4 rocksdb: IDENTITY file: IDENTITY 2023-11-30T22:54:05.972 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:54:05 smithi038 conmon[81956]: 2023-11-30T22:54:05.972 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:54:05 smithi038 conmon[81956]: debug 2023-11-30T22:54:05.695+0000 7fd5042cf880 4 rocksdb: MANIFEST file: MANIFEST-000005 size: 131 Bytes 2023-11-30T22:54:05.972 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:54:05 smithi038 conmon[81956]: 2023-11-30T22:54:05.972 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:54:05 smithi038 conmon[81956]: debug 2023-11-30T22:54:05.695+0000 7fd5042cf880 4 rocksdb: SST files in /var/lib/ceph/mon/ceph-smithi038/store.db dir, Total Num: 1, files: 000004.sst 2023-11-30T22:54:05.972 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:54:05 smithi038 conmon[81956]: 2023-11-30T22:54:05.972 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:54:05 smithi038 conmon[81956]: debug 2023-11-30T22:54:05.695+0000 7fd5042cf880 4 rocksdb: Write Ahead Log file in /var/lib/ceph/mon/ceph-smithi038/store.db: 000006.log size: 86503 ; 2023-11-30T22:54:05.972 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:54:05 smithi038 conmon[81956]: 2023-11-30T22:54:05.972 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:54:05 smithi038 conmon[81956]: debug 2023-11-30T22:54:05.695+0000 7fd5042cf880 4 rocksdb: Options.error_if_exists: 0 2023-11-30T22:54:05.972 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:54:05 smithi038 conmon[81956]: debug 2023-11-30T22:54:05.695+0000 7fd5042cf880 4 rocksdb: Options.create_if_missing: 0 2023-11-30T22:54:05.972 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:54:05 smithi038 conmon[81956]: debug 2023-11-30T22:54:05.695+0000 7fd5042cf880 4 rocksdb: Options.paranoid_checks: 1 2023-11-30T22:54:05.972 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:54:05 smithi038 conmon[81956]: debug 2023-11-30T22:54:05.695+0000 7fd5042cf880 4 rocksdb: Options.env: 0x55dca9f47080 2023-11-30T22:54:05.973 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:54:05 smithi038 conmon[81956]: debug 2023-11-30T22:54:05.695+0000 7fd5042cf880 4 rocksdb: Options.fs: Posix File System 2023-11-30T22:54:05.973 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:54:05 smithi038 conmon[81956]: debug 2023-11-30T22:54:05.695+0000 7fd5042cf880 4 rocksdb: Options.info_log: 0x55dcab31fd20 2023-11-30T22:54:05.973 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:54:05 smithi038 conmon[81956]: debug 2023-11-30T22:54:05.695+0000 7fd5042cf880 4 rocksdb: Options.max_file_opening_threads: 16 2023-11-30T22:54:05.973 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:54:05 smithi038 conmon[81956]: debug 2023-11-30T22:54:05.695+0000 7fd5042cf880 4 rocksdb: Options.statistics: (nil) 2023-11-30T22:54:05.973 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:54:05 smithi038 conmon[81956]: debug 2023-11-30T22:54:05.695+0000 7fd5042cf880 4 rocksdb: Options.use_fsync: 0 2023-11-30T22:54:05.973 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:54:05 smithi038 conmon[81956]: debug 2023-11-30T22:54:05.695+0000 7fd5042cf880 4 rocksdb: Options.max_log_file_size: 0 2023-11-30T22:54:05.973 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:54:05 smithi038 conmon[81956]: debug 2023-11-30T22:54:05.695+0000 7fd5042cf880 4 rocksdb: Options.max_manifest_file_size: 1073741824 2023-11-30T22:54:05.973 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:54:05 smithi038 conmon[81956]: debug 2023-11-30T22:54:05.695+0000 7fd5042cf880 4 rocksdb: Options.log_file_time_to_roll: 0 2023-11-30T22:54:05.975 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:54:05 smithi038 conmon[81956]: debug 2023-11-30T22:54:05.695+0000 7fd5042cf880 4 rocksdb: Options.keep_log_file_num: 1000 2023-11-30T22:54:05.975 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:54:05 smithi038 conmon[81956]: debug 2023-11-30T22:54:05.695+0000 7fd5042cf880 4 rocksdb: Options.recycle_log_file_num: 0 2023-11-30T22:54:05.975 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:54:05 smithi038 conmon[81956]: debug 2023-11-30T22:54:05.695+0000 7fd5042cf880 4 rocksdb: Options.allow_fallocate: 1 2023-11-30T22:54:05.975 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:54:05 smithi038 conmon[81956]: debug 2023-11-30T22:54:05.695+0000 7fd5042cf880 4 rocksdb: Options.allow_mmap_reads: 0 2023-11-30T22:54:05.975 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:54:05 smithi038 conmon[81956]: debug 2023-11-30T22:54:05.695+0000 7fd5042cf880 4 rocksdb: Options.allow_mmap_writes: 0 2023-11-30T22:54:05.975 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:54:05 smithi038 conmon[81956]: debug 2023-11-30T22:54:05.695+0000 7fd5042cf880 4 rocksdb: Options.use_direct_reads: 0 2023-11-30T22:54:05.975 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:54:05 smithi038 conmon[81956]: debug 2023-11-30T22:54:05.695+0000 7fd5042cf880 4 rocksdb: Options.use_direct_io_for_flush_and_compaction: 0 2023-11-30T22:54:05.975 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:54:05 smithi038 conmon[81956]: debug 2023-11-30T22:54:05.695+0000 7fd5042cf880 4 rocksdb: Options.create_missing_column_families: 0 2023-11-30T22:54:05.976 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:54:05 smithi038 conmon[81956]: debug 2023-11-30T22:54:05.695+0000 7fd5042cf880 4 rocksdb: Options.db_log_dir: 2023-11-30T22:54:05.976 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:54:05 smithi038 conmon[81956]: debug 2023-11-30T22:54:05.695+0000 7fd5042cf880 4 rocksdb: Options.wal_dir: /var/lib/ceph/mon/ceph-smithi038/store.db 2023-11-30T22:54:05.976 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:54:05 smithi038 conmon[81956]: debug 2023-11-30T22:54:05.695+0000 7fd5042cf880 4 rocksdb: Options.table_cache_numshardbits: 6 2023-11-30T22:54:05.976 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:54:05 smithi038 conmon[81956]: debug 2023-11-30T22:54:05.695+0000 7fd5042cf880 4 rocksdb: Options.max_subcompactions: 1 2023-11-30T22:54:05.976 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:54:05 smithi038 conmon[81956]: debug 2023-11-30T22:54:05.695+0000 7fd5042cf880 4 rocksdb: Options.max_background_flushes: -1 2023-11-30T22:54:05.976 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:54:05 smithi038 conmon[81956]: debug 2023-11-30T22:54:05.695+0000 7fd5042cf880 4 rocksdb: Options.WAL_ttl_seconds: 0 2023-11-30T22:54:05.976 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:54:05 smithi038 conmon[81956]: debug 2023-11-30T22:54:05.695+0000 7fd5042cf880 4 rocksdb: Options.WAL_size_limit_MB: 0 2023-11-30T22:54:05.976 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:54:05 smithi038 conmon[81956]: debug 2023-11-30T22:54:05.695+0000 7fd5042cf880 4 rocksdb: Options.max_write_batch_group_size_bytes: 1048576 2023-11-30T22:54:05.977 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:54:05 smithi038 conmon[81956]: debug 2023-11-30T22:54:05.695+0000 7fd5042cf880 4 rocksdb: Options.manifest_preallocation_size: 4194304 2023-11-30T22:54:05.977 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:54:05 smithi038 conmon[81956]: debug 2023-11-30T22:54:05.695+0000 7fd5042cf880 4 rocksdb: Options.is_fd_close_on_exec: 1 2023-11-30T22:54:05.977 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:54:05 smithi038 conmon[81956]: debug 2023-11-30T22:54:05.695+0000 7fd5042cf880 4 rocksdb: Options.advise_random_on_open: 1 2023-11-30T22:54:05.977 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:54:05 smithi038 conmon[81956]: debug 2023-11-30T22:54:05.695+0000 7fd5042cf880 4 rocksdb: Options.db_write_buffer_size: 0 2023-11-30T22:54:05.977 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:54:05 smithi038 conmon[81956]: debug 2023-11-30T22:54:05.695+0000 7fd5042cf880 4 rocksdb: Options.write_buffer_manager: 0x55dcabf76480 2023-11-30T22:54:05.977 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:54:05 smithi038 conmon[81956]: debug 2023-11-30T22:54:05.695+0000 7fd5042cf880 4 rocksdb: Options.access_hint_on_compaction_start: 1 2023-11-30T22:54:05.977 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:54:05 smithi038 conmon[81956]: debug 2023-11-30T22:54:05.695+0000 7fd5042cf880 4 rocksdb: Options.new_table_reader_for_compaction_inputs: 0 2023-11-30T22:54:05.977 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:54:05 smithi038 conmon[81956]: debug 2023-11-30T22:54:05.695+0000 7fd5042cf880 4 rocksdb: Options.random_access_max_buffer_size: 1048576 2023-11-30T22:54:05.978 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:54:05 smithi038 conmon[81956]: debug 2023-11-30T22:54:05.695+0000 7fd5042cf880 4 rocksdb: Options.use_adaptive_mutex: 0 2023-11-30T22:54:05.978 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:54:05 smithi038 conmon[81956]: debug 2023-11-30T22:54:05.695+0000 7fd5042cf880 4 rocksdb: Options.rate_limiter: (nil) 2023-11-30T22:54:05.978 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:54:05 smithi038 conmon[81956]: debug 2023-11-30T22:54:05.695+0000 7fd5042cf880 4 rocksdb: Options.sst_file_manager.rate_bytes_per_sec: 0 2023-11-30T22:54:05.978 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:54:05 smithi038 conmon[81956]: debug 2023-11-30T22:54:05.695+0000 7fd5042cf880 4 rocksdb: Options.wal_recovery_mode: 2 2023-11-30T22:54:05.978 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:54:05 smithi038 conmon[81956]: debug 2023-11-30T22:54:05.695+0000 7fd5042cf880 4 rocksdb: Options.enable_thread_tracking: 0 2023-11-30T22:54:05.978 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:54:05 smithi038 conmon[81956]: debug 2023-11-30T22:54:05.695+0000 7fd5042cf880 4 rocksdb: Options.enable_pipelined_write: 0 2023-11-30T22:54:05.978 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:54:05 smithi038 conmon[81956]: debug 2023-11-30T22:54:05.695+0000 7fd5042cf880 4 rocksdb: Options.unordered_write: 0 2023-11-30T22:54:05.978 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:54:05 smithi038 conmon[81956]: debug 2023-11-30T22:54:05.695+0000 7fd5042cf880 4 rocksdb: Options.allow_concurrent_memtable_write: 1 2023-11-30T22:54:05.978 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:54:05 smithi038 conmon[81956]: debug 2023-11-30T22:54:05.695+0000 7fd5042cf880 4 rocksdb: Options.enable_write_thread_adaptive_yield: 1 2023-11-30T22:54:05.978 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:54:05 smithi038 conmon[81956]: debug 2023-11-30T22:54:05.695+0000 7fd5042cf880 4 rocksdb: Options.write_thread_max_yield_usec: 100 2023-11-30T22:54:05.978 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:54:05 smithi038 conmon[81956]: debug 2023-11-30T22:54:05.695+0000 7fd5042cf880 4 rocksdb: Options.write_thread_slow_yield_usec: 3 2023-11-30T22:54:05.979 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:54:05 smithi038 conmon[81956]: debug 2023-11-30T22:54:05.695+0000 7fd5042cf880 4 rocksdb: Options.row_cache: None 2023-11-30T22:54:05.979 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:54:05 smithi038 conmon[81956]: debug 2023-11-30T22:54:05.695+0000 7fd5042cf880 4 rocksdb: Options.wal_filter: None 2023-11-30T22:54:05.979 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:54:05 smithi038 conmon[81956]: debug 2023-11-30T22:54:05.695+0000 7fd5042cf880 4 rocksdb: Options.avoid_flush_during_recovery: 0 2023-11-30T22:54:05.979 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:54:05 smithi038 conmon[81956]: debug 2023-11-30T22:54:05.695+0000 7fd5042cf880 4 rocksdb: Options.allow_ingest_behind: 0 2023-11-30T22:54:05.979 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:54:05 smithi038 conmon[81956]: debug 2023-11-30T22:54:05.695+0000 7fd5042cf880 4 rocksdb: Options.preserve_deletes: 0 2023-11-30T22:54:05.979 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:54:05 smithi038 conmon[81956]: debug 2023-11-30T22:54:05.695+0000 7fd5042cf880 4 rocksdb: Options.two_write_queues: 0 2023-11-30T22:54:05.979 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:54:05 smithi038 conmon[81956]: debug 2023-11-30T22:54:05.695+0000 7fd5042cf880 4 rocksdb: Options.manual_wal_flush: 0 2023-11-30T22:54:05.979 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:54:05 smithi038 conmon[81956]: debug 2023-11-30T22:54:05.695+0000 7fd5042cf880 4 rocksdb: Options.atomic_flush: 0 2023-11-30T22:54:05.979 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:54:05 smithi038 conmon[81956]: debug 2023-11-30T22:54:05.695+0000 7fd5042cf880 4 rocksdb: Options.avoid_unnecessary_blocking_io: 0 2023-11-30T22:54:05.979 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:54:05 smithi038 conmon[81956]: debug 2023-11-30T22:54:05.695+0000 7fd5042cf880 4 rocksdb: Options.persist_stats_to_disk: 0 2023-11-30T22:54:05.979 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:54:05 smithi038 conmon[81956]: debug 2023-11-30T22:54:05.695+0000 7fd5042cf880 4 rocksdb: Options.write_dbid_to_manifest: 0 2023-11-30T22:54:05.979 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:54:05 smithi038 conmon[81956]: debug 2023-11-30T22:54:05.695+0000 7fd5042cf880 4 rocksdb: Options.log_readahead_size: 0 2023-11-30T22:54:05.979 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:54:05 smithi038 conmon[81956]: debug 2023-11-30T22:54:05.695+0000 7fd5042cf880 4 rocksdb: Options.sst_file_checksum_func: Unknown 2023-11-30T22:54:05.980 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:54:05 smithi038 conmon[81956]: debug 2023-11-30T22:54:05.695+0000 7fd5042cf880 4 rocksdb: Options.max_background_jobs: 2 2023-11-30T22:54:05.980 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:54:05 smithi038 conmon[81956]: debug 2023-11-30T22:54:05.695+0000 7fd5042cf880 4 rocksdb: Options.max_background_compactions: -1 2023-11-30T22:54:05.980 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:54:05 smithi038 conmon[81956]: debug 2023-11-30T22:54:05.695+0000 7fd5042cf880 4 rocksdb: Options.avoid_flush_during_shutdown: 0 2023-11-30T22:54:05.980 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:54:05 smithi038 conmon[81956]: debug 2023-11-30T22:54:05.695+0000 7fd5042cf880 4 rocksdb: Options.writable_file_max_buffer_size: 1048576 2023-11-30T22:54:05.980 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:54:05 smithi038 conmon[81956]: debug 2023-11-30T22:54:05.695+0000 7fd5042cf880 4 rocksdb: Options.delayed_write_rate : 16777216 2023-11-30T22:54:05.980 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:54:05 smithi038 conmon[81956]: debug 2023-11-30T22:54:05.695+0000 7fd5042cf880 4 rocksdb: Options.max_total_wal_size: 0 2023-11-30T22:54:05.980 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:54:05 smithi038 conmon[81956]: debug 2023-11-30T22:54:05.695+0000 7fd5042cf880 4 rocksdb: Options.delete_obsolete_files_period_micros: 21600000000 2023-11-30T22:54:05.980 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:54:05 smithi038 conmon[81956]: debug 2023-11-30T22:54:05.695+0000 7fd5042cf880 4 rocksdb: Options.stats_dump_period_sec: 600 2023-11-30T22:54:05.980 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:54:05 smithi038 conmon[81956]: debug 2023-11-30T22:54:05.695+0000 7fd5042cf880 4 rocksdb: Options.stats_persist_period_sec: 600 2023-11-30T22:54:05.980 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:54:05 smithi038 conmon[81956]: debug 2023-11-30T22:54:05.695+0000 7fd5042cf880 4 rocksdb: Options.stats_history_buffer_size: 1048576 2023-11-30T22:54:05.980 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:54:05 smithi038 conmon[81956]: debug 2023-11-30T22:54:05.695+0000 7fd5042cf880 4 rocksdb: Options.max_open_files: -1 2023-11-30T22:54:05.981 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:54:05 smithi038 conmon[81956]: debug 2023-11-30T22:54:05.695+0000 7fd5042cf880 4 rocksdb: Options.bytes_per_sync: 0 2023-11-30T22:54:05.981 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:54:05 smithi038 conmon[81956]: debug 2023-11-30T22:54:05.695+0000 7fd5042cf880 4 rocksdb: Options.wal_bytes_per_sync: 0 2023-11-30T22:54:05.981 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:54:05 smithi038 conmon[81956]: debug 2023-11-30T22:54:05.695+0000 7fd5042cf880 4 rocksdb: Options.strict_bytes_per_sync: 0 2023-11-30T22:54:05.981 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:54:05 smithi038 conmon[81956]: debug 2023-11-30T22:54:05.695+0000 7fd5042cf880 4 rocksdb: Options.compaction_readahead_size: 0 2023-11-30T22:54:05.981 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:54:05 smithi038 conmon[81956]: debug 2023-11-30T22:54:05.695+0000 7fd5042cf880 4 rocksdb: Compression algorithms supported: 2023-11-30T22:54:05.981 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:54:05 smithi038 conmon[81956]: debug 2023-11-30T22:54:05.695+0000 7fd5042cf880 4 rocksdb: kZSTDNotFinalCompression supported: 0 2023-11-30T22:54:05.981 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:54:05 smithi038 conmon[81956]: debug 2023-11-30T22:54:05.695+0000 7fd5042cf880 4 rocksdb: kZSTD supported: 0 2023-11-30T22:54:05.981 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:54:05 smithi038 conmon[81956]: debug 2023-11-30T22:54:05.695+0000 7fd5042cf880 4 rocksdb: kXpressCompression supported: 0 2023-11-30T22:54:05.981 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:54:05 smithi038 conmon[81956]: debug 2023-11-30T22:54:05.695+0000 7fd5042cf880 4 rocksdb: kLZ4HCCompression supported: 1 2023-11-30T22:54:05.981 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:54:05 smithi038 conmon[81956]: debug 2023-11-30T22:54:05.695+0000 7fd5042cf880 4 rocksdb: kLZ4Compression supported: 1 2023-11-30T22:54:05.981 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:54:05 smithi038 conmon[81956]: debug 2023-11-30T22:54:05.695+0000 7fd5042cf880 4 rocksdb: kBZip2Compression supported: 0 2023-11-30T22:54:05.981 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:54:05 smithi038 conmon[81956]: debug 2023-11-30T22:54:05.695+0000 7fd5042cf880 4 rocksdb: kZlibCompression supported: 1 2023-11-30T22:54:05.982 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:54:05 smithi038 conmon[81956]: debug 2023-11-30T22:54:05.695+0000 7fd5042cf880 4 rocksdb: kSnappyCompression supported: 1 2023-11-30T22:54:05.982 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:54:05 smithi038 conmon[81956]: debug 2023-11-30T22:54:05.695+0000 7fd5042cf880 4 rocksdb: Fast CRC32 supported: Supported on x86 2023-11-30T22:54:05.982 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:54:05 smithi038 conmon[81956]: debug 2023-11-30T22:54:05.695+0000 7fd5042cf880 4 rocksdb: [version_set.cc:4413] Recovering from manifest file: /var/lib/ceph/mon/ceph-smithi038/store.db/MANIFEST-000005 2023-11-30T22:54:05.982 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:54:05 smithi038 conmon[81956]: 2023-11-30T22:54:05.982 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:54:05 smithi038 conmon[81956]: debug 2023-11-30T22:54:05.695+0000 7fd5042cf880 4 rocksdb: [column_family.cc:552] --------------- Options for column family [default]: 2023-11-30T22:54:05.982 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:54:05 smithi038 conmon[81956]: 2023-11-30T22:54:05.982 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:54:05 smithi038 conmon[81956]: debug 2023-11-30T22:54:05.695+0000 7fd5042cf880 4 rocksdb: Options.comparator: leveldb.BytewiseComparator 2023-11-30T22:54:05.982 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:54:05 smithi038 conmon[81956]: debug 2023-11-30T22:54:05.695+0000 7fd5042cf880 4 rocksdb: Options.merge_operator: 2023-11-30T22:54:05.982 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:54:05 smithi038 conmon[81956]: debug 2023-11-30T22:54:05.695+0000 7fd5042cf880 4 rocksdb: Options.compaction_filter: None 2023-11-30T22:54:05.982 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:54:05 smithi038 conmon[81956]: debug 2023-11-30T22:54:05.695+0000 7fd5042cf880 4 rocksdb: Options.compaction_filter_factory: None 2023-11-30T22:54:05.982 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:54:05 smithi038 bash[81916]: e3e9b03c01a7ea69a4a45ffe8890804df80edb429d3057b2a7332ff7939262d0 2023-11-30T22:54:05.982 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:54:05 smithi038 conmon[81956]: debug 2023-11-30T22:54:05.695+0000 7fd5042cf880 4 rocksdb: Options.memtable_factory: SkipListFactory 2023-11-30T22:54:05.983 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:54:05 smithi038 conmon[81956]: debug 2023-11-30T22:54:05.695+0000 7fd5042cf880 4 rocksdb: Options.table_factory: BlockBasedTable 2023-11-30T22:54:05.983 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:54:05 smithi038 conmon[81956]: debug 2023-11-30T22:54:05.695+0000 7fd5042cf880 4 rocksdb: table_factory options: flush_block_policy_factory: FlushBlockBySizePolicyFactory (0x55dcab2cfd28) 2023-11-30T22:54:05.983 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:54:05 smithi038 conmon[81956]: cache_index_and_filter_blocks: 1 2023-11-30T22:54:05.983 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:54:05 smithi038 conmon[81956]: cache_index_and_filter_blocks_with_high_priority: 0 2023-11-30T22:54:05.983 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:54:05 smithi038 conmon[81956]: pin_l0_filter_and_index_blocks_in_cache: 0 2023-11-30T22:54:05.983 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:54:05 smithi038 conmon[81956]: pin_top_level_index_and_filter: 1 2023-11-30T22:54:05.983 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:54:05 smithi038 conmon[81956]: index_type: 0 2023-11-30T22:54:05.983 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:54:05 smithi038 conmon[81956]: data_block_index_type: 0 2023-11-30T22:54:05.983 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:54:05 smithi038 conmon[81956]: index_shortening: 1 2023-11-30T22:54:05.983 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:54:05 smithi038 conmon[81956]: data_block_hash_table_util_ratio: 0.750000 2023-11-30T22:54:05.983 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:54:05 smithi038 conmon[81956]: hash_index_allow_collision: 1 2023-11-30T22:54:05.983 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:54:05 smithi038 conmon[81956]: checksum: 1 2023-11-30T22:54:05.984 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:54:05 smithi038 conmon[81956]: no_block_cache: 0 2023-11-30T22:54:05.984 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:54:05 smithi038 conmon[81956]: block_cache: 0x55dcab304f10 2023-11-30T22:54:05.984 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:54:05 smithi038 conmon[81956]: block_cache_name: BinnedLRUCache 2023-11-30T22:54:05.984 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:54:05 smithi038 conmon[81956]: block_cache_options: 2023-11-30T22:54:05.984 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:54:05 smithi038 conmon[81956]: capacity : 536870912 2023-11-30T22:54:05.984 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:54:05 smithi038 conmon[81956]: num_shard_bits : 4 2023-11-30T22:54:05.984 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:54:05 smithi038 conmon[81956]: strict_capacity_limit : 0 2023-11-30T22:54:05.984 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:54:05 smithi038 conmon[81956]: high_pri_pool_ratio: 0.000 2023-11-30T22:54:05.984 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:54:05 smithi038 conmon[81956]: block_cache_compressed: (nil) 2023-11-30T22:54:05.984 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:54:05 smithi038 conmon[81956]: persistent_cache: (nil) 2023-11-30T22:54:05.984 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:54:05 smithi038 conmon[81956]: block_size: 4096 2023-11-30T22:54:05.984 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:54:05 smithi038 conmon[81956]: block_size_deviation: 10 2023-11-30T22:54:05.985 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:54:05 smithi038 conmon[81956]: block_restart_interval: 16 2023-11-30T22:54:05.985 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:54:05 smithi038 conmon[81956]: index_block_restart_interval: 1 2023-11-30T22:54:05.985 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:54:05 smithi038 conmon[81956]: metadata_block_size: 4096 2023-11-30T22:54:05.985 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:54:05 smithi038 conmon[81956]: partition_filters: 0 2023-11-30T22:54:05.985 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:54:05 smithi038 conmon[81956]: use_delta_encoding: 1 2023-11-30T22:54:05.985 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:54:05 smithi038 conmon[81956]: filter_policy: rocksdb.BuiltinBloomFilter 2023-11-30T22:54:05.985 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:54:05 smithi038 conmon[81956]: whole_key_filtering: 1 2023-11-30T22:54:05.985 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:54:05 smithi038 conmon[81956]: verify_compression: 0 2023-11-30T22:54:05.985 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:54:05 smithi038 conmon[81956]: read_amp_bytes_per_bit: 0 2023-11-30T22:54:05.985 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:54:05 smithi038 conmon[81956]: format_version: 2 2023-11-30T22:54:05.985 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:54:05 smithi038 conmon[81956]: enable_index_compression: 1 2023-11-30T22:54:05.986 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:54:05 smithi038 conmon[81956]: block_align: 0 2023-11-30T22:54:05.986 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:54:05 smithi038 conmon[81956]: 2023-11-30T22:54:05.986 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:54:05 smithi038 conmon[81956]: debug 2023-11-30T22:54:05.695+0000 7fd5042cf880 4 rocksdb: Options.write_buffer_size: 33554432 2023-11-30T22:54:05.986 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:54:05 smithi038 conmon[81956]: debug 2023-11-30T22:54:05.695+0000 7fd5042cf880 4 rocksdb: Options.max_write_buffer_number: 2 2023-11-30T22:54:05.986 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:54:05 smithi038 conmon[81956]: debug 2023-11-30T22:54:05.695+0000 7fd5042cf880 4 rocksdb: Options.compression: NoCompression 2023-11-30T22:54:05.986 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:54:05 smithi038 conmon[81956]: debug 2023-11-30T22:54:05.695+0000 7fd5042cf880 4 rocksdb: Options.bottommost_compression: Disabled 2023-11-30T22:54:05.986 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:54:05 smithi038 conmon[81956]: debug 2023-11-30T22:54:05.695+0000 7fd5042cf880 4 rocksdb: Options.prefix_extractor: nullptr 2023-11-30T22:54:05.986 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:54:05 smithi038 conmon[81956]: debug 2023-11-30T22:54:05.695+0000 7fd5042cf880 4 rocksdb: Options.memtable_insert_with_hint_prefix_extractor: nullptr 2023-11-30T22:54:05.987 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:54:05 smithi038 conmon[81956]: debug 2023-11-30T22:54:05.695+0000 7fd5042cf880 4 rocksdb: Options.num_levels: 7 2023-11-30T22:54:05.987 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:54:05 smithi038 conmon[81956]: debug 2023-11-30T22:54:05.695+0000 7fd5042cf880 4 rocksdb: Options.min_write_buffer_number_to_merge: 1 2023-11-30T22:54:05.987 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:54:05 smithi038 conmon[81956]: debug 2023-11-30T22:54:05.695+0000 7fd5042cf880 4 rocksdb: Options.max_write_buffer_number_to_maintain: 0 2023-11-30T22:54:05.987 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:54:05 smithi038 conmon[81956]: debug 2023-11-30T22:54:05.695+0000 7fd5042cf880 4 rocksdb: Options.max_write_buffer_size_to_maintain: 0 2023-11-30T22:54:05.987 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:54:05 smithi038 conmon[81956]: debug 2023-11-30T22:54:05.695+0000 7fd5042cf880 4 rocksdb: Options.bottommost_compression_opts.window_bits: -14 2023-11-30T22:54:05.987 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:54:05 smithi038 conmon[81956]: debug 2023-11-30T22:54:05.695+0000 7fd5042cf880 4 rocksdb: Options.bottommost_compression_opts.level: 32767 2023-11-30T22:54:05.987 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:54:05 smithi038 conmon[81956]: debug 2023-11-30T22:54:05.695+0000 7fd5042cf880 4 rocksdb: Options.bottommost_compression_opts.strategy: 0 2023-11-30T22:54:05.987 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:54:05 smithi038 conmon[81956]: debug 2023-11-30T22:54:05.695+0000 7fd5042cf880 4 rocksdb: Options.bottommost_compression_opts.max_dict_bytes: 0 2023-11-30T22:54:05.987 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:54:05 smithi038 conmon[81956]: debug 2023-11-30T22:54:05.695+0000 7fd5042cf880 4 rocksdb: Options.bottommost_compression_opts.zstd_max_train_bytes: 0 2023-11-30T22:54:05.987 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:54:05 smithi038 conmon[81956]: debug 2023-11-30T22:54:05.695+0000 7fd5042cf880 4 rocksdb: Options.bottommost_compression_opts.enabled: false 2023-11-30T22:54:05.988 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:54:05 smithi038 conmon[81956]: debug 2023-11-30T22:54:05.695+0000 7fd5042cf880 4 rocksdb: Options.compression_opts.window_bits: -14 2023-11-30T22:54:05.988 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:54:05 smithi038 conmon[81956]: debug 2023-11-30T22:54:05.695+0000 7fd5042cf880 4 rocksdb: Options.compression_opts.level: 32767 2023-11-30T22:54:05.988 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:54:05 smithi038 conmon[81956]: debug 2023-11-30T22:54:05.695+0000 7fd5042cf880 4 rocksdb: Options.compression_opts.strategy: 0 2023-11-30T22:54:05.988 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:54:05 smithi038 conmon[81956]: debug 2023-11-30T22:54:05.695+0000 7fd5042cf880 4 rocksdb: Options.compression_opts.max_dict_bytes: 0 2023-11-30T22:54:05.988 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:54:05 smithi038 conmon[81956]: debug 2023-11-30T22:54:05.695+0000 7fd5042cf880 4 rocksdb: Options.compression_opts.zstd_max_train_bytes: 0 2023-11-30T22:54:05.988 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:54:05 smithi038 conmon[81956]: debug 2023-11-30T22:54:05.695+0000 7fd5042cf880 4 rocksdb: Options.compression_opts.enabled: false 2023-11-30T22:54:05.988 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:54:05 smithi038 conmon[81956]: debug 2023-11-30T22:54:05.695+0000 7fd5042cf880 4 rocksdb: Options.level0_file_num_compaction_trigger: 4 2023-11-30T22:54:05.988 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:54:05 smithi038 conmon[81956]: debug 2023-11-30T22:54:05.695+0000 7fd5042cf880 4 rocksdb: Options.level0_slowdown_writes_trigger: 20 2023-11-30T22:54:05.988 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:54:05 smithi038 conmon[81956]: debug 2023-11-30T22:54:05.695+0000 7fd5042cf880 4 rocksdb: Options.level0_stop_writes_trigger: 36 2023-11-30T22:54:05.988 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:54:05 smithi038 conmon[81956]: debug 2023-11-30T22:54:05.695+0000 7fd5042cf880 4 rocksdb: Options.target_file_size_base: 67108864 2023-11-30T22:54:05.988 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:54:05 smithi038 conmon[81956]: debug 2023-11-30T22:54:05.695+0000 7fd5042cf880 4 rocksdb: Options.target_file_size_multiplier: 1 2023-11-30T22:54:05.988 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:54:05 smithi038 conmon[81956]: debug 2023-11-30T22:54:05.695+0000 7fd5042cf880 4 rocksdb: Options.max_bytes_for_level_base: 268435456 2023-11-30T22:54:05.989 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:54:05 smithi038 conmon[81956]: debug 2023-11-30T22:54:05.695+0000 7fd5042cf880 4 rocksdb: Options.level_compaction_dynamic_level_bytes: 1 2023-11-30T22:54:05.989 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:54:05 smithi038 conmon[81956]: debug 2023-11-30T22:54:05.695+0000 7fd5042cf880 4 rocksdb: Options.max_bytes_for_level_multiplier: 10.000000 2023-11-30T22:54:05.989 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:54:05 smithi038 conmon[81956]: debug 2023-11-30T22:54:05.695+0000 7fd5042cf880 4 rocksdb: Options.max_bytes_for_level_multiplier_addtl[0]: 1 2023-11-30T22:54:05.989 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:54:05 smithi038 conmon[81956]: debug 2023-11-30T22:54:05.695+0000 7fd5042cf880 4 rocksdb: Options.max_bytes_for_level_multiplier_addtl[1]: 1 2023-11-30T22:54:05.989 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:54:05 smithi038 conmon[81956]: debug 2023-11-30T22:54:05.695+0000 7fd5042cf880 4 rocksdb: Options.max_bytes_for_level_multiplier_addtl[2]: 1 2023-11-30T22:54:05.989 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:54:05 smithi038 conmon[81956]: debug 2023-11-30T22:54:05.695+0000 7fd5042cf880 4 rocksdb: Options.max_bytes_for_level_multiplier_addtl[3]: 1 2023-11-30T22:54:05.989 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:54:05 smithi038 conmon[81956]: debug 2023-11-30T22:54:05.695+0000 7fd5042cf880 4 rocksdb: Options.max_bytes_for_level_multiplier_addtl[4]: 1 2023-11-30T22:54:05.989 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:54:05 smithi038 conmon[81956]: debug 2023-11-30T22:54:05.695+0000 7fd5042cf880 4 rocksdb: Options.max_bytes_for_level_multiplier_addtl[5]: 1 2023-11-30T22:54:05.989 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:54:05 smithi038 conmon[81956]: debug 2023-11-30T22:54:05.695+0000 7fd5042cf880 4 rocksdb: Options.max_bytes_for_level_multiplier_addtl[6]: 1 2023-11-30T22:54:05.989 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:54:05 smithi038 conmon[81956]: debug 2023-11-30T22:54:05.695+0000 7fd5042cf880 4 rocksdb: Options.max_sequential_skip_in_iterations: 8 2023-11-30T22:54:05.989 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:54:05 smithi038 conmon[81956]: debug 2023-11-30T22:54:05.695+0000 7fd5042cf880 4 rocksdb: Options.max_compaction_bytes: 1677721600 2023-11-30T22:54:05.989 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:54:05 smithi038 conmon[81956]: debug 2023-11-30T22:54:05.695+0000 7fd5042cf880 4 rocksdb: Options.arena_block_size: 4194304 2023-11-30T22:54:05.990 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:54:05 smithi038 conmon[81956]: debug 2023-11-30T22:54:05.695+0000 7fd5042cf880 4 rocksdb: Options.soft_pending_compaction_bytes_limit: 68719476736 2023-11-30T22:54:05.990 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:54:05 smithi038 conmon[81956]: debug 2023-11-30T22:54:05.695+0000 7fd5042cf880 4 rocksdb: Options.hard_pending_compaction_bytes_limit: 274877906944 2023-11-30T22:54:05.990 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:54:05 smithi038 conmon[81956]: debug 2023-11-30T22:54:05.695+0000 7fd5042cf880 4 rocksdb: Options.rate_limit_delay_max_milliseconds: 100 2023-11-30T22:54:05.990 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:54:05 smithi038 conmon[81956]: debug 2023-11-30T22:54:05.695+0000 7fd5042cf880 4 rocksdb: Options.disable_auto_compactions: 0 2023-11-30T22:54:05.990 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:54:05 smithi038 conmon[81956]: debug 2023-11-30T22:54:05.695+0000 7fd5042cf880 4 rocksdb: Options.compaction_style: kCompactionStyleLevel 2023-11-30T22:54:05.990 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:54:05 smithi038 conmon[81956]: debug 2023-11-30T22:54:05.695+0000 7fd5042cf880 4 rocksdb: Options.compaction_pri: kMinOverlappingRatio 2023-11-30T22:54:05.990 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:54:05 smithi038 conmon[81956]: debug 2023-11-30T22:54:05.695+0000 7fd5042cf880 4 rocksdb: Options.compaction_options_universal.size_ratio: 1 2023-11-30T22:54:05.991 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:54:05 smithi038 conmon[81956]: debug 2023-11-30T22:54:05.695+0000 7fd5042cf880 4 rocksdb: Options.compaction_options_universal.min_merge_width: 2 2023-11-30T22:54:05.991 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:54:05 smithi038 conmon[81956]: debug 2023-11-30T22:54:05.695+0000 7fd5042cf880 4 rocksdb: Options.compaction_options_universal.max_merge_width: 4294967295 2023-11-30T22:54:05.991 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:54:05 smithi038 conmon[81956]: debug 2023-11-30T22:54:05.695+0000 7fd5042cf880 4 rocksdb: Options.compaction_options_universal.max_size_amplification_percent: 200 2023-11-30T22:54:05.991 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:54:05 smithi038 conmon[81956]: debug 2023-11-30T22:54:05.695+0000 7fd5042cf880 4 rocksdb: Options.compaction_options_universal.compression_size_percent: -1 2023-11-30T22:54:05.991 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:54:05 smithi038 conmon[81956]: debug 2023-11-30T22:54:05.695+0000 7fd5042cf880 4 rocksdb: Options.compaction_options_universal.stop_style: kCompactionStopStyleTotalSize 2023-11-30T22:54:05.991 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:54:05 smithi038 conmon[81956]: debug 2023-11-30T22:54:05.695+0000 7fd5042cf880 4 rocksdb: Options.compaction_options_fifo.max_table_files_size: 1073741824 2023-11-30T22:54:05.991 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:54:05 smithi038 conmon[81956]: debug 2023-11-30T22:54:05.695+0000 7fd5042cf880 4 rocksdb: Options.compaction_options_fifo.allow_compaction: 0 2023-11-30T22:54:05.992 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:54:05 smithi038 conmon[81956]: debug 2023-11-30T22:54:05.695+0000 7fd5042cf880 4 rocksdb: Options.table_properties_collectors: 2023-11-30T22:54:05.992 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:54:05 smithi038 conmon[81956]: debug 2023-11-30T22:54:05.695+0000 7fd5042cf880 4 rocksdb: Options.inplace_update_support: 0 2023-11-30T22:54:05.992 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:54:05 smithi038 conmon[81956]: debug 2023-11-30T22:54:05.695+0000 7fd5042cf880 4 rocksdb: Options.inplace_update_num_locks: 10000 2023-11-30T22:54:05.992 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:54:05 smithi038 conmon[81956]: debug 2023-11-30T22:54:05.695+0000 7fd5042cf880 4 rocksdb: Options.memtable_prefix_bloom_size_ratio: 0.000000 2023-11-30T22:54:05.992 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:54:05 smithi038 conmon[81956]: debug 2023-11-30T22:54:05.695+0000 7fd5042cf880 4 rocksdb: Options.memtable_whole_key_filtering: 0 2023-11-30T22:54:05.992 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:54:05 smithi038 conmon[81956]: debug 2023-11-30T22:54:05.695+0000 7fd5042cf880 4 rocksdb: Options.memtable_huge_page_size: 0 2023-11-30T22:54:05.992 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:54:05 smithi038 conmon[81956]: debug 2023-11-30T22:54:05.695+0000 7fd5042cf880 4 rocksdb: Options.bloom_locality: 0 2023-11-30T22:54:05.992 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:54:05 smithi038 conmon[81956]: debug 2023-11-30T22:54:05.695+0000 7fd5042cf880 4 rocksdb: Options.max_successive_merges: 0 2023-11-30T22:54:05.993 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:54:05 smithi038 conmon[81956]: debug 2023-11-30T22:54:05.695+0000 7fd5042cf880 4 rocksdb: Options.optimize_filters_for_hits: 0 2023-11-30T22:54:05.993 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:54:05 smithi038 conmon[81956]: debug 2023-11-30T22:54:05.695+0000 7fd5042cf880 4 rocksdb: Options.paranoid_file_checks: 0 2023-11-30T22:54:05.993 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:54:05 smithi038 conmon[81956]: debug 2023-11-30T22:54:05.695+0000 7fd5042cf880 4 rocksdb: Options.force_consistency_checks: 0 2023-11-30T22:54:05.993 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:54:05 smithi038 conmon[81956]: debug 2023-11-30T22:54:05.695+0000 7fd5042cf880 4 rocksdb: Options.report_bg_io_stats: 0 2023-11-30T22:54:05.993 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:54:05 smithi038 conmon[81956]: debug 2023-11-30T22:54:05.695+0000 7fd5042cf880 4 rocksdb: Options.ttl: 2592000 2023-11-30T22:54:05.993 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:54:05 smithi038 conmon[81956]: debug 2023-11-30T22:54:05.695+0000 7fd5042cf880 4 rocksdb: Options.periodic_compaction_seconds: 0 2023-11-30T22:54:05.993 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:54:05 smithi038 conmon[81956]: debug 2023-11-30T22:54:05.696+0000 7fd5042cf880 4 rocksdb: [version_set.cc:4568] Recovered from manifest file:/var/lib/ceph/mon/ceph-smithi038/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-11-30T22:54:05.993 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:54:05 smithi038 conmon[81956]: 2023-11-30T22:54:05.993 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:54:05 smithi038 conmon[81956]: debug 2023-11-30T22:54:05.696+0000 7fd5042cf880 4 rocksdb: [version_set.cc:4577] Column family [default] (ID 0), log number is 4 2023-11-30T22:54:05.993 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:54:05 smithi038 conmon[81956]: 2023-11-30T22:54:05.993 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:54:05 smithi038 conmon[81956]: debug 2023-11-30T22:54:05.696+0000 7fd5042cf880 4 rocksdb: EVENT_LOG_v1 {"time_micros": 1701384845696978, "job": 1, "event": "recovery_started", "log_files": [6]} 2023-11-30T22:54:05.993 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:54:05 smithi038 conmon[81956]: debug 2023-11-30T22:54:05.696+0000 7fd5042cf880 4 rocksdb: [db_impl/db_impl_open.cc:760] Recovering log #6 mode 2 2023-11-30T22:54:05.994 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:54:05 smithi038 conmon[81956]: debug 2023-11-30T22:54:05.697+0000 7fd5042cf880 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-11-30T22:54:05.994 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:54:05 smithi038 conmon[81956]: debug 2023-11-30T22:54:05.698+0000 7fd5042cf880 4 rocksdb: EVENT_LOG_v1 {"time_micros": 1701384845698269, "cf_name": "default", "job": 1, "event": "table_file_creation", "file_number": 7, "file_size": 83376, "table_properties": {"data_size": 81643, "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": 76155, "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": 1701384845, "oldest_key_time": 3, "file_creation_time": 0}} 2023-11-30T22:54:05.994 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:54:05 smithi038 conmon[81956]: debug 2023-11-30T22:54:05.698+0000 7fd5042cf880 4 rocksdb: [version_set.cc:3826] Creating manifest 8 2023-11-30T22:54:05.994 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:54:05 smithi038 conmon[81956]: 2023-11-30T22:54:05.994 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:54:05 smithi038 conmon[81956]: debug 2023-11-30T22:54:05.699+0000 7fd5042cf880 4 rocksdb: EVENT_LOG_v1 {"time_micros": 1701384845699214, "job": 1, "event": "recovery_finished"} 2023-11-30T22:54:05.994 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:54:05 smithi038 conmon[81956]: debug 2023-11-30T22:54:05.700+0000 7fd5042cf880 4 rocksdb: DB pointer 0x55dcab3cd800 2023-11-30T22:54:05.994 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:54:05 smithi038 conmon[81956]: debug 2023-11-30T22:54:05.700+0000 7fd4eb0d5700 4 rocksdb: [db_impl/db_impl.cc:850] ------- DUMPING STATS ------- 2023-11-30T22:54:05.994 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:54:05 smithi038 conmon[81956]: debug 2023-11-30T22:54:05.700+0000 7fd4eb0d5700 4 rocksdb: [db_impl/db_impl.cc:851] 2023-11-30T22:54:05.994 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:54:05 smithi038 conmon[81956]: ** DB Stats ** 2023-11-30T22:54:05.994 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:54:05 smithi038 conmon[81956]: Uptime(secs): 0.0 total, 0.0 interval 2023-11-30T22:54:05.994 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:54:05 smithi038 conmon[81956]: Cumulative writes: 0 writes, 0 keys, 0 commit groups, 0.0 writes per commit group, ingest: 0.00 GB, 0.00 MB/s 2023-11-30T22:54:05.994 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:54:05 smithi038 conmon[81956]: Cumulative WAL: 0 writes, 0 syncs, 0.00 writes per sync, written: 0.00 GB, 0.00 MB/s 2023-11-30T22:54:05.995 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:54:05 smithi038 conmon[81956]: Cumulative stall: 00:00:0.000 H:M:S, 0.0 percent 2023-11-30T22:54:05.995 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:54:05 smithi038 conmon[81956]: Interval writes: 0 writes, 0 keys, 0 commit groups, 0.0 writes per commit group, ingest: 0.00 MB, 0.00 MB/s 2023-11-30T22:54:05.995 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:54:05 smithi038 conmon[81956]: Interval WAL: 0 writes, 0 syncs, 0.00 writes per sync, written: 0.00 MB, 0.00 MB/s 2023-11-30T22:54:05.995 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:54:05 smithi038 conmon[81956]: Interval stall: 00:00:0.000 H:M:S, 0.0 percent 2023-11-30T22:54:05.995 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:54:05 smithi038 conmon[81956]: 2023-11-30T22:54:05.995 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:54:05 smithi038 conmon[81956]: ** Compaction Stats [default] ** 2023-11-30T22:54:05.995 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:54:05 smithi038 conmon[81956]: 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-11-30T22:54:05.996 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:54:05 smithi038 conmon[81956]: ---------------------------------------------------------------------------------------------------------------------------------------------------------------------------- 2023-11-30T22:54:05.996 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:54:05 smithi038 conmon[81956]: L0 2/0 83.11 KB 0.5 0.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 97.4 0.00 0.00 1 0.001 0 0 2023-11-30T22:54:05.996 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:54:05 smithi038 conmon[81956]: Sum 2/0 83.11 KB 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 97.4 0.00 0.00 1 0.001 0 0 2023-11-30T22:54:05.996 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:54:05 smithi038 conmon[81956]: Int 0/0 0.00 KB 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 97.4 0.00 0.00 1 0.001 0 0 2023-11-30T22:54:05.996 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:54:05 smithi038 conmon[81956]: 2023-11-30T22:54:05.996 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:54:05 smithi038 conmon[81956]: ** Compaction Stats [default] ** 2023-11-30T22:54:05.996 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:54:05 smithi038 conmon[81956]: 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-11-30T22:54:05.996 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:54:05 smithi038 conmon[81956]: ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- 2023-11-30T22:54:05.996 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:54:05 smithi038 conmon[81956]: User 0/0 0.00 KB 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 97.4 0.00 0.00 1 0.001 0 0 2023-11-30T22:54:05.996 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:54:05 smithi038 conmon[81956]: Uptime(secs): 0.0 total, 0.0 interval 2023-11-30T22:54:05.996 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:54:05 smithi038 conmon[81956]: Flush(GB): cumulative 0.000, interval 0.000 2023-11-30T22:54:05.997 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:54:05 smithi038 conmon[81956]: AddFile(GB): cumulative 0.000, interval 0.000 2023-11-30T22:54:05.997 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:54:05 smithi038 conmon[81956]: AddFile(Total Files): cumulative 0, interval 0 2023-11-30T22:54:05.997 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:54:05 smithi038 conmon[81956]: AddFile(L0 Files): cumulative 0, interval 0 2023-11-30T22:54:05.997 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:54:05 smithi038 conmon[81956]: AddFile(Keys): cumulative 0, interval 0 2023-11-30T22:54:05.997 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:54:05 smithi038 conmon[81956]: Cumulative compaction: 0.00 GB write, 17.21 MB/s write, 0.00 GB read, 0.00 MB/s read, 0.0 seconds 2023-11-30T22:54:05.997 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:54:05 smithi038 conmon[81956]: Interval compaction: 0.00 GB write, 17.21 MB/s write, 0.00 GB read, 0.00 MB/s read, 0.0 seconds 2023-11-30T22:54:05.998 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:54:05 smithi038 conmon[81956]: 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-11-30T22:54:05.998 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:54:05 smithi038 conmon[81956]: 2023-11-30T22:54:05.998 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:54:05 smithi038 conmon[81956]: ** File Read Latency Histogram By Level [default] ** 2023-11-30T22:54:05.998 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:54:05 smithi038 conmon[81956]: 2023-11-30T22:54:05.998 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:54:05 smithi038 conmon[81956]: ** Compaction Stats [default] ** 2023-11-30T22:54:05.998 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:54:05 smithi038 conmon[81956]: 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-11-30T22:54:05.998 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:54:05 smithi038 conmon[81956]: ---------------------------------------------------------------------------------------------------------------------------------------------------------------------------- 2023-11-30T22:54:05.998 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:54:05 smithi038 conmon[81956]: L0 2/0 83.11 KB 0.5 0.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 97.4 0.00 0.00 1 0.001 0 0 2023-11-30T22:54:05.999 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:54:05 smithi038 conmon[81956]: Sum 2/0 83.11 KB 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 97.4 0.00 0.00 1 0.001 0 0 2023-11-30T22:54:05.999 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:54:05 smithi038 conmon[81956]: 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-11-30T22:54:05.999 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:54:05 smithi038 conmon[81956]: 2023-11-30T22:54:05.999 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:54:05 smithi038 conmon[81956]: ** Compaction Stats [default] ** 2023-11-30T22:54:05.999 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:54:05 smithi038 conmon[81956]: 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-11-30T22:54:05.999 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:54:05 smithi038 conmon[81956]: ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- 2023-11-30T22:54:05.999 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:54:05 smithi038 conmon[81956]: User 0/0 0.00 KB 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 97.4 0.00 0.00 1 0.001 0 0 2023-11-30T22:54:05.999 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:54:05 smithi038 conmon[81956]: Uptime(secs): 0.0 total, 0.0 interval 2023-11-30T22:54:05.999 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:54:05 smithi038 conmon[81956]: Flush(GB): cumulative 0.000, interval 0.000 2023-11-30T22:54:05.999 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:54:05 smithi038 conmon[81956]: AddFile(GB): cumulative 0.000, interval 0.000 2023-11-30T22:54:06.000 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:54:05 smithi038 conmon[81956]: AddFile(Total Files): cumulative 0, interval 0 2023-11-30T22:54:06.000 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:54:05 smithi038 conmon[81956]: AddFile(L0 Files): cumulative 0, interval 0 2023-11-30T22:54:06.000 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:54:05 smithi038 conmon[81956]: AddFile(Keys): cumulative 0, interval 0 2023-11-30T22:54:06.000 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:54:05 smithi038 conmon[81956]: Cumulative compaction: 0.00 GB write, 17.10 MB/s write, 0.00 GB read, 0.00 MB/s read, 0.0 seconds 2023-11-30T22:54:06.000 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:54:05 smithi038 conmon[81956]: Interval compaction: 0.00 GB write, 0.00 MB/s write, 0.00 GB read, 0.00 MB/s read, 0.0 seconds 2023-11-30T22:54:06.000 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:54:05 smithi038 conmon[81956]: 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-11-30T22:54:06.000 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:54:05 smithi038 conmon[81956]: 2023-11-30T22:54:06.000 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:54:05 smithi038 conmon[81956]: ** File Read Latency Histogram By Level [default] ** 2023-11-30T22:54:06.000 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:54:05 smithi038 conmon[81956]: 2023-11-30T22:54:06.000 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:54:05 smithi038 conmon[81956]: debug 2023-11-30T22:54:05.701+0000 7fd5042cf880 0 starting mon.smithi038 rank 0 at public addrs [v2:172.21.15.38:3300/0,v1:172.21.15.38:6789/0] at bind addrs [v2:172.21.15.38:3300/0,v1:172.21.15.38:6789/0] mon_data /var/lib/ceph/mon/ceph-smithi038 fsid 3faf8b00-8fd3-11ee-95a2-87774f69a715 2023-11-30T22:54:06.000 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:54:05 smithi038 conmon[81956]: debug 2023-11-30T22:54:05.702+0000 7fd5042cf880 1 mon.smithi038@-1(???) e1 preinit fsid 3faf8b00-8fd3-11ee-95a2-87774f69a715 2023-11-30T22:54:06.001 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:54:05 smithi038 conmon[81956]: debug 2023-11-30T22:54:05.703+0000 7fd5042cf880 0 mon.smithi038@-1(???).mds e1 new map 2023-11-30T22:54:06.001 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:54:05 smithi038 conmon[81956]: debug 2023-11-30T22:54:05.703+0000 7fd5042cf880 0 mon.smithi038@-1(???).mds e1 print_map 2023-11-30T22:54:06.001 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:54:05 smithi038 conmon[81956]: e1 2023-11-30T22:54:06.002 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:54:05 smithi038 conmon[81956]: enable_multiple, ever_enabled_multiple: 1,1 2023-11-30T22:54:06.002 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:54:05 smithi038 conmon[81956]: 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-11-30T22:54:06.002 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:54:05 smithi038 conmon[81956]: legacy client fscid: -1 2023-11-30T22:54:06.002 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:54:05 smithi038 conmon[81956]: 2023-11-30T22:54:06.002 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:54:05 smithi038 conmon[81956]: No filesystems configured 2023-11-30T22:54:06.002 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:54:05 smithi038 conmon[81956]: 2023-11-30T22:54:06.002 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:54:05 smithi038 conmon[81956]: debug 2023-11-30T22:54:05.703+0000 7fd5042cf880 0 mon.smithi038@-1(???).osd e1 crush map has features 3314932999778484224, adjusting msgr requires 2023-11-30T22:54:06.002 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:54:05 smithi038 conmon[81956]: debug 2023-11-30T22:54:05.703+0000 7fd5042cf880 0 mon.smithi038@-1(???).osd e1 crush map has features 288514050185494528, adjusting msgr requires 2023-11-30T22:54:06.002 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:54:05 smithi038 conmon[81956]: debug 2023-11-30T22:54:05.703+0000 7fd5042cf880 0 mon.smithi038@-1(???).osd e1 crush map has features 288514050185494528, adjusting msgr requires 2023-11-30T22:54:06.002 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:54:05 smithi038 conmon[81956]: debug 2023-11-30T22:54:05.703+0000 7fd5042cf880 0 mon.smithi038@-1(???).osd e1 crush map has features 288514050185494528, adjusting msgr requires 2023-11-30T22:54:06.002 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:54:05 smithi038 conmon[81956]: audit 2023-11-30T22:54:06.002 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:54:05 smithi038 conmon[81956]: 2023-11-30T22: 2023-11-30T22:54:06.003 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:54:05 smithi038 conmon[81956]: 54:03.711855+0000 2023-11-30T22:54:06.003 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:54:05 smithi038 conmon[81956]: mon.smithi038 (mon.0) 10 2023-11-30T22:54:06.003 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:54:05 smithi038 conmon[81956]: : audit [DBG] from='client.? 172.21.15.38:0/1182740937' entity='client.admin' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2023-11-30T22:54:06.003 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:54:05 smithi038 conmon[81956]: debug 2023-11-30T22:54:05.703+0000 7fd5042cf880 1 mon.smithi038@-1(???).paxosservice(auth 1..2) refresh upgraded, format 0 -> 3 2023-11-30T22:54:06.003 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:54:05 smithi038 conmon[81956]: cluster 2023-11-30T 2023-11-30T22:54:06.003 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:54:05 smithi038 conmon[81956]: 22:54:05.719958+0000 mon.smithi038 (mon.0) 1 : cluster [INF] mon.smithi038 is new leader, mons smithi038 in quorum (ranks 0) 2023-11-30T22:54:06.003 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:54:05 smithi038 conmon[81956]: cluster 2023-11- 2023-11-30T22:54:06.003 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:54:05 smithi038 conmon[81956]: 30T22:54:05. 2023-11-30T22:54:06.003 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:54:05 smithi038 conmon[81956]: 720000+0000 mon.smithi038 (mon.0) 2 : cluster 2023-11-30T22:54:06.003 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:54:05 smithi038 conmon[81956]: [DBG] monmap e1: 1 mons at {smithi038=[v2:172.21.15.38:3300/0,v1:172.21.15.38:6789/0]} removed_ranks: {} 2023-11-30T22:54:06.003 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:54:05 smithi038 conmon[81956]: cluster 2023-11-30T22:54:06.003 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:54:05 smithi038 conmon[81956]: 2023-11- 2023-11-30T22:54:06.004 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:54:05 smithi038 conmon[81956]: 30T22:54:05.720397+0000 2023-11-30T22:54:06.004 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:54:05 smithi038 conmon[81956]: mon.smithi038 (mon.0) 3 : cluster [DBG] 2023-11-30T22:54:06.004 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:54:05 smithi038 conmon[81956]: fsmap 2023-11-30T22:54:06.004 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:54:05 smithi038 conmon[81956]: cluster 2023-11- 2023-11-30T22:54:06.004 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:54:05 smithi038 conmon[81956]: 30T22:54:05.720428 2023-11-30T22:54:06.004 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:54:05 smithi038 conmon[81956]: +0000 mon.smithi038 (mon.0) 4 : cluster 2023-11-30T22:54:06.004 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:54:05 smithi038 conmon[81956]: [DBG] osdmap e1: 0 total, 0 up, 0 in 2023-11-30T22:54:06.004 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:54:05 smithi038 conmon[81956]: cluster 2023-11 2023-11-30T22:54:06.004 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:54:05 smithi038 conmon[81956]: -30T22:54:05. 2023-11-30T22:54:06.004 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:54:05 smithi038 conmon[81956]: 720835+0000 mon.smithi038 (mon.0) 5 2023-11-30T22:54:06.004 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:54:05 smithi038 conmon[81956]: : cluster [DBG] mgrmap e1: no daemons active 2023-11-30T22:54:06.005 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:54:05 smithi038 systemd[1]: Started Ceph mon.smithi038 for 3faf8b00-8fd3-11ee-95a2-87774f69a715. 2023-11-30T22:54:06.630 INFO:teuthology.orchestra.run.smithi038.stderr:Wrote config to /etc/ceph/ceph.conf 2023-11-30T22:54:06.630 INFO:teuthology.orchestra.run.smithi038.stderr:Wrote keyring to /etc/ceph/ceph.client.admin.keyring 2023-11-30T22:54:06.630 INFO:teuthology.orchestra.run.smithi038.stderr:Creating mgr... 2023-11-30T22:54:06.630 INFO:teuthology.orchestra.run.smithi038.stderr:Verifying port 9283 ... 2023-11-30T22:54:06.770 INFO:teuthology.orchestra.run.smithi038.stderr:systemctl: Failed to reset failed state of unit ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715@mgr.smithi038.ldalxq.service: Unit ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715@mgr.smithi038.ldalxq.service not loaded. 2023-11-30T22:54:06.777 INFO:teuthology.orchestra.run.smithi038.stderr:systemctl: Created symlink /etc/systemd/system/ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715.target.wants/ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715@mgr.smithi038.ldalxq.service → /etc/systemd/system/ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715@.service. 2023-11-30T22:54:07.508 INFO:teuthology.orchestra.run.smithi038.stderr:systemctl: disabled 2023-11-30T22:54:07.515 INFO:teuthology.orchestra.run.smithi038.stderr:systemctl: inactive 2023-11-30T22:54:07.518 INFO:teuthology.orchestra.run.smithi038.stderr:firewalld.service is not enabled 2023-11-30T22:54:07.518 INFO:teuthology.orchestra.run.smithi038.stderr:Not possible to enable service . firewalld.service is not available 2023-11-30T22:54:07.524 INFO:teuthology.orchestra.run.smithi038.stderr:systemctl: disabled 2023-11-30T22:54:07.531 INFO:teuthology.orchestra.run.smithi038.stderr:systemctl: inactive 2023-11-30T22:54:07.532 INFO:teuthology.orchestra.run.smithi038.stderr:firewalld.service is not enabled 2023-11-30T22:54:07.532 INFO:teuthology.orchestra.run.smithi038.stderr:Not possible to open ports <[9283]>. firewalld.service is not available 2023-11-30T22:54:07.532 INFO:teuthology.orchestra.run.smithi038.stderr:Waiting for mgr to start... 2023-11-30T22:54:07.532 INFO:teuthology.orchestra.run.smithi038.stderr:Waiting for mgr... 2023-11-30T22:54:07.623 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:54:07 smithi038 conmon[81956]: audit 2023-11-30T22:54:06.316105+0000 mon.smithi038 (mon.0) 6 : audit [INF] from='client.? 172.21.15.38:0/362186844' entity='client.admin' 2023-11-30T22:54:08.100 INFO:teuthology.orchestra.run.smithi038.stderr:/usr/bin/ceph: 2023-11-30T22:54:08.100 INFO:teuthology.orchestra.run.smithi038.stderr:/usr/bin/ceph: { 2023-11-30T22:54:08.100 INFO:teuthology.orchestra.run.smithi038.stderr:/usr/bin/ceph: "fsid": "3faf8b00-8fd3-11ee-95a2-87774f69a715", 2023-11-30T22:54:08.100 INFO:teuthology.orchestra.run.smithi038.stderr:/usr/bin/ceph: "health": { 2023-11-30T22:54:08.100 INFO:teuthology.orchestra.run.smithi038.stderr:/usr/bin/ceph: "status": "HEALTH_OK", 2023-11-30T22:54:08.100 INFO:teuthology.orchestra.run.smithi038.stderr:/usr/bin/ceph: "checks": {}, 2023-11-30T22:54:08.100 INFO:teuthology.orchestra.run.smithi038.stderr:/usr/bin/ceph: "mutes": [] 2023-11-30T22:54:08.101 INFO:teuthology.orchestra.run.smithi038.stderr:/usr/bin/ceph: }, 2023-11-30T22:54:08.101 INFO:teuthology.orchestra.run.smithi038.stderr:/usr/bin/ceph: "election_epoch": 5, 2023-11-30T22:54:08.101 INFO:teuthology.orchestra.run.smithi038.stderr:/usr/bin/ceph: "quorum": [ 2023-11-30T22:54:08.101 INFO:teuthology.orchestra.run.smithi038.stderr:/usr/bin/ceph: 0 2023-11-30T22:54:08.101 INFO:teuthology.orchestra.run.smithi038.stderr:/usr/bin/ceph: ], 2023-11-30T22:54:08.101 INFO:teuthology.orchestra.run.smithi038.stderr:/usr/bin/ceph: "quorum_names": [ 2023-11-30T22:54:08.101 INFO:teuthology.orchestra.run.smithi038.stderr:/usr/bin/ceph: "smithi038" 2023-11-30T22:54:08.101 INFO:teuthology.orchestra.run.smithi038.stderr:/usr/bin/ceph: ], 2023-11-30T22:54:08.101 INFO:teuthology.orchestra.run.smithi038.stderr:/usr/bin/ceph: "quorum_age": 2, 2023-11-30T22:54:08.101 INFO:teuthology.orchestra.run.smithi038.stderr:/usr/bin/ceph: "monmap": { 2023-11-30T22:54:08.101 INFO:teuthology.orchestra.run.smithi038.stderr:/usr/bin/ceph: "epoch": 1, 2023-11-30T22:54:08.101 INFO:teuthology.orchestra.run.smithi038.stderr:/usr/bin/ceph: "min_mon_release_name": "pacific", 2023-11-30T22:54:08.102 INFO:teuthology.orchestra.run.smithi038.stderr:/usr/bin/ceph: "num_mons": 1 2023-11-30T22:54:08.102 INFO:teuthology.orchestra.run.smithi038.stderr:/usr/bin/ceph: }, 2023-11-30T22:54:08.102 INFO:teuthology.orchestra.run.smithi038.stderr:/usr/bin/ceph: "osdmap": { 2023-11-30T22:54:08.102 INFO:teuthology.orchestra.run.smithi038.stderr:/usr/bin/ceph: "epoch": 1, 2023-11-30T22:54:08.102 INFO:teuthology.orchestra.run.smithi038.stderr:/usr/bin/ceph: "num_osds": 0, 2023-11-30T22:54:08.102 INFO:teuthology.orchestra.run.smithi038.stderr:/usr/bin/ceph: "num_up_osds": 0, 2023-11-30T22:54:08.102 INFO:teuthology.orchestra.run.smithi038.stderr:/usr/bin/ceph: "osd_up_since": 0, 2023-11-30T22:54:08.102 INFO:teuthology.orchestra.run.smithi038.stderr:/usr/bin/ceph: "num_in_osds": 0, 2023-11-30T22:54:08.102 INFO:teuthology.orchestra.run.smithi038.stderr:/usr/bin/ceph: "osd_in_since": 0, 2023-11-30T22:54:08.102 INFO:teuthology.orchestra.run.smithi038.stderr:/usr/bin/ceph: "num_remapped_pgs": 0 2023-11-30T22:54:08.102 INFO:teuthology.orchestra.run.smithi038.stderr:/usr/bin/ceph: }, 2023-11-30T22:54:08.103 INFO:teuthology.orchestra.run.smithi038.stderr:/usr/bin/ceph: "pgmap": { 2023-11-30T22:54:08.103 INFO:teuthology.orchestra.run.smithi038.stderr:/usr/bin/ceph: "pgs_by_state": [], 2023-11-30T22:54:08.103 INFO:teuthology.orchestra.run.smithi038.stderr:/usr/bin/ceph: "num_pgs": 0, 2023-11-30T22:54:08.103 INFO:teuthology.orchestra.run.smithi038.stderr:/usr/bin/ceph: "num_pools": 0, 2023-11-30T22:54:08.103 INFO:teuthology.orchestra.run.smithi038.stderr:/usr/bin/ceph: "num_objects": 0, 2023-11-30T22:54:08.103 INFO:teuthology.orchestra.run.smithi038.stderr:/usr/bin/ceph: "data_bytes": 0, 2023-11-30T22:54:08.103 INFO:teuthology.orchestra.run.smithi038.stderr:/usr/bin/ceph: "bytes_used": 0, 2023-11-30T22:54:08.103 INFO:teuthology.orchestra.run.smithi038.stderr:/usr/bin/ceph: "bytes_avail": 0, 2023-11-30T22:54:08.103 INFO:teuthology.orchestra.run.smithi038.stderr:/usr/bin/ceph: "bytes_total": 0 2023-11-30T22:54:08.103 INFO:teuthology.orchestra.run.smithi038.stderr:/usr/bin/ceph: }, 2023-11-30T22:54:08.103 INFO:teuthology.orchestra.run.smithi038.stderr:/usr/bin/ceph: "fsmap": { 2023-11-30T22:54:08.103 INFO:teuthology.orchestra.run.smithi038.stderr:/usr/bin/ceph: "epoch": 1, 2023-11-30T22:54:08.103 INFO:teuthology.orchestra.run.smithi038.stderr:/usr/bin/ceph: "by_rank": [], 2023-11-30T22:54:08.104 INFO:teuthology.orchestra.run.smithi038.stderr:/usr/bin/ceph: "up:standby": 0 2023-11-30T22:54:08.104 INFO:teuthology.orchestra.run.smithi038.stderr:/usr/bin/ceph: }, 2023-11-30T22:54:08.104 INFO:teuthology.orchestra.run.smithi038.stderr:/usr/bin/ceph: "mgrmap": { 2023-11-30T22:54:08.104 INFO:teuthology.orchestra.run.smithi038.stderr:/usr/bin/ceph: "available": false, 2023-11-30T22:54:08.104 INFO:teuthology.orchestra.run.smithi038.stderr:/usr/bin/ceph: "num_standbys": 0, 2023-11-30T22:54:08.104 INFO:teuthology.orchestra.run.smithi038.stderr:/usr/bin/ceph: "modules": [ 2023-11-30T22:54:08.104 INFO:teuthology.orchestra.run.smithi038.stderr:/usr/bin/ceph: "iostat", 2023-11-30T22:54:08.104 INFO:teuthology.orchestra.run.smithi038.stderr:/usr/bin/ceph: "nfs", 2023-11-30T22:54:08.104 INFO:teuthology.orchestra.run.smithi038.stderr:/usr/bin/ceph: "restful" 2023-11-30T22:54:08.104 INFO:teuthology.orchestra.run.smithi038.stderr:/usr/bin/ceph: ], 2023-11-30T22:54:08.104 INFO:teuthology.orchestra.run.smithi038.stderr:/usr/bin/ceph: "services": {} 2023-11-30T22:54:08.104 INFO:teuthology.orchestra.run.smithi038.stderr:/usr/bin/ceph: }, 2023-11-30T22:54:08.104 INFO:teuthology.orchestra.run.smithi038.stderr:/usr/bin/ceph: "servicemap": { 2023-11-30T22:54:08.105 INFO:teuthology.orchestra.run.smithi038.stderr:/usr/bin/ceph: "epoch": 1, 2023-11-30T22:54:08.105 INFO:teuthology.orchestra.run.smithi038.stderr:/usr/bin/ceph: "modified": "2023-11-30T22:54:01.398146+0000", 2023-11-30T22:54:08.105 INFO:teuthology.orchestra.run.smithi038.stderr:/usr/bin/ceph: "services": {} 2023-11-30T22:54:08.105 INFO:teuthology.orchestra.run.smithi038.stderr:/usr/bin/ceph: }, 2023-11-30T22:54:08.105 INFO:teuthology.orchestra.run.smithi038.stderr:/usr/bin/ceph: "progress_events": {} 2023-11-30T22:54:08.105 INFO:teuthology.orchestra.run.smithi038.stderr:/usr/bin/ceph: } 2023-11-30T22:54:08.473 INFO:teuthology.orchestra.run.smithi038.stderr:mgr not available, waiting (1/15)... 2023-11-30T22:54:08.774 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:54:08 smithi038 conmon[81956]: audit 2023-11-30T22:54:08.094484+0000 mon.smithi038 (mon.0) 7 : audit [DBG] from='client.? 172.21.15.38:0/2938533869' entity='client.admin' cmd=[{"prefix": "status", "format": "json-pretty"}]: dispatch 2023-11-30T22:54:11.049 INFO:teuthology.orchestra.run.smithi038.stderr:/usr/bin/ceph: 2023-11-30T22:54:11.049 INFO:teuthology.orchestra.run.smithi038.stderr:/usr/bin/ceph: { 2023-11-30T22:54:11.049 INFO:teuthology.orchestra.run.smithi038.stderr:/usr/bin/ceph: "fsid": "3faf8b00-8fd3-11ee-95a2-87774f69a715", 2023-11-30T22:54:11.049 INFO:teuthology.orchestra.run.smithi038.stderr:/usr/bin/ceph: "health": { 2023-11-30T22:54:11.049 INFO:teuthology.orchestra.run.smithi038.stderr:/usr/bin/ceph: "status": "HEALTH_OK", 2023-11-30T22:54:11.049 INFO:teuthology.orchestra.run.smithi038.stderr:/usr/bin/ceph: "checks": {}, 2023-11-30T22:54:11.049 INFO:teuthology.orchestra.run.smithi038.stderr:/usr/bin/ceph: "mutes": [] 2023-11-30T22:54:11.049 INFO:teuthology.orchestra.run.smithi038.stderr:/usr/bin/ceph: }, 2023-11-30T22:54:11.049 INFO:teuthology.orchestra.run.smithi038.stderr:/usr/bin/ceph: "election_epoch": 5, 2023-11-30T22:54:11.049 INFO:teuthology.orchestra.run.smithi038.stderr:/usr/bin/ceph: "quorum": [ 2023-11-30T22:54:11.049 INFO:teuthology.orchestra.run.smithi038.stderr:/usr/bin/ceph: 0 2023-11-30T22:54:11.049 INFO:teuthology.orchestra.run.smithi038.stderr:/usr/bin/ceph: ], 2023-11-30T22:54:11.050 INFO:teuthology.orchestra.run.smithi038.stderr:/usr/bin/ceph: "quorum_names": [ 2023-11-30T22:54:11.050 INFO:teuthology.orchestra.run.smithi038.stderr:/usr/bin/ceph: "smithi038" 2023-11-30T22:54:11.050 INFO:teuthology.orchestra.run.smithi038.stderr:/usr/bin/ceph: ], 2023-11-30T22:54:11.050 INFO:teuthology.orchestra.run.smithi038.stderr:/usr/bin/ceph: "quorum_age": 5, 2023-11-30T22:54:11.050 INFO:teuthology.orchestra.run.smithi038.stderr:/usr/bin/ceph: "monmap": { 2023-11-30T22:54:11.050 INFO:teuthology.orchestra.run.smithi038.stderr:/usr/bin/ceph: "epoch": 1, 2023-11-30T22:54:11.050 INFO:teuthology.orchestra.run.smithi038.stderr:/usr/bin/ceph: "min_mon_release_name": "pacific", 2023-11-30T22:54:11.050 INFO:teuthology.orchestra.run.smithi038.stderr:/usr/bin/ceph: "num_mons": 1 2023-11-30T22:54:11.050 INFO:teuthology.orchestra.run.smithi038.stderr:/usr/bin/ceph: }, 2023-11-30T22:54:11.050 INFO:teuthology.orchestra.run.smithi038.stderr:/usr/bin/ceph: "osdmap": { 2023-11-30T22:54:11.050 INFO:teuthology.orchestra.run.smithi038.stderr:/usr/bin/ceph: "epoch": 1, 2023-11-30T22:54:11.050 INFO:teuthology.orchestra.run.smithi038.stderr:/usr/bin/ceph: "num_osds": 0, 2023-11-30T22:54:11.050 INFO:teuthology.orchestra.run.smithi038.stderr:/usr/bin/ceph: "num_up_osds": 0, 2023-11-30T22:54:11.050 INFO:teuthology.orchestra.run.smithi038.stderr:/usr/bin/ceph: "osd_up_since": 0, 2023-11-30T22:54:11.051 INFO:teuthology.orchestra.run.smithi038.stderr:/usr/bin/ceph: "num_in_osds": 0, 2023-11-30T22:54:11.051 INFO:teuthology.orchestra.run.smithi038.stderr:/usr/bin/ceph: "osd_in_since": 0, 2023-11-30T22:54:11.051 INFO:teuthology.orchestra.run.smithi038.stderr:/usr/bin/ceph: "num_remapped_pgs": 0 2023-11-30T22:54:11.051 INFO:teuthology.orchestra.run.smithi038.stderr:/usr/bin/ceph: }, 2023-11-30T22:54:11.051 INFO:teuthology.orchestra.run.smithi038.stderr:/usr/bin/ceph: "pgmap": { 2023-11-30T22:54:11.051 INFO:teuthology.orchestra.run.smithi038.stderr:/usr/bin/ceph: "pgs_by_state": [], 2023-11-30T22:54:11.051 INFO:teuthology.orchestra.run.smithi038.stderr:/usr/bin/ceph: "num_pgs": 0, 2023-11-30T22:54:11.051 INFO:teuthology.orchestra.run.smithi038.stderr:/usr/bin/ceph: "num_pools": 0, 2023-11-30T22:54:11.051 INFO:teuthology.orchestra.run.smithi038.stderr:/usr/bin/ceph: "num_objects": 0, 2023-11-30T22:54:11.051 INFO:teuthology.orchestra.run.smithi038.stderr:/usr/bin/ceph: "data_bytes": 0, 2023-11-30T22:54:11.051 INFO:teuthology.orchestra.run.smithi038.stderr:/usr/bin/ceph: "bytes_used": 0, 2023-11-30T22:54:11.051 INFO:teuthology.orchestra.run.smithi038.stderr:/usr/bin/ceph: "bytes_avail": 0, 2023-11-30T22:54:11.051 INFO:teuthology.orchestra.run.smithi038.stderr:/usr/bin/ceph: "bytes_total": 0 2023-11-30T22:54:11.051 INFO:teuthology.orchestra.run.smithi038.stderr:/usr/bin/ceph: }, 2023-11-30T22:54:11.052 INFO:teuthology.orchestra.run.smithi038.stderr:/usr/bin/ceph: "fsmap": { 2023-11-30T22:54:11.052 INFO:teuthology.orchestra.run.smithi038.stderr:/usr/bin/ceph: "epoch": 1, 2023-11-30T22:54:11.052 INFO:teuthology.orchestra.run.smithi038.stderr:/usr/bin/ceph: "by_rank": [], 2023-11-30T22:54:11.052 INFO:teuthology.orchestra.run.smithi038.stderr:/usr/bin/ceph: "up:standby": 0 2023-11-30T22:54:11.052 INFO:teuthology.orchestra.run.smithi038.stderr:/usr/bin/ceph: }, 2023-11-30T22:54:11.052 INFO:teuthology.orchestra.run.smithi038.stderr:/usr/bin/ceph: "mgrmap": { 2023-11-30T22:54:11.052 INFO:teuthology.orchestra.run.smithi038.stderr:/usr/bin/ceph: "available": false, 2023-11-30T22:54:11.052 INFO:teuthology.orchestra.run.smithi038.stderr:/usr/bin/ceph: "num_standbys": 0, 2023-11-30T22:54:11.052 INFO:teuthology.orchestra.run.smithi038.stderr:/usr/bin/ceph: "modules": [ 2023-11-30T22:54:11.052 INFO:teuthology.orchestra.run.smithi038.stderr:/usr/bin/ceph: "iostat", 2023-11-30T22:54:11.052 INFO:teuthology.orchestra.run.smithi038.stderr:/usr/bin/ceph: "nfs", 2023-11-30T22:54:11.052 INFO:teuthology.orchestra.run.smithi038.stderr:/usr/bin/ceph: "restful" 2023-11-30T22:54:11.052 INFO:teuthology.orchestra.run.smithi038.stderr:/usr/bin/ceph: ], 2023-11-30T22:54:11.052 INFO:teuthology.orchestra.run.smithi038.stderr:/usr/bin/ceph: "services": {} 2023-11-30T22:54:11.053 INFO:teuthology.orchestra.run.smithi038.stderr:/usr/bin/ceph: }, 2023-11-30T22:54:11.053 INFO:teuthology.orchestra.run.smithi038.stderr:/usr/bin/ceph: "servicemap": { 2023-11-30T22:54:11.053 INFO:teuthology.orchestra.run.smithi038.stderr:/usr/bin/ceph: "epoch": 1, 2023-11-30T22:54:11.053 INFO:teuthology.orchestra.run.smithi038.stderr:/usr/bin/ceph: "modified": "2023-11-30T22:54:01.398146+0000", 2023-11-30T22:54:11.053 INFO:teuthology.orchestra.run.smithi038.stderr:/usr/bin/ceph: "services": {} 2023-11-30T22:54:11.053 INFO:teuthology.orchestra.run.smithi038.stderr:/usr/bin/ceph: }, 2023-11-30T22:54:11.053 INFO:teuthology.orchestra.run.smithi038.stderr:/usr/bin/ceph: "progress_events": {} 2023-11-30T22:54:11.053 INFO:teuthology.orchestra.run.smithi038.stderr:/usr/bin/ceph: } 2023-11-30T22:54:11.412 INFO:teuthology.orchestra.run.smithi038.stderr:mgr not available, waiting (2/15)... 2023-11-30T22:54:11.999 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:54:11 smithi038 conmon[81956]: audit 2023-11-30T22:54:11.041782+0000 mon.smithi038 (mon.0) 8 : audit [DBG] from='client.? 172.21.15.38:0/4232075371' entity='client.admin' cmd=[{"prefix": "status", "format": "json-pretty"}]: dispatch 2023-11-30T22:54:13.274 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:54:13 smithi038 conmon[81956]: cluster 2023-11-30T22:54:13.002296+0000 2023-11-30T22:54:13.275 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:54:13 smithi038 conmon[81956]: mon.smithi038 (mon.0) 9 : cluster [INF] Activating manager daemon smithi038.ldalxq 2023-11-30T22:54:13.275 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:54:13 smithi038 conmon[81956]: cluster 2023-11-30T22:54:13.006632+0000 mon.smithi038 2023-11-30T22:54:13.275 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:54:13 smithi038 conmon[81956]: (mon.0) 10 : cluster [DBG] mgrmap e2: smithi038.ldalxq(active, starting, since 0.00442352s) 2023-11-30T22:54:13.275 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:54:13 smithi038 conmon[81956]: audit 2023-11- 2023-11-30T22:54:13.275 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:54:13 smithi038 conmon[81956]: 30T22:54:13. 2023-11-30T22:54:13.275 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:54:13 smithi038 conmon[81956]: 007550+0000 mon.smithi038 (mon.0) 11 2023-11-30T22:54:13.275 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:54:13 smithi038 conmon[81956]: : audit [DBG] from='mgr.14100 172.21.15.38:0/1202751095' entity='mgr.smithi038.ldalxq' cmd=[{"prefix": "mds metadata"}]: dispatch 2023-11-30T22:54:13.275 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:54:13 smithi038 conmon[81956]: audit 2023 2023-11-30T22:54:13.275 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:54:13 smithi038 conmon[81956]: -11-30T22:54: 2023-11-30T22:54:13.275 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:54:13 smithi038 conmon[81956]: 13.007777+0000 mon.smithi038 (mon.0) 2023-11-30T22:54:13.275 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:54:13 smithi038 conmon[81956]: 12 : audit [DBG] from='mgr.14100 172.21.15.38:0/1202751095' entity='mgr.smithi038.ldalxq' cmd=[{"prefix": "osd metadata"}]: dispatch 2023-11-30T22:54:13.275 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:54:13 smithi038 conmon[81956]: audit 2023-11-30T22:54:13.276 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:54:13 smithi038 conmon[81956]: 2023-11-30T22:54 2023-11-30T22:54:13.276 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:54:13 smithi038 conmon[81956]: :13.007994+0000 mon.smithi038 (mon. 2023-11-30T22:54:13.276 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:54:13 smithi038 conmon[81956]: 0) 13 : audit [DBG] from='mgr.14100 172.21.15.38:0/1202751095' entity='mgr.smithi038.ldalxq' cmd=[{"prefix": "mon metadata"}]: dispatch 2023-11-30T22:54:13.276 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:54:13 smithi038 conmon[81956]: audit 2023-11-30 2023-11-30T22:54:13.276 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:54:13 smithi038 conmon[81956]: T22:54:13.008190 2023-11-30T22:54:13.276 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:54:13 smithi038 conmon[81956]: +0000 mon.smithi038 (mon.0) 14 2023-11-30T22:54:13.276 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:54:13 smithi038 conmon[81956]: : audit [DBG] from='mgr.14100 172.21.15.38:0/1202751095' entity='mgr.smithi038.ldalxq' cmd=[{"prefix": "mon metadata", "id": "smithi038"}]: dispatch 2023-11-30T22:54:13.276 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:54:13 smithi038 conmon[81956]: audit 2023- 2023-11-30T22:54:13.276 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:54:13 smithi038 conmon[81956]: 11-30T22:54:13. 2023-11-30T22:54:13.276 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:54:13 smithi038 conmon[81956]: 008375+0000 mon.smithi038 (mon.0) 2023-11-30T22:54:13.276 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:54:13 smithi038 conmon[81956]: 15 : audit [DBG] from='mgr.14100 172.21.15.38:0/1202751095' entity='mgr.smithi038.ldalxq' cmd=[{"prefix": "mgr metadata", "who": "smithi038.ldalxq", "id": "smithi038.ldalxq"}]: dispatch 2023-11-30T22:54:13.276 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:54:13 smithi038 conmon[81956]: cluster 2023-11-30T22:54:13.277 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:54:13 smithi038 conmon[81956]: 2023-11-30T22: 2023-11-30T22:54:13.277 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:54:13 smithi038 conmon[81956]: 54:13.021613+0000 mon.smithi038 (mon 2023-11-30T22:54:13.277 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:54:13 smithi038 conmon[81956]: .0) 16 : cluster [INF] Manager daemon smithi038.ldalxq is now available 2023-11-30T22:54:13.277 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:54:13 smithi038 conmon[81956]: audit 2023-11-30T22:54:13.277 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:54:13 smithi038 conmon[81956]: 2023-11 2023-11-30T22:54:13.277 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:54:13 smithi038 conmon[81956]: -30T22:54:13 2023-11-30T22:54:13.277 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:54:13 smithi038 conmon[81956]: .032888+0000 mon.smithi038 (mon.0) 17 2023-11-30T22:54:13.277 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:54:13 smithi038 conmon[81956]: : audit [INF] from='mgr.14100 172.21.15.38:0/1202751095' entity='mgr.smithi038.ldalxq' 2023-11-30T22:54:13.277 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:54:13 smithi038 conmon[81956]: audit 2023-11-30T22:54:13.277 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:54:13 smithi038 conmon[81956]: 2023-11-30T22:54 2023-11-30T22:54:13.277 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:54:13 smithi038 conmon[81956]: :13.036789+0000 mon.smithi038 (mon.0) 18 : audit 2023-11-30T22:54:13.278 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:54:13 smithi038 conmon[81956]: [INF] from='mgr.14100 172.21.15.38:0/1202751095' entity='mgr.smithi038.ldalxq' cmd=[{"prefix":"config rm","who":"mgr","name":"mgr/rbd_support/smithi038.ldalxq/mirror_snapshot_schedule"}]: dispatch 2023-11-30T22:54:13.278 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:54:13 smithi038 conmon[81956]: audit 2023-11- 2023-11-30T22:54:13.278 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:54:13 smithi038 conmon[81956]: 30T22:54:13. 2023-11-30T22:54:13.278 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:54:13 smithi038 conmon[81956]: 038725+0000 mon.smithi038 (mon.0) 19 2023-11-30T22:54:13.278 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:54:13 smithi038 conmon[81956]: : audit [INF] from='mgr.14100 172.21.15.38:0/1202751095' entity='mgr.smithi038.ldalxq' cmd=[{"prefix":"config rm","who":"mgr","name":"mgr/rbd_support/smithi038.ldalxq/trash_purge_schedule"}]: dispatch 2023-11-30T22:54:13.278 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:54:13 smithi038 conmon[81956]: audit 2023 2023-11-30T22:54:13.278 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:54:13 smithi038 conmon[81956]: -11-30T22:54 2023-11-30T22:54:13.278 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:54:13 smithi038 conmon[81956]: :13.042550+0000 mon.smithi038 (mon.0) 2023-11-30T22:54:13.278 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:54:13 smithi038 conmon[81956]: 20 : audit [INF] from='mgr.14100 172.21.15.38:0/1202751095' entity='mgr.smithi038.ldalxq' 2023-11-30T22:54:13.278 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:54:13 smithi038 conmon[81956]: audit 2023-11-30T22:54:13.278 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:54:13 smithi038 conmon[81956]: 2023-11 2023-11-30T22:54:13.278 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:54:13 smithi038 conmon[81956]: -30T22:54:13.044514+0000 2023-11-30T22:54:13.279 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:54:13 smithi038 conmon[81956]: mon.smithi038 (mon.0) 21 : audit [INF] 2023-11-30T22:54:13.279 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:54:13 smithi038 conmon[81956]: from='mgr.14100 172.21.15.38:0/1202751095' entity='mgr.smithi038.ldalxq' 2023-11-30T22:54:13.924 INFO:teuthology.orchestra.run.smithi038.stderr:/usr/bin/ceph: 2023-11-30T22:54:13.924 INFO:teuthology.orchestra.run.smithi038.stderr:/usr/bin/ceph: { 2023-11-30T22:54:13.924 INFO:teuthology.orchestra.run.smithi038.stderr:/usr/bin/ceph: "fsid": "3faf8b00-8fd3-11ee-95a2-87774f69a715", 2023-11-30T22:54:13.924 INFO:teuthology.orchestra.run.smithi038.stderr:/usr/bin/ceph: "health": { 2023-11-30T22:54:13.924 INFO:teuthology.orchestra.run.smithi038.stderr:/usr/bin/ceph: "status": "HEALTH_OK", 2023-11-30T22:54:13.924 INFO:teuthology.orchestra.run.smithi038.stderr:/usr/bin/ceph: "checks": {}, 2023-11-30T22:54:13.924 INFO:teuthology.orchestra.run.smithi038.stderr:/usr/bin/ceph: "mutes": [] 2023-11-30T22:54:13.924 INFO:teuthology.orchestra.run.smithi038.stderr:/usr/bin/ceph: }, 2023-11-30T22:54:13.924 INFO:teuthology.orchestra.run.smithi038.stderr:/usr/bin/ceph: "election_epoch": 5, 2023-11-30T22:54:13.925 INFO:teuthology.orchestra.run.smithi038.stderr:/usr/bin/ceph: "quorum": [ 2023-11-30T22:54:13.925 INFO:teuthology.orchestra.run.smithi038.stderr:/usr/bin/ceph: 0 2023-11-30T22:54:13.925 INFO:teuthology.orchestra.run.smithi038.stderr:/usr/bin/ceph: ], 2023-11-30T22:54:13.925 INFO:teuthology.orchestra.run.smithi038.stderr:/usr/bin/ceph: "quorum_names": [ 2023-11-30T22:54:13.925 INFO:teuthology.orchestra.run.smithi038.stderr:/usr/bin/ceph: "smithi038" 2023-11-30T22:54:13.925 INFO:teuthology.orchestra.run.smithi038.stderr:/usr/bin/ceph: ], 2023-11-30T22:54:13.925 INFO:teuthology.orchestra.run.smithi038.stderr:/usr/bin/ceph: "quorum_age": 8, 2023-11-30T22:54:13.925 INFO:teuthology.orchestra.run.smithi038.stderr:/usr/bin/ceph: "monmap": { 2023-11-30T22:54:13.925 INFO:teuthology.orchestra.run.smithi038.stderr:/usr/bin/ceph: "epoch": 1, 2023-11-30T22:54:13.925 INFO:teuthology.orchestra.run.smithi038.stderr:/usr/bin/ceph: "min_mon_release_name": "pacific", 2023-11-30T22:54:13.925 INFO:teuthology.orchestra.run.smithi038.stderr:/usr/bin/ceph: "num_mons": 1 2023-11-30T22:54:13.925 INFO:teuthology.orchestra.run.smithi038.stderr:/usr/bin/ceph: }, 2023-11-30T22:54:13.926 INFO:teuthology.orchestra.run.smithi038.stderr:/usr/bin/ceph: "osdmap": { 2023-11-30T22:54:13.926 INFO:teuthology.orchestra.run.smithi038.stderr:/usr/bin/ceph: "epoch": 1, 2023-11-30T22:54:13.926 INFO:teuthology.orchestra.run.smithi038.stderr:/usr/bin/ceph: "num_osds": 0, 2023-11-30T22:54:13.926 INFO:teuthology.orchestra.run.smithi038.stderr:/usr/bin/ceph: "num_up_osds": 0, 2023-11-30T22:54:13.926 INFO:teuthology.orchestra.run.smithi038.stderr:/usr/bin/ceph: "osd_up_since": 0, 2023-11-30T22:54:13.926 INFO:teuthology.orchestra.run.smithi038.stderr:/usr/bin/ceph: "num_in_osds": 0, 2023-11-30T22:54:13.926 INFO:teuthology.orchestra.run.smithi038.stderr:/usr/bin/ceph: "osd_in_since": 0, 2023-11-30T22:54:13.926 INFO:teuthology.orchestra.run.smithi038.stderr:/usr/bin/ceph: "num_remapped_pgs": 0 2023-11-30T22:54:13.926 INFO:teuthology.orchestra.run.smithi038.stderr:/usr/bin/ceph: }, 2023-11-30T22:54:13.926 INFO:teuthology.orchestra.run.smithi038.stderr:/usr/bin/ceph: "pgmap": { 2023-11-30T22:54:13.926 INFO:teuthology.orchestra.run.smithi038.stderr:/usr/bin/ceph: "pgs_by_state": [], 2023-11-30T22:54:13.926 INFO:teuthology.orchestra.run.smithi038.stderr:/usr/bin/ceph: "num_pgs": 0, 2023-11-30T22:54:13.927 INFO:teuthology.orchestra.run.smithi038.stderr:/usr/bin/ceph: "num_pools": 0, 2023-11-30T22:54:13.927 INFO:teuthology.orchestra.run.smithi038.stderr:/usr/bin/ceph: "num_objects": 0, 2023-11-30T22:54:13.927 INFO:teuthology.orchestra.run.smithi038.stderr:/usr/bin/ceph: "data_bytes": 0, 2023-11-30T22:54:13.927 INFO:teuthology.orchestra.run.smithi038.stderr:/usr/bin/ceph: "bytes_used": 0, 2023-11-30T22:54:13.927 INFO:teuthology.orchestra.run.smithi038.stderr:/usr/bin/ceph: "bytes_avail": 0, 2023-11-30T22:54:13.927 INFO:teuthology.orchestra.run.smithi038.stderr:/usr/bin/ceph: "bytes_total": 0 2023-11-30T22:54:13.927 INFO:teuthology.orchestra.run.smithi038.stderr:/usr/bin/ceph: }, 2023-11-30T22:54:13.927 INFO:teuthology.orchestra.run.smithi038.stderr:/usr/bin/ceph: "fsmap": { 2023-11-30T22:54:13.927 INFO:teuthology.orchestra.run.smithi038.stderr:/usr/bin/ceph: "epoch": 1, 2023-11-30T22:54:13.927 INFO:teuthology.orchestra.run.smithi038.stderr:/usr/bin/ceph: "by_rank": [], 2023-11-30T22:54:13.927 INFO:teuthology.orchestra.run.smithi038.stderr:/usr/bin/ceph: "up:standby": 0 2023-11-30T22:54:13.927 INFO:teuthology.orchestra.run.smithi038.stderr:/usr/bin/ceph: }, 2023-11-30T22:54:13.927 INFO:teuthology.orchestra.run.smithi038.stderr:/usr/bin/ceph: "mgrmap": { 2023-11-30T22:54:13.928 INFO:teuthology.orchestra.run.smithi038.stderr:/usr/bin/ceph: "available": false, 2023-11-30T22:54:13.928 INFO:teuthology.orchestra.run.smithi038.stderr:/usr/bin/ceph: "num_standbys": 0, 2023-11-30T22:54:13.928 INFO:teuthology.orchestra.run.smithi038.stderr:/usr/bin/ceph: "modules": [ 2023-11-30T22:54:13.928 INFO:teuthology.orchestra.run.smithi038.stderr:/usr/bin/ceph: "iostat", 2023-11-30T22:54:13.928 INFO:teuthology.orchestra.run.smithi038.stderr:/usr/bin/ceph: "nfs", 2023-11-30T22:54:13.928 INFO:teuthology.orchestra.run.smithi038.stderr:/usr/bin/ceph: "restful" 2023-11-30T22:54:13.928 INFO:teuthology.orchestra.run.smithi038.stderr:/usr/bin/ceph: ], 2023-11-30T22:54:13.928 INFO:teuthology.orchestra.run.smithi038.stderr:/usr/bin/ceph: "services": {} 2023-11-30T22:54:13.928 INFO:teuthology.orchestra.run.smithi038.stderr:/usr/bin/ceph: }, 2023-11-30T22:54:13.928 INFO:teuthology.orchestra.run.smithi038.stderr:/usr/bin/ceph: "servicemap": { 2023-11-30T22:54:13.928 INFO:teuthology.orchestra.run.smithi038.stderr:/usr/bin/ceph: "epoch": 1, 2023-11-30T22:54:13.928 INFO:teuthology.orchestra.run.smithi038.stderr:/usr/bin/ceph: "modified": "2023-11-30T22:54:01.398146+0000", 2023-11-30T22:54:13.928 INFO:teuthology.orchestra.run.smithi038.stderr:/usr/bin/ceph: "services": {} 2023-11-30T22:54:13.929 INFO:teuthology.orchestra.run.smithi038.stderr:/usr/bin/ceph: }, 2023-11-30T22:54:13.929 INFO:teuthology.orchestra.run.smithi038.stderr:/usr/bin/ceph: "progress_events": {} 2023-11-30T22:54:13.929 INFO:teuthology.orchestra.run.smithi038.stderr:/usr/bin/ceph: } 2023-11-30T22:54:14.252 INFO:teuthology.orchestra.run.smithi038.stderr:mgr not available, waiting (3/15)... 2023-11-30T22:54:14.274 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:54:14 smithi038 conmon[81956]: audit 2023-11-30T22:54:13.917970+0000 2023-11-30T22:54:14.274 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:54:14 smithi038 conmon[81956]: mon.smithi038 (mon.0) 22 : audit [DBG] from='client.? 172.21.15.38:0/1257156537' entity='client.admin' cmd=[{"prefix": "status", "format": "json-pretty"}]: dispatch 2023-11-30T22:54:14.274 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:54:14 smithi038 conmon[81956]: cluster 2023-11-30T22:54:14.013653+0000 mon.smithi038 (mon.0) 23 : cluster [DBG] mgrmap e3: smithi038.ldalxq(active, since 1.01145s) 2023-11-30T22:54:16.524 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:54:16 smithi038 conmon[81956]: cluster 2023-11-30T22:54:15.061971+0000 mon.smithi038 (mon.0) 24 : cluster [DBG] mgrmap e4: smithi038.ldalxq(active, since 2s) 2023-11-30T22:54:19.363 INFO:teuthology.orchestra.run.smithi038.stderr:/usr/bin/ceph: 2023-11-30T22:54:19.363 INFO:teuthology.orchestra.run.smithi038.stderr:/usr/bin/ceph: { 2023-11-30T22:54:19.363 INFO:teuthology.orchestra.run.smithi038.stderr:/usr/bin/ceph: "fsid": "3faf8b00-8fd3-11ee-95a2-87774f69a715", 2023-11-30T22:54:19.363 INFO:teuthology.orchestra.run.smithi038.stderr:/usr/bin/ceph: "health": { 2023-11-30T22:54:19.364 INFO:teuthology.orchestra.run.smithi038.stderr:/usr/bin/ceph: "status": "HEALTH_OK", 2023-11-30T22:54:19.364 INFO:teuthology.orchestra.run.smithi038.stderr:/usr/bin/ceph: "checks": {}, 2023-11-30T22:54:19.364 INFO:teuthology.orchestra.run.smithi038.stderr:/usr/bin/ceph: "mutes": [] 2023-11-30T22:54:19.364 INFO:teuthology.orchestra.run.smithi038.stderr:/usr/bin/ceph: }, 2023-11-30T22:54:19.364 INFO:teuthology.orchestra.run.smithi038.stderr:/usr/bin/ceph: "election_epoch": 5, 2023-11-30T22:54:19.364 INFO:teuthology.orchestra.run.smithi038.stderr:/usr/bin/ceph: "quorum": [ 2023-11-30T22:54:19.364 INFO:teuthology.orchestra.run.smithi038.stderr:/usr/bin/ceph: 0 2023-11-30T22:54:19.364 INFO:teuthology.orchestra.run.smithi038.stderr:/usr/bin/ceph: ], 2023-11-30T22:54:19.364 INFO:teuthology.orchestra.run.smithi038.stderr:/usr/bin/ceph: "quorum_names": [ 2023-11-30T22:54:19.364 INFO:teuthology.orchestra.run.smithi038.stderr:/usr/bin/ceph: "smithi038" 2023-11-30T22:54:19.364 INFO:teuthology.orchestra.run.smithi038.stderr:/usr/bin/ceph: ], 2023-11-30T22:54:19.364 INFO:teuthology.orchestra.run.smithi038.stderr:/usr/bin/ceph: "quorum_age": 13, 2023-11-30T22:54:19.364 INFO:teuthology.orchestra.run.smithi038.stderr:/usr/bin/ceph: "monmap": { 2023-11-30T22:54:19.365 INFO:teuthology.orchestra.run.smithi038.stderr:/usr/bin/ceph: "epoch": 1, 2023-11-30T22:54:19.365 INFO:teuthology.orchestra.run.smithi038.stderr:/usr/bin/ceph: "min_mon_release_name": "pacific", 2023-11-30T22:54:19.365 INFO:teuthology.orchestra.run.smithi038.stderr:/usr/bin/ceph: "num_mons": 1 2023-11-30T22:54:19.365 INFO:teuthology.orchestra.run.smithi038.stderr:/usr/bin/ceph: }, 2023-11-30T22:54:19.365 INFO:teuthology.orchestra.run.smithi038.stderr:/usr/bin/ceph: "osdmap": { 2023-11-30T22:54:19.365 INFO:teuthology.orchestra.run.smithi038.stderr:/usr/bin/ceph: "epoch": 1, 2023-11-30T22:54:19.365 INFO:teuthology.orchestra.run.smithi038.stderr:/usr/bin/ceph: "num_osds": 0, 2023-11-30T22:54:19.365 INFO:teuthology.orchestra.run.smithi038.stderr:/usr/bin/ceph: "num_up_osds": 0, 2023-11-30T22:54:19.365 INFO:teuthology.orchestra.run.smithi038.stderr:/usr/bin/ceph: "osd_up_since": 0, 2023-11-30T22:54:19.365 INFO:teuthology.orchestra.run.smithi038.stderr:/usr/bin/ceph: "num_in_osds": 0, 2023-11-30T22:54:19.369 INFO:teuthology.orchestra.run.smithi038.stderr:/usr/bin/ceph: "osd_in_since": 0, 2023-11-30T22:54:19.369 INFO:teuthology.orchestra.run.smithi038.stderr:/usr/bin/ceph: "num_remapped_pgs": 0 2023-11-30T22:54:19.369 INFO:teuthology.orchestra.run.smithi038.stderr:/usr/bin/ceph: }, 2023-11-30T22:54:19.369 INFO:teuthology.orchestra.run.smithi038.stderr:/usr/bin/ceph: "pgmap": { 2023-11-30T22:54:19.369 INFO:teuthology.orchestra.run.smithi038.stderr:/usr/bin/ceph: "pgs_by_state": [], 2023-11-30T22:54:19.369 INFO:teuthology.orchestra.run.smithi038.stderr:/usr/bin/ceph: "num_pgs": 0, 2023-11-30T22:54:19.369 INFO:teuthology.orchestra.run.smithi038.stderr:/usr/bin/ceph: "num_pools": 0, 2023-11-30T22:54:19.369 INFO:teuthology.orchestra.run.smithi038.stderr:/usr/bin/ceph: "num_objects": 0, 2023-11-30T22:54:19.369 INFO:teuthology.orchestra.run.smithi038.stderr:/usr/bin/ceph: "data_bytes": 0, 2023-11-30T22:54:19.370 INFO:teuthology.orchestra.run.smithi038.stderr:/usr/bin/ceph: "bytes_used": 0, 2023-11-30T22:54:19.370 INFO:teuthology.orchestra.run.smithi038.stderr:/usr/bin/ceph: "bytes_avail": 0, 2023-11-30T22:54:19.370 INFO:teuthology.orchestra.run.smithi038.stderr:/usr/bin/ceph: "bytes_total": 0 2023-11-30T22:54:19.370 INFO:teuthology.orchestra.run.smithi038.stderr:/usr/bin/ceph: }, 2023-11-30T22:54:19.370 INFO:teuthology.orchestra.run.smithi038.stderr:/usr/bin/ceph: "fsmap": { 2023-11-30T22:54:19.370 INFO:teuthology.orchestra.run.smithi038.stderr:/usr/bin/ceph: "epoch": 1, 2023-11-30T22:54:19.370 INFO:teuthology.orchestra.run.smithi038.stderr:/usr/bin/ceph: "by_rank": [], 2023-11-30T22:54:19.370 INFO:teuthology.orchestra.run.smithi038.stderr:/usr/bin/ceph: "up:standby": 0 2023-11-30T22:54:19.370 INFO:teuthology.orchestra.run.smithi038.stderr:/usr/bin/ceph: }, 2023-11-30T22:54:19.370 INFO:teuthology.orchestra.run.smithi038.stderr:/usr/bin/ceph: "mgrmap": { 2023-11-30T22:54:19.370 INFO:teuthology.orchestra.run.smithi038.stderr:/usr/bin/ceph: "available": true, 2023-11-30T22:54:19.370 INFO:teuthology.orchestra.run.smithi038.stderr:/usr/bin/ceph: "num_standbys": 0, 2023-11-30T22:54:19.371 INFO:teuthology.orchestra.run.smithi038.stderr:/usr/bin/ceph: "modules": [ 2023-11-30T22:54:19.371 INFO:teuthology.orchestra.run.smithi038.stderr:/usr/bin/ceph: "iostat", 2023-11-30T22:54:19.371 INFO:teuthology.orchestra.run.smithi038.stderr:/usr/bin/ceph: "nfs", 2023-11-30T22:54:19.371 INFO:teuthology.orchestra.run.smithi038.stderr:/usr/bin/ceph: "restful" 2023-11-30T22:54:19.371 INFO:teuthology.orchestra.run.smithi038.stderr:/usr/bin/ceph: ], 2023-11-30T22:54:19.371 INFO:teuthology.orchestra.run.smithi038.stderr:/usr/bin/ceph: "services": {} 2023-11-30T22:54:19.371 INFO:teuthology.orchestra.run.smithi038.stderr:/usr/bin/ceph: }, 2023-11-30T22:54:19.371 INFO:teuthology.orchestra.run.smithi038.stderr:/usr/bin/ceph: "servicemap": { 2023-11-30T22:54:19.371 INFO:teuthology.orchestra.run.smithi038.stderr:/usr/bin/ceph: "epoch": 1, 2023-11-30T22:54:19.371 INFO:teuthology.orchestra.run.smithi038.stderr:/usr/bin/ceph: "modified": "2023-11-30T22:54:01.398146+0000", 2023-11-30T22:54:19.372 INFO:teuthology.orchestra.run.smithi038.stderr:/usr/bin/ceph: "services": {} 2023-11-30T22:54:19.372 INFO:teuthology.orchestra.run.smithi038.stderr:/usr/bin/ceph: }, 2023-11-30T22:54:19.372 INFO:teuthology.orchestra.run.smithi038.stderr:/usr/bin/ceph: "progress_events": {} 2023-11-30T22:54:19.372 INFO:teuthology.orchestra.run.smithi038.stderr:/usr/bin/ceph: } 2023-11-30T22:54:19.774 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:54:19 smithi038 conmon[81956]: audit 2023-11-30T22:54:19.360363+0000 mon.smithi038 (mon.0) 25 : audit [DBG] from='client.? 172.21.15.38:0/108943866' entity='client.admin' cmd=[{"prefix": "status", "format": "json-pretty"}]: dispatch 2023-11-30T22:54:22.204 INFO:teuthology.orchestra.run.smithi038.stderr:mgr is available 2023-11-30T22:54:24.342 INFO:teuthology.orchestra.run.smithi038.stderr:/usr/bin/ceph: 2023-11-30T22:54:24.342 INFO:teuthology.orchestra.run.smithi038.stderr:/usr/bin/ceph: [global] 2023-11-30T22:54:24.342 INFO:teuthology.orchestra.run.smithi038.stderr:/usr/bin/ceph: fsid = 3faf8b00-8fd3-11ee-95a2-87774f69a715 2023-11-30T22:54:24.343 INFO:teuthology.orchestra.run.smithi038.stderr:/usr/bin/ceph: mon_osd_allow_pg_remap = true 2023-11-30T22:54:24.343 INFO:teuthology.orchestra.run.smithi038.stderr:/usr/bin/ceph: mon_osd_allow_primary_affinity = true 2023-11-30T22:54:24.343 INFO:teuthology.orchestra.run.smithi038.stderr:/usr/bin/ceph: mon_warn_on_no_sortbitwise = false 2023-11-30T22:54:24.343 INFO:teuthology.orchestra.run.smithi038.stderr:/usr/bin/ceph: osd_crush_chooseleaf_type = 0 2023-11-30T22:54:24.343 INFO:teuthology.orchestra.run.smithi038.stderr:/usr/bin/ceph: 2023-11-30T22:54:24.343 INFO:teuthology.orchestra.run.smithi038.stderr:/usr/bin/ceph: [mgr] 2023-11-30T22:54:24.343 INFO:teuthology.orchestra.run.smithi038.stderr:/usr/bin/ceph: mgr/telemetry/nag = false 2023-11-30T22:54:24.343 INFO:teuthology.orchestra.run.smithi038.stderr:/usr/bin/ceph: 2023-11-30T22:54:24.343 INFO:teuthology.orchestra.run.smithi038.stderr:/usr/bin/ceph: [osd] 2023-11-30T22:54:24.343 INFO:teuthology.orchestra.run.smithi038.stderr:/usr/bin/ceph: osd_map_max_advance = 10 2023-11-30T22:54:24.343 INFO:teuthology.orchestra.run.smithi038.stderr:/usr/bin/ceph: osd_sloppy_crc = true 2023-11-30T22:54:24.774 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:54:24 smithi038 conmon[81956]: audit 2023-11-30T22:54:24.340782+0000 mon.smithi038 (mon.0) 26 : audit [INF] from='client.? 172.21.15.38:0/2243536306' entity='client.admin' cmd=[{"prefix": "config assimilate-conf"}]: dispatch 2023-11-30T22:54:25.249 INFO:teuthology.orchestra.run.smithi038.stderr:Enabling cephadm module... 2023-11-30T22:54:26.987 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:54:26 smithi038 conmon[81956]: audit 2023-11-30T22:54:25.922452+0000 mon.smithi038 (mon.0) 27 : 2023-11-30T22:54:26.987 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:54:26 smithi038 conmon[81956]: audit [INF] from='client.? 172.21.15.38:0/219348433' entity='client.admin' cmd=[{"prefix": "mgr module enable", "module": "cephadm"}]: dispatch 2023-11-30T22:54:27.790 INFO:teuthology.orchestra.run.smithi038.stderr:/usr/bin/ceph: { 2023-11-30T22:54:27.790 INFO:teuthology.orchestra.run.smithi038.stderr:/usr/bin/ceph: "epoch": 5, 2023-11-30T22:54:27.790 INFO:teuthology.orchestra.run.smithi038.stderr:/usr/bin/ceph: "available": true, 2023-11-30T22:54:27.790 INFO:teuthology.orchestra.run.smithi038.stderr:/usr/bin/ceph: "active_name": "smithi038.ldalxq", 2023-11-30T22:54:27.790 INFO:teuthology.orchestra.run.smithi038.stderr:/usr/bin/ceph: "num_standby": 0 2023-11-30T22:54:27.790 INFO:teuthology.orchestra.run.smithi038.stderr:/usr/bin/ceph: } 2023-11-30T22:54:28.024 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:54:27 smithi038 conmon[81956]: audit 2023-11-30T22:54:26.731673+0000 mon.smithi038 (mon.0) 28 : audit [INF] from='client.? 172.21.15.38:0/219348433' entity='client.admin' cmd='[{"prefix": "mgr module enable", "module": "cephadm"}]': finished 2023-11-30T22:54:28.024 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:54:27 smithi038 conmon[81956]: 2023-11-30T22:54:28.024 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:54:27 smithi038 conmon[81956]: cluster 2023-11-30T22:54:26.731739+0000 mon.smithi038 (mon.0) 29 2023-11-30T22:54:28.024 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:54:27 smithi038 conmon[81956]: : cluster [DBG] mgrmap e5: smithi038.ldalxq(active, since 13s) 2023-11-30T22:54:28.131 INFO:teuthology.orchestra.run.smithi038.stderr:Waiting for the mgr to restart... 2023-11-30T22:54:28.131 INFO:teuthology.orchestra.run.smithi038.stderr:Waiting for mgr epoch 5... 2023-11-30T22:54:29.024 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:54:28 smithi038 conmon[81956]: audit 2023-11-30T22:54:27.789091+0000 mon.smithi038 (mon.0) 30 : audit [DBG] from='client.? 172.21.15.38:0/940415833' entity='client.admin' cmd=[{"prefix": "mgr stat"}]: dispatch 2023-11-30T22:54:32.775 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:54:32 smithi038 conmon[81956]: cluster 2023-11-30T22:54:32.328888+0000 mon.smithi038 (mon.0) 31 : cluster 2023-11-30T22:54:32.775 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:54:32 smithi038 conmon[81956]: [INF] Active manager daemon smithi038.ldalxq restarted 2023-11-30T22:54:32.775 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:54:32 smithi038 conmon[81956]: cluster 2023-11-30T22:54:32.329116+0000 mon.smithi038 (mon.0) 32 : cluster [INF] Activating manager daemon smithi038.ldalxq 2023-11-30T22:54:32.775 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:54:32 smithi038 conmon[81956]: cluster 2023-11-30T22: 2023-11-30T22:54:32.776 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:54:32 smithi038 conmon[81956]: 54:32.340911+0000 mon.smithi038 (mon.0) 33 : cluster [DBG] osdmap e2: 0 total, 0 up, 0 in 2023-11-30T22:54:32.776 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:54:32 smithi038 conmon[81956]: cluster 2023- 2023-11-30T22:54:32.776 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:54:32 smithi038 conmon[81956]: 11-30T22:54:32.341003+0000 mon.smithi038 (mon.0) 34 : cluster 2023-11-30T22:54:32.776 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:54:32 smithi038 conmon[81956]: [DBG] mgrmap e6: smithi038.ldalxq(active, starting, since 0.0119667s) 2023-11-30T22:54:32.776 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:54:32 smithi038 conmon[81956]: audit 2023-11-30T22:54:32. 2023-11-30T22:54:32.776 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:54:32 smithi038 conmon[81956]: 341781+0000 mon.smithi038 (mon.0) 35 : audit [DBG] from='mgr.14118 172.21.15.38:0/2145103894' entity='mgr.smithi038.ldalxq' cmd=[{"prefix": "mon metadata", "id": "smithi038"}]: dispatch 2023-11-30T22:54:32.776 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:54:32 smithi038 conmon[81956]: 2023-11-30T22:54:32.776 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:54:32 smithi038 conmon[81956]: audit 2023-11-30T22:54:32.776 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:54:32 smithi038 conmon[81956]: 2023-11-30T22:54:32.342481+0000 mon.smithi038 (mon 2023-11-30T22:54:32.776 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:54:32 smithi038 conmon[81956]: .0) 36 : audit [DBG] from='mgr.14118 172.21.15.38:0/2145103894' entity='mgr.smithi038.ldalxq' cmd=[{"prefix": "mgr metadata", "who": "smithi038.ldalxq", "id": "smithi038.ldalxq"}]: dispatch 2023-11-30T22:54:32.776 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:54:32 smithi038 conmon[81956]: audit 2023-11-30T 2023-11-30T22:54:32.776 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:54:32 smithi038 conmon[81956]: 22:54:32.343166+0000 mon.smithi038 (mon.0) 37 2023-11-30T22:54:32.777 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:54:32 smithi038 conmon[81956]: : audit [DBG] from='mgr.14118 172.21.15.38:0/2145103894' entity='mgr.smithi038.ldalxq' cmd=[{"prefix": "mds metadata"}]: dispatch 2023-11-30T22:54:32.777 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:54:32 smithi038 conmon[81956]: audit 2023-11-30T22: 2023-11-30T22:54:32.777 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:54:32 smithi038 conmon[81956]: 54:32.343314+0000 mon.smithi038 (mon.0) 38 : 2023-11-30T22:54:32.777 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:54:32 smithi038 conmon[81956]: audit [DBG] from='mgr.14118 172.21.15.38:0/2145103894' entity='mgr.smithi038.ldalxq' cmd=[{"prefix": "osd metadata"}]: dispatch 2023-11-30T22:54:32.777 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:54:32 smithi038 conmon[81956]: audit 2023-11-30T22:54:32 2023-11-30T22:54:32.777 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:54:32 smithi038 conmon[81956]: .343449+0000 mon.smithi038 (mon.0) 39 : audit [DBG] 2023-11-30T22:54:32.777 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:54:32 smithi038 conmon[81956]: from='mgr.14118 172.21.15.38:0/2145103894' entity='mgr.smithi038.ldalxq' cmd=[{"prefix": "mon metadata"}]: dispatch 2023-11-30T22:54:32.777 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:54:32 smithi038 conmon[81956]: cluster 2023-11-30T22:54:32. 2023-11-30T22:54:32.777 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:54:32 smithi038 conmon[81956]: 356495+0000 mon.smithi038 (mon.0) 40 : cluster [INF] Manager daemon smithi038.ldalxq is now available 2023-11-30T22:54:32.777 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:54:32 smithi038 conmon[81956]: 2023-11-30T22:54:32.777 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:54:32 smithi038 conmon[81956]: audit 2023-11-30T22:54:32.777 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:54:32 smithi038 conmon[81956]: 2023-11-30T22:54:32.369317+0000 mon.smithi038 (mon.0) 41 2023-11-30T22:54:32.777 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:54:32 smithi038 conmon[81956]: : audit [INF] from='mgr.14118 172.21.15.38:0/2145103894' entity='mgr.smithi038.ldalxq' 2023-11-30T22:54:33.351 INFO:teuthology.orchestra.run.smithi038.stderr:/usr/bin/ceph: { 2023-11-30T22:54:33.351 INFO:teuthology.orchestra.run.smithi038.stderr:/usr/bin/ceph: "mgrmap_epoch": 7, 2023-11-30T22:54:33.351 INFO:teuthology.orchestra.run.smithi038.stderr:/usr/bin/ceph: "initialized": true 2023-11-30T22:54:33.351 INFO:teuthology.orchestra.run.smithi038.stderr:/usr/bin/ceph: } 2023-11-30T22:54:33.649 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:54:33 smithi038 conmon[81956]: cephadm 2023-11-30T22:54:32.366622+0000 mgr.smithi038.ldalxq 2023-11-30T22:54:33.649 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:54:33 smithi038 conmon[81956]: (mgr.14118) 1 : cephadm [INF] Found migration_current of "None". Setting to last migration. 2023-11-30T22:54:33.649 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:54:33 smithi038 conmon[81956]: audit 2023-11-30T22:54:32.459612+0000 mon.smithi038 (mon.0) 2023-11-30T22:54:33.650 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:54:33 smithi038 conmon[81956]: 42 : audit [INF] from='mgr.14118 172.21.15.38:0/2145103894' entity='mgr.smithi038.ldalxq' 2023-11-30T22:54:33.650 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:54:33 smithi038 conmon[81956]: audit 2023-11-30 2023-11-30T22:54:33.650 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:54:33 smithi038 conmon[81956]: T22:54:32.460680+0000 2023-11-30T22:54:33.650 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:54:33 smithi038 conmon[81956]: mon.smithi038 (mon.0) 43 : 2023-11-30T22:54:33.650 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:54:33 smithi038 conmon[81956]: audit [DBG] from='mgr.14118 172.21.15.38:0/2145103894' entity='mgr.smithi038.ldalxq' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2023-11-30T22:54:33.650 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:54:33 smithi038 conmon[81956]: audit 2023-11 2023-11-30T22:54:33.650 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:54:33 smithi038 conmon[81956]: -30T22:54:32.462015 2023-11-30T22:54:33.650 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:54:33 smithi038 conmon[81956]: +0000 mon.smithi038 (mon.0) 44 2023-11-30T22:54:33.650 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:54:33 smithi038 conmon[81956]: : audit [DBG] from='mgr.14118 172.21.15.38:0/2145103894' entity='mgr.smithi038.ldalxq' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2023-11-30T22:54:33.650 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:54:33 smithi038 conmon[81956]: audit 2023 2023-11-30T22:54:33.650 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:54:33 smithi038 conmon[81956]: -11-30T22:54:32.463613+0000 2023-11-30T22:54:33.651 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:54:33 smithi038 conmon[81956]: mon.smithi038 (mon.0) 45 : 2023-11-30T22:54:33.651 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:54:33 smithi038 conmon[81956]: audit [DBG] from='mgr.14118 172.21.15.38:0/2145103894' entity='mgr.smithi038.ldalxq' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2023-11-30T22:54:33.651 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:54:33 smithi038 conmon[81956]: audit 2023 2023-11-30T22:54:33.651 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:54:33 smithi038 conmon[81956]: -11-30T22:54:32. 2023-11-30T22:54:33.651 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:54:33 smithi038 conmon[81956]: 478236+0000 mon.smithi038 (mon.0) 2023-11-30T22:54:33.651 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:54:33 smithi038 conmon[81956]: 46 : audit [INF] from='mgr.14118 172.21.15.38:0/2145103894' entity='mgr.smithi038.ldalxq' cmd=[{"prefix":"config rm","who":"mgr","name":"mgr/rbd_support/smithi038.ldalxq/mirror_snapshot_schedule"}]: dispatch 2023-11-30T22:54:33.651 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:54:33 smithi038 conmon[81956]: audit 2023 2023-11-30T22:54:33.651 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:54:33 smithi038 conmon[81956]: -11-30T22:54:32. 2023-11-30T22:54:33.651 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:54:33 smithi038 conmon[81956]: 481132+0000 mon.smithi038 (mon.0) 2023-11-30T22:54:33.651 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:54:33 smithi038 conmon[81956]: 47 : audit [INF] from='mgr.14118 172.21.15.38:0/2145103894' entity='mgr.smithi038.ldalxq' cmd=[{"prefix":"config rm","who":"mgr","name":"mgr/rbd_support/smithi038.ldalxq/trash_purge_schedule"}]: dispatch 2023-11-30T22:54:33.651 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:54:33 smithi038 conmon[81956]: cluster 2023 2023-11-30T22:54:33.651 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:54:33 smithi038 conmon[81956]: -11-30T22:54:33. 2023-11-30T22:54:33.651 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:54:33 smithi038 conmon[81956]: 343588+0000 mon.smithi038 (mon.0) 2023-11-30T22:54:33.652 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:54:33 smithi038 conmon[81956]: 48 : cluster [DBG] mgrmap e7: smithi038.ldalxq(active, since 1.01454s) 2023-11-30T22:54:33.900 INFO:teuthology.orchestra.run.smithi038.stderr:mgr epoch 5 is available 2023-11-30T22:54:33.900 INFO:teuthology.orchestra.run.smithi038.stderr:Setting orchestrator backend to cephadm... 2023-11-30T22:54:34.774 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:54:34 smithi038 conmon[81956]: audit 2023-11-30T22:54:33.343184+0000 mgr.smithi038.ldalxq 2023-11-30T22:54:34.774 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:54:34 smithi038 conmon[81956]: (mgr.14118) 2 : audit [DBG] from='client.14122 -' entity='client.admin' cmd=[{"prefix": "get_command_descriptions"}]: dispatch 2023-11-30T22:54:34.774 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:54:34 smithi038 conmon[81956]: audit 2023-11-30T22:54:33.350204+0000 mgr.smithi038.ldalxq (mgr.14118) 3 : audit [DBG] from='client.14122 -' entity='client.admin' cmd=[{"prefix": "mgr_status"}]: dispatch 2023-11-30T22:54:35.570 INFO:teuthology.orchestra.run.smithi038.stderr:/usr/bin/ceph: value unchanged 2023-11-30T22:54:35.732 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:54:35 smithi038 conmon[81956]: cluster 2023-11-30T22:54:34.466265+0000 mon.smithi038 (mon.0) 49 : cluster [DBG] mgrmap e8: smithi038.ldalxq(active, since 2s) 2023-11-30T22:54:35.732 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:54:35 smithi038 conmon[81956]: audit 2023-11-30T22:54:34.626766+0000 mgr.smithi038.ldalxq (mgr.14118) 4 : audit [DBG] from='client.14128 -' entity='client.admin' cmd=[{"prefix": "orch set backend", "module_name": "cephadm", "target": ["mon-mgr", ""]}]: dispatch 2023-11-30T22:54:35.732 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:54:35 smithi038 conmon[81956]: audit 2023-11-30T22:54:34.635285+0000 mon.smithi038 (mon.0) 50 : audit 2023-11-30T22:54:35.733 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:54:35 smithi038 conmon[81956]: [INF] from='mgr.14118 172.21.15.38:0/2145103894' entity='mgr.smithi038.ldalxq' 2023-11-30T22:54:35.733 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:54:35 smithi038 conmon[81956]: audit 2023-11-30T 2023-11-30T22:54:35.733 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:54:35 smithi038 conmon[81956]: 22:54:34.686362+0000 mon.smithi038 (mon.0) 2023-11-30T22:54:35.733 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:54:35 smithi038 conmon[81956]: 51 : audit [DBG] from='mgr.14118 172.21.15.38:0/2145103894' entity='mgr.smithi038.ldalxq' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2023-11-30T22:54:35.875 INFO:teuthology.orchestra.run.smithi038.stderr:Generating ssh key... 2023-11-30T22:54:37.024 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:54:36 smithi038 conmon[81956]: audit 2023-11-30T22:54:35.570140 2023-11-30T22:54:37.024 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:54:36 smithi038 conmon[81956]: +0000 mgr.smithi038.ldalxq (mgr.14118) 5 : audit [DBG] from='client.14130 -' entity='client.admin' cmd=[{"prefix": "cephadm set-user", "user": "root", "target": ["mon-mgr", ""]}]: dispatch 2023-11-30T22:54:37.024 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:54:36 smithi038 conmon[81956]: audit 2023-11-30T22:54:36.673867+0000 mon.smithi038 2023-11-30T22:54:37.024 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:54:36 smithi038 conmon[81956]: (mon.0) 52 : audit [INF] from='mgr.14118 172.21.15.38:0/2145103894' entity='mgr.smithi038.ldalxq' 2023-11-30T22:54:37.024 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:54:36 smithi038 conmon[81956]: audit 2023-11-30T22 2023-11-30T22:54:37.024 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:54:36 smithi038 conmon[81956]: :54:36.678252+0000 mon.smithi038 (mon.0) 53 : audit [INF] from='mgr.14118 172.21.15.38:0/2145103894' entity='mgr.smithi038.ldalxq' 2023-11-30T22:54:37.608 INFO:teuthology.orchestra.run.smithi038.stderr:/usr/bin/ceph: ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABgQClNL/cr5wI6EZ/uoJDq8mYWdUMI3pCn3HXJZAMcDeTNU0+XfvvcT05fJ8F0VklqFiCHKHLMeGQA8q/v3B1weK/Rwgea3jkBvLBIvelrnr2SFIcdMGHIwd8LGrFZ11M/91honI6ssSwzM0nT6VnDsX+Y1Gu4JktzmitL0S/QGY8NwAjlsN22A8z3tw7oVCeL00OFkCKpKaOG1kn6QHyDh8Y8sXAcTl4tpQXu9GFXNZq1hUxjJuJN7OK/XWCwHYwTZeY+3rq0W1H93fO53qn2NiGxK7zYnQUNK5V/Vg0srHKinG+oNSMF1Ct8NxYC3Th/by1X9Fk08gKnGeomauodfzznbSOZbG7OLFu8pTzYhwsBWbjmbZxsevxxDWXfGq4C+AgbsaooxF8txr+Z3o7btTUoA13YmMIdqWRtCH24eUHMJD8U4unsDfIaxjLbf82IxFRs+yrYflvNB0SDz2+YWDskTDZfYtIc/jkuo2OJIUchz778x1ia8sKratwCGzXQD0= ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715 2023-11-30T22:54:37.948 INFO:teuthology.orchestra.run.smithi038.stderr:Wrote public SSH key to /home/ubuntu/cephtest/ceph.pub 2023-11-30T22:54:37.948 INFO:teuthology.orchestra.run.smithi038.stderr:Adding key to root@localhost authorized_keys... 2023-11-30T22:54:37.950 INFO:teuthology.orchestra.run.smithi038.stderr:Adding host smithi038... 2023-11-30T22:54:37.965 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:54:37 smithi038 conmon[81956]: audit 2023-11-30T22:54:36.513609+0000 mgr.smithi038.ldalxq ( 2023-11-30T22:54:37.965 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:54:37 smithi038 conmon[81956]: mgr.14118) 6 : audit [DBG] from='client.14132 -' entity='client.admin' cmd=[{"prefix": "cephadm generate-key", "target": ["mon-mgr", ""]}]: dispatch 2023-11-30T22:54:37.965 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:54:37 smithi038 conmon[81956]: cephadm 2023-11-30T22:54:36.513845+0000 mgr.smithi038.ldalxq (mgr.14118) 7 : cephadm 2023-11-30T22:54:37.966 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:54:37 smithi038 conmon[81956]: [INF] Generating ssh key... 2023-11-30T22:54:39.024 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:54:38 smithi038 conmon[81956]: audit 2023-11-30T22:54 2023-11-30T22:54:39.024 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:54:38 smithi038 conmon[81956]: :37.608324+0000 mgr.smithi038.ldalxq (mgr.14118) 8 : audit [DBG] from='client.14134 -' entity='client.admin' cmd=[{"prefix": "cephadm get-pub-key", "target": ["mon-mgr", ""]}]: dispatch 2023-11-30T22:54:39.344 INFO:teuthology.orchestra.run.smithi038.stderr:/usr/bin/ceph: Added host 'smithi038' with addr '172.21.15.38' 2023-11-30T22:54:39.688 INFO:teuthology.orchestra.run.smithi038.stderr:Deploying mon service with default placement... 2023-11-30T22:54:40.024 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:54:39 smithi038 conmon[81956]: audit 2023-11-30T22:54:38.604929 2023-11-30T22:54:40.024 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:54:39 smithi038 conmon[81956]: +0000 mgr.smithi038.ldalxq (mgr.14118) 9 : audit [DBG] from='client.14136 -' entity='client.admin' cmd=[{"prefix": "orch host add", "hostname": "smithi038", "addr": "172.21.15.38", "target": ["mon-mgr", ""]}]: dispatch 2023-11-30T22:54:40.024 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:54:39 smithi038 conmon[81956]: audit 2023-11-30T22:54:39.342489+0000 mon.smithi038 (mon.0) 54 : audit [INF] from='mgr.14118 172.21.15.38:0/2145103894' entity='mgr.smithi038.ldalxq' 2023-11-30T22:54:40.024 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:54:39 smithi038 conmon[81956]: audit 2023-11-30T22:54:39.359826+0000 mon.smithi038 (mon.0) 55 : audit [DBG] from='mgr.14118 172.21.15.38:0/2145103894' entity='mgr.smithi038.ldalxq' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2023-11-30T22:54:40.379 INFO:teuthology.orchestra.run.smithi038.stderr:/usr/bin/ceph: Scheduled mon update... 2023-11-30T22:54:40.771 INFO:teuthology.orchestra.run.smithi038.stderr:Deploying mgr service with default placement... 2023-11-30T22:54:41.024 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:54:40 smithi038 conmon[81956]: cephadm 2023-11-30T22:54:39.342774+0000 2023-11-30T22:54:41.024 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:54:40 smithi038 conmon[81956]: mgr.smithi038.ldalxq (mgr.14118) 10 : cephadm [INF] Added host smithi038 2023-11-30T22:54:41.024 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:54:40 smithi038 conmon[81956]: audit 2023-11-30T22:54:40.378840+0000 mon.smithi038 (mon.0) 56 : audit [INF] from='mgr.14118 172.21.15.38:0/2145103894' entity='mgr.smithi038.ldalxq' 2023-11-30T22:54:41.671 INFO:teuthology.orchestra.run.smithi038.stderr:/usr/bin/ceph: Scheduled mgr update... 2023-11-30T22:54:42.024 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:54:41 smithi038 conmon[81956]: audit 2023-11-30T22:54:40.370438+0000 mgr.smithi038.ldalxq (mgr.14118) 11 : audit [DBG] from='client.14138 -' entity='client.admin' cmd=[{"prefix": "orch apply", "service_type": "mon", "target": ["mon-mgr", ""]}]: dispatch 2023-11-30T22:54:42.024 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:54:41 smithi038 conmon[81956]: cephadm 2023-11-30T22:54:40.371632+0000 mgr.smithi038.ldalxq (mgr.14118) 12 : cephadm [INF] Saving service mon spec with placement count:5 2023-11-30T22:54:42.024 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:54:41 smithi038 conmon[81956]: audit 2023-11-30T22:54:41.481417+0000 mon.smithi038 (mon.0) 57 : audit [INF] from='mgr.14118 172.21.15.38:0/2145103894' entity='mgr.smithi038.ldalxq' 2023-11-30T22:54:42.024 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:54:41 smithi038 conmon[81956]: audit 2023-11-30T22:54:41.670651+0000 mon.smithi038 (mon.0) 58 : audit [INF] from='mgr.14118 172.21.15.38:0/2145103894' entity='mgr.smithi038.ldalxq' 2023-11-30T22:54:42.058 INFO:teuthology.orchestra.run.smithi038.stderr:Deploying crash service with default placement... 2023-11-30T22:54:42.679 INFO:teuthology.orchestra.run.smithi038.stderr:/usr/bin/ceph: Scheduled crash update... 2023-11-30T22:54:43.024 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:54:42 smithi038 conmon[81956]: audit 2023-11-30T22:54 2023-11-30T22:54:43.024 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:54:42 smithi038 conmon[81956]: :41.667131+0000 mgr.smithi038.ldalxq (mgr.14118) 13 : audit [DBG] from='client.14140 -' entity='client.admin' cmd=[{"prefix": "orch apply", "service_type": "mgr", "target": ["mon-mgr", ""]}]: dispatch 2023-11-30T22:54:43.024 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:54:42 smithi038 conmon[81956]: cephadm 2023-11-30T22:54:41.668028+0000 mgr.smithi038.ldalxq (mgr.14118) 14 : cephadm [INF] Saving service mgr spec with placement count:2 2023-11-30T22:54:43.024 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:54:42 smithi038 conmon[81956]: audit 2023-11-30T22:54:41.839867+0000 mon.smithi038 (mon.0) 59 : audit [INF] from='mgr.14118 172.21.15.38:0/2145103894' entity='mgr.smithi038.ldalxq' 2023-11-30T22:54:43.024 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:54:42 smithi038 conmon[81956]: audit 2023-11-30T22:54:42.679345+0000 mon.smithi038 (mon.0) 60 : audit [INF] from='mgr.14118 172.21.15.38:0/2145103894' entity='mgr.smithi038.ldalxq' 2023-11-30T22:54:43.094 INFO:teuthology.orchestra.run.smithi038.stderr:Deploying prometheus service with default placement... 2023-11-30T22:54:43.774 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:54:43 smithi038 conmon[81956]: audit 2023-11-30T22:54:42.673986+0000 mgr.smithi038.ldalxq (mgr 2023-11-30T22:54:43.774 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:54:43 smithi038 conmon[81956]: .14118) 15 : audit [DBG] from='client.14142 -' entity='client.admin' cmd=[{"prefix": "orch apply", "service_type": "crash", "target": ["mon-mgr", ""]}]: dispatch 2023-11-30T22:54:43.774 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:54:43 smithi038 conmon[81956]: cephadm 2023-11-30T22:54:42.674958+0000 mgr.smithi038.ldalxq (mgr.14118) 16 : cephadm [INF] Saving service crash spec with placement * 2023-11-30T22:54:43.774 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:54:43 smithi038 conmon[81956]: audit 2023-11-30T22:54:43.648016+0000 mon.smithi038 (mon.0) 61 : audit [INF] from='mgr.14118 172.21.15.38:0/2145103894' entity='mgr.smithi038.ldalxq' 2023-11-30T22:54:43.954 INFO:teuthology.orchestra.run.smithi038.stderr:/usr/bin/ceph: Scheduled prometheus update... 2023-11-30T22:54:44.350 INFO:teuthology.orchestra.run.smithi038.stderr:Deploying grafana service with default placement... 2023-11-30T22:54:45.119 INFO:teuthology.orchestra.run.smithi038.stderr:/usr/bin/ceph: Scheduled grafana update... 2023-11-30T22:54:45.274 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:54:44 smithi038 conmon[81956]: audit 2023-11-30T22:54:43.948590+0000 mgr.smithi038.ldalxq (mgr.14118) 17 : audit [DBG] from='client.14144 -' entity='client.admin' cmd=[{"prefix": "orch apply", "service_type": "prometheus", "target": ["mon-mgr", ""]}]: dispatch 2023-11-30T22:54:45.274 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:54:44 smithi038 conmon[81956]: cephadm 2023-11-30T22:54:43.949482+0000 mgr.smithi038.ldalxq (mgr.14118) 18 : cephadm [INF] Saving service prometheus spec with placement count:1 2023-11-30T22:54:45.274 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:54:44 smithi038 conmon[81956]: audit 2023-11-30T22:54:43.953620+0000 mon.smithi038 (mon.0) 62 : audit [INF] from='mgr.14118 172.21.15.38:0/2145103894' entity='mgr.smithi038.ldalxq' 2023-11-30T22:54:45.488 INFO:teuthology.orchestra.run.smithi038.stderr:Deploying node-exporter service with default placement... 2023-11-30T22:54:46.141 INFO:teuthology.orchestra.run.smithi038.stderr:/usr/bin/ceph: Scheduled node-exporter update... 2023-11-30T22:54:46.524 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:54:46 smithi038 conmon[81956]: audit 2023-11-30T22:54:45.113779+0000 mgr.smithi038.ldalxq ( 2023-11-30T22:54:46.524 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:54:46 smithi038 conmon[81956]: mgr.14118) 19 : audit [DBG] from='client.14146 -' entity='client.admin' cmd=[{"prefix": "orch apply", "service_type": "grafana", "target": ["mon-mgr", ""]}]: dispatch 2023-11-30T22:54:46.524 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:54:46 smithi038 conmon[81956]: cephadm 2023-11-30T22:54:45.114619+0000 mgr.smithi038.ldalxq (mgr 2023-11-30T22:54:46.524 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:54:46 smithi038 conmon[81956]: .14118) 20 : cephadm [INF] Saving service grafana spec with placement count:1 2023-11-30T22:54:46.525 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:54:46 smithi038 conmon[81956]: audit 2023-11-30T22:54:46.525 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:54:46 smithi038 conmon[81956]: 2023-11-30T22:54:45.118996+0000 mon.smithi038 (mon. 2023-11-30T22:54:46.526 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:54:46 smithi038 conmon[81956]: 0) 63 : audit [INF] from='mgr.14118 172.21.15.38:0/2145103894' entity='mgr.smithi038.ldalxq' 2023-11-30T22:54:46.526 INFO:teuthology.orchestra.run.smithi038.stderr:Deploying alertmanager service with default placement... 2023-11-30T22:54:47.125 INFO:teuthology.orchestra.run.smithi038.stderr:/usr/bin/ceph: Scheduled alertmanager update... 2023-11-30T22:54:47.508 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:54:47 smithi038 conmon[81956]: audit 2023-11-30T22:54:46.135746+0000 mgr.smithi038.ldalxq (mgr 2023-11-30T22:54:47.508 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:54:47 smithi038 conmon[81956]: .14118) 21 : audit [DBG] from='client.14148 -' entity='client.admin' cmd=[{"prefix": "orch apply", "service_type": "node-exporter", "target": ["mon-mgr", ""]}]: dispatch 2023-11-30T22:54:47.508 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:54:47 smithi038 conmon[81956]: cephadm 2023-11-30T22:54:46.136616+0000 mgr.smithi038.ldalxq (mgr.14118) 22 : cephadm [INF] Saving service node-exporter spec with placement * 2023-11-30T22:54:47.508 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:54:47 smithi038 conmon[81956]: audit 2023-11-30T22:54:46.140485+0000 mon.smithi038 (mon.0) 64 : audit [INF] 2023-11-30T22:54:47.508 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:54:47 smithi038 conmon[81956]: from='mgr.14118 172.21.15.38:0/2145103894' entity='mgr.smithi038.ldalxq' 2023-11-30T22:54:47.508 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:54:47 smithi038 conmon[81956]: audit 2023- 2023-11-30T22:54:47.509 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:54:47 smithi038 conmon[81956]: 11-30T22:54:47.125356+0000 mon.smithi038 (mon.0) 65 : 2023-11-30T22:54:47.509 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:54:47 smithi038 conmon[81956]: audit [INF] from='mgr.14118 172.21.15.38:0/2145103894' entity='mgr.smithi038.ldalxq' 2023-11-30T22:54:48.524 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:54:48 smithi038 conmon[81956]: audit 2023-11-30T22:54:47. 2023-11-30T22:54:48.524 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:54:48 smithi038 conmon[81956]: 121904+0000 mgr.smithi038.ldalxq (mgr.14118) 23 : audit [DBG] from='client.14150 -' entity='client.admin' cmd=[{"prefix": "orch apply", "service_type": "alertmanager", "target": ["mon-mgr", ""]}]: dispatch 2023-11-30T22:54:48.524 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:54:48 smithi038 conmon[81956]: cephadm 2023-11- 2023-11-30T22:54:48.524 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:54:48 smithi038 conmon[81956]: 30T22:54:47.122743+0000 mgr.smithi038.ldalxq (mgr.14118) 24 : 2023-11-30T22:54:48.524 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:54:48 smithi038 conmon[81956]: cephadm [INF] Saving service alertmanager spec with placement count:1 2023-11-30T22:54:48.524 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:54:48 smithi038 conmon[81956]: audit 2023- 2023-11-30T22:54:48.524 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:54:48 smithi038 conmon[81956]: 11-30T22:54:48 2023-11-30T22:54:48.524 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:54:48 smithi038 conmon[81956]: .101965+0000 mon.smithi038 (mon.0) 66 2023-11-30T22:54:48.525 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:54:48 smithi038 conmon[81956]: : audit [INF] from='client.? 172.21.15.38:0/3726916979' entity='client.admin' 2023-11-30T22:54:49.532 INFO:teuthology.orchestra.run.smithi038.stderr:Enabling the dashboard module... 2023-11-30T22:54:50.524 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:54:50 smithi038 conmon[81956]: audit 2023-11-30T22:54:49.151651+0000 mon.smithi038 (mon.0) 67 : 2023-11-30T22:54:50.525 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:54:50 smithi038 conmon[81956]: audit [INF] from='client.? 172.21.15.38:0/2296059916' entity='client.admin' 2023-11-30T22:54:51.417 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:54:51 smithi038 conmon[81956]: audit 2023-11-30T22:54:50.202516+0000 mon.smithi038 (mon.0) 68 : audit 2023-11-30T22:54:51.418 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:54:51 smithi038 conmon[81956]: [INF] from='client.? 172.21.15.38:0/1695993204' entity='client.admin' cmd=[{"prefix": "mgr module enable", "module": "dashboard"}]: dispatch 2023-11-30T22:54:52.279 INFO:teuthology.orchestra.run.smithi038.stderr:/usr/bin/ceph: { 2023-11-30T22:54:52.279 INFO:teuthology.orchestra.run.smithi038.stderr:/usr/bin/ceph: "epoch": 9, 2023-11-30T22:54:52.279 INFO:teuthology.orchestra.run.smithi038.stderr:/usr/bin/ceph: "available": true, 2023-11-30T22:54:52.279 INFO:teuthology.orchestra.run.smithi038.stderr:/usr/bin/ceph: "active_name": "smithi038.ldalxq", 2023-11-30T22:54:52.279 INFO:teuthology.orchestra.run.smithi038.stderr:/usr/bin/ceph: "num_standby": 0 2023-11-30T22:54:52.279 INFO:teuthology.orchestra.run.smithi038.stderr:/usr/bin/ceph: } 2023-11-30T22:54:52.454 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:54:52 smithi038 conmon[81956]: audit 2023-11-30T22:54:51.159456+0000 mon.smithi038 (mon.0) 69 : 2023-11-30T22:54:52.455 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:54:52 smithi038 conmon[81956]: audit [INF] from='client.? 172.21.15.38:0/1695993204' entity='client.admin' cmd='[{"prefix": "mgr module enable", "module": "dashboard"}]': finished 2023-11-30T22:54:52.455 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:54:52 smithi038 conmon[81956]: cluster 2023-11-30T22:54:51.159532+0000 mon.smithi038 (mon.0) 70 : cluster [DBG] mgrmap e9: smithi038.ldalxq(active, since 18s) 2023-11-30T22:54:52.618 INFO:teuthology.orchestra.run.smithi038.stderr:Waiting for the mgr to restart... 2023-11-30T22:54:52.618 INFO:teuthology.orchestra.run.smithi038.stderr:Waiting for mgr epoch 9... 2023-11-30T22:54:53.524 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:54:53 smithi038 conmon[81956]: audit 2023-11-30T22:54:52.277926+0000 mon.smithi038 (mon. 2023-11-30T22:54:53.524 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:54:53 smithi038 conmon[81956]: 0) 71 : audit [DBG] from='client.? 172.21.15.38:0/65246141' entity='client.admin' cmd=[{"prefix": "mgr stat"}]: dispatch 2023-11-30T22:54:57.036 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:54:56 smithi038 conmon[81956]: cluster 2023-11-30T22:54:56.797180+0000 mon.smithi038 (mon.0) 72 : cluster [INF] Active manager daemon smithi038.ldalxq restarted 2023-11-30T22:54:57.036 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:54:56 smithi038 conmon[81956]: cluster 2023-11-30T22:54:56.797408+0000 mon.smithi038 (mon.0) 73 : cluster [INF] Activating manager daemon smithi038.ldalxq 2023-11-30T22:54:57.036 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:54:56 smithi038 conmon[81956]: cluster 2023-11-30T22:54:56.802246+0000 mon.smithi038 (mon.0) 74 : cluster [DBG] osdmap e3: 0 total, 0 up, 0 in 2023-11-30T22:54:57.036 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:54:56 smithi038 conmon[81956]: cluster 2023-11-30T22:54:56.802352+0000 mon.smithi038 (mon.0) 75 : cluster [DBG] mgrmap e10: smithi038.ldalxq(active, starting, since 0.00503661s) 2023-11-30T22:54:57.036 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:54:56 smithi038 conmon[81956]: audit 2023-11-30T22:54:56.803402+0000 mon.smithi038 (mon.0) 76 : audit [DBG] from='mgr.14158 172.21.15.38:0/750967497' entity='mgr.smithi038.ldalxq' cmd=[{"prefix": "mon metadata", "id": "smithi038"}]: dispatch 2023-11-30T22:54:57.037 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:54:56 smithi038 conmon[81956]: audit 2023-11-30T22:54:56.803983+0000 mon.smithi038 (mon.0) 77 : audit [DBG] from='mgr.14158 172.21.15.38:0/750967497' entity='mgr.smithi038.ldalxq' cmd=[{"prefix": "mgr metadata", "who": "smithi038.ldalxq", "id": "smithi038.ldalxq"}]: dispatch 2023-11-30T22:54:57.037 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:54:56 smithi038 conmon[81956]: audit 2023-11-30T22:54:56.804644+0000 mon.smithi038 (mon.0) 78 : audit [DBG] from='mgr.14158 172.21.15.38:0/750967497' entity='mgr.smithi038.ldalxq' cmd=[{"prefix": "mds metadata"}]: dispatch 2023-11-30T22:54:57.037 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:54:56 smithi038 conmon[81956]: audit 2023-11-30T22:54:56.804847+0000 mon.smithi038 (mon.0 2023-11-30T22:54:57.037 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:54:56 smithi038 conmon[81956]: ) 79 : audit [DBG] from='mgr.14158 172.21.15.38:0/750967497' entity='mgr.smithi038.ldalxq' cmd=[{"prefix": "osd metadata"}]: dispatch 2023-11-30T22:54:57.037 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:54:56 smithi038 conmon[81956]: audit 2023-11-30T22:54 2023-11-30T22:54:57.037 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:54:56 smithi038 conmon[81956]: :56.805014+0000 mon.smithi038 (mon.0) 80 2023-11-30T22:54:57.037 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:54:56 smithi038 conmon[81956]: : audit [DBG] from='mgr.14158 172.21.15.38:0/750967497' entity='mgr.smithi038.ldalxq' cmd=[{"prefix": "mon metadata"}]: dispatch 2023-11-30T22:54:57.037 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:54:56 smithi038 conmon[81956]: cluster 2023-11-30 2023-11-30T22:54:57.037 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:54:56 smithi038 conmon[81956]: T22:54:56.818648+0000 2023-11-30T22:54:57.037 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:54:56 smithi038 conmon[81956]: mon.smithi038 (mon.0) 81 : cluster 2023-11-30T22:54:57.037 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:54:56 smithi038 conmon[81956]: [INF] Manager daemon smithi038.ldalxq is now available 2023-11-30T22:54:57.811 INFO:teuthology.orchestra.run.smithi038.stderr:/usr/bin/ceph: { 2023-11-30T22:54:57.811 INFO:teuthology.orchestra.run.smithi038.stderr:/usr/bin/ceph: "mgrmap_epoch": 11, 2023-11-30T22:54:57.811 INFO:teuthology.orchestra.run.smithi038.stderr:/usr/bin/ceph: "initialized": true 2023-11-30T22:54:57.811 INFO:teuthology.orchestra.run.smithi038.stderr:/usr/bin/ceph: } 2023-11-30T22:54:58.166 INFO:teuthology.orchestra.run.smithi038.stderr:mgr epoch 9 is available 2023-11-30T22:54:58.166 INFO:teuthology.orchestra.run.smithi038.stderr:Generating a dashboard self-signed certificate... 2023-11-30T22:54:58.201 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:54:57 smithi038 conmon[81956]: audit 2023-11-30T22:54:56.919851+0000 2023-11-30T22:54:58.201 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:54:57 smithi038 conmon[81956]: mon.smithi038 (mon.0) 82 : audit [DBG] from='mgr.14158 172.21.15.38:0/750967497' entity='mgr.smithi038.ldalxq' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2023-11-30T22:54:58.201 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:54:57 smithi038 conmon[81956]: audit 2023-11-30T22:54:56.921416+0000 mon.smithi038 (mon.0) 83 : audit [DBG] from='mgr.14158 172.21.15.38:0/750967497' entity='mgr.smithi038.ldalxq' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2023-11-30T22:54:58.201 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:54:57 smithi038 conmon[81956]: audit 2023-11-30T22:54:56.947315+0000 mon.smithi038 (mon.0) 84 : audit [INF] from='mgr.14158 172.21.15.38:0/750967497' entity='mgr.smithi038.ldalxq' cmd=[{"prefix":"config rm","who":"mgr","name":"mgr/rbd_support/smithi038.ldalxq/mirror_snapshot_schedule"}]: dispatch 2023-11-30T22:54:58.201 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:54:57 smithi038 conmon[81956]: audit 2023-11-30T22:54:56.950606+0000 mon.smithi038 (mon.0) 85 : audit [INF] from='mgr.14158 172.21.15.38:0/750967497' entity='mgr.smithi038.ldalxq' cmd=[{"prefix":"config rm","who":"mgr","name":"mgr/rbd_support/smithi038.ldalxq/trash_purge_schedule"}]: dispatch 2023-11-30T22:54:58.201 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:54:57 smithi038 conmon[81956]: cluster 2023-11-30T22:54:57.804018+0000 mon.smithi038 (mon.0) 86 : cluster [DBG] mgrmap e11: smithi038.ldalxq(active, since 1.0067s) 2023-11-30T22:54:59.143 INFO:teuthology.orchestra.run.smithi038.stderr:/usr/bin/ceph: Self-signed certificate created 2023-11-30T22:54:59.165 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:54:58 smithi038 conmon[81956]: audit 2023-11-30T22:54:57.803757+0000 mgr.smithi038.ldalxq (mgr.14158) 1 : audit [DBG] from='client.14162 -' entity='client.admin' cmd=[{"prefix": "get_command_descriptions"}]: dispatch 2023-11-30T22:54:59.166 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:54:58 smithi038 conmon[81956]: audit 2023-11-30T22:54:57.810236+0000 mgr.smithi038.ldalxq (mgr.14158) 2 : audit [DBG] from='client.14162 -' entity='client.admin' cmd=[{"prefix": "mgr_status"}]: dispatch 2023-11-30T22:54:59.166 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:54:58 smithi038 conmon[81956]: audit 2023-11-30T22:54:58.747242+0000 mon.smithi038 (mon.0) 87 : audit [INF] from='mgr.14158 172.21.15.38:0/750967497' entity='mgr.smithi038.ldalxq' 2023-11-30T22:54:59.501 INFO:teuthology.orchestra.run.smithi038.stderr:Creating initial admin user... 2023-11-30T22:55:00.427 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:55:00 smithi038 conmon[81956]: audit 2023-11-30T22:54:59.034368+0000 mgr.smithi038.ldalxq (mgr.14158 2023-11-30T22:55:00.428 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:55:00 smithi038 conmon[81956]: ) 3 : audit [DBG] from='client.14168 -' entity='client.admin' cmd=[{"prefix": "dashboard create-self-signed-cert", "target": ["mon-mgr", ""]}]: dispatch 2023-11-30T22:55:00.428 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:55:00 smithi038 conmon[81956]: audit 2023-11-30T22:54:59.132518+0000 mon.smithi038 (mon.0) 88 : audit [INF] from='mgr.14158 172.21.15.38:0/750967497' entity='mgr.smithi038.ldalxq' 2023-11-30T22:55:00.428 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:55:00 smithi038 conmon[81956]: audit 2023-11-30T22:54:59.142847+0000 mon.smithi038 (mon.0) 89 : audit [INF] from='mgr.14158 172.21.15.38:0/750967497' entity='mgr.smithi038.ldalxq' 2023-11-30T22:55:00.428 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:55:00 smithi038 conmon[81956]: cluster 2023-11-30T22:54:59.752881+0000 mon.smithi038 (mon.0) 90 : cluster [DBG] mgrmap e12: smithi038.ldalxq(active, since 2s) 2023-11-30T22:55:00.457 INFO:teuthology.orchestra.run.smithi038.stderr:/usr/bin/ceph: {"username": "admin", "password": "$2b$12$N3gMLTeTxMAJKVaPBG3eEuWklYI1Ft8yShK51b3Rv7BkD1SZSc1Ae", "roles": ["administrator"], "name": null, "email": null, "lastUpdate": 1701384900, "enabled": true, "pwdExpirationDate": null, "pwdUpdateRequired": true} 2023-11-30T22:55:00.839 INFO:teuthology.orchestra.run.smithi038.stderr:Fetching dashboard port number... 2023-11-30T22:55:01.456 INFO:teuthology.orchestra.run.smithi038.stderr:/usr/bin/ceph: 8443 2023-11-30T22:55:01.774 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:55:01 smithi038 conmon[81956]: audit 2023-11-30T22:55:00.203625+0000 mgr.smithi038.ldalxq (mgr.14158) 2023-11-30T22:55:01.774 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:55:01 smithi038 conmon[81956]: 4 : audit [DBG] from='client.14170 -' 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-11-30T22:55:01.774 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:55:01 smithi038 conmon[81956]: audit 2023-11-30T22:55:00.454469+0000 mon.smithi038 (mon.0) 91 2023-11-30T22:55:01.774 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:55:01 smithi038 conmon[81956]: : audit [INF] from='mgr.14158 172.21.15.38:0/750967497' entity='mgr.smithi038.ldalxq' 2023-11-30T22:55:01.785 INFO:teuthology.orchestra.run.smithi038.stderr:systemctl: disabled 2023-11-30T22:55:01.792 INFO:teuthology.orchestra.run.smithi038.stderr:systemctl: inactive 2023-11-30T22:55:01.795 INFO:teuthology.orchestra.run.smithi038.stderr:firewalld.service is not enabled 2023-11-30T22:55:01.795 INFO:teuthology.orchestra.run.smithi038.stderr:Not possible to open ports <[8443]>. firewalld.service is not available 2023-11-30T22:55:01.796 INFO:teuthology.orchestra.run.smithi038.stderr:Ceph Dashboard is now available at: 2023-11-30T22:55:01.796 INFO:teuthology.orchestra.run.smithi038.stderr: 2023-11-30T22:55:01.797 INFO:teuthology.orchestra.run.smithi038.stderr: URL: https://smithi038.front.sepia.ceph.com:8443/ 2023-11-30T22:55:01.797 INFO:teuthology.orchestra.run.smithi038.stderr: User: admin 2023-11-30T22:55:01.797 INFO:teuthology.orchestra.run.smithi038.stderr: Password: m6lbprg8dz 2023-11-30T22:55:01.797 INFO:teuthology.orchestra.run.smithi038.stderr: 2023-11-30T22:55:01.797 INFO:teuthology.orchestra.run.smithi038.stderr:Enabling autotune for osd_memory_target 2023-11-30T22:55:02.774 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:55:02 smithi038 conmon[81956]: audit 2023-11-30T22:55:01.455921+0000 2023-11-30T22:55:02.774 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:55:02 smithi038 conmon[81956]: mon.smithi038 (mon.0) 92 : audit [DBG] from='client.? 172.21.15.38:0/1374574468' entity='client.admin' cmd=[{"prefix": "config get", "who": "mgr", "key": "mgr/dashboard/ssl_server_port"}]: dispatch 2023-11-30T22:55:03.522 INFO:teuthology.orchestra.run.smithi038.stderr:/usr/bin/ceph: set mgr/dashboard/cluster/status 2023-11-30T22:55:03.869 INFO:teuthology.orchestra.run.smithi038.stderr:You can access the Ceph CLI as following in case of multi-cluster or non-default config: 2023-11-30T22:55:03.869 INFO:teuthology.orchestra.run.smithi038.stderr: 2023-11-30T22:55:03.869 INFO:teuthology.orchestra.run.smithi038.stderr: sudo /home/ubuntu/cephtest/cephadm shell --fsid 3faf8b00-8fd3-11ee-95a2-87774f69a715 -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring 2023-11-30T22:55:03.869 INFO:teuthology.orchestra.run.smithi038.stderr: 2023-11-30T22:55:03.870 INFO:teuthology.orchestra.run.smithi038.stderr:Or, if you are only running a single cluster on this host: 2023-11-30T22:55:03.870 INFO:teuthology.orchestra.run.smithi038.stderr: 2023-11-30T22:55:03.870 INFO:teuthology.orchestra.run.smithi038.stderr: sudo /home/ubuntu/cephtest/cephadm shell 2023-11-30T22:55:03.870 INFO:teuthology.orchestra.run.smithi038.stderr: 2023-11-30T22:55:03.870 INFO:teuthology.orchestra.run.smithi038.stderr:Please consider enabling telemetry to help improve Ceph: 2023-11-30T22:55:03.870 INFO:teuthology.orchestra.run.smithi038.stderr: 2023-11-30T22:55:03.870 INFO:teuthology.orchestra.run.smithi038.stderr: ceph telemetry on 2023-11-30T22:55:03.870 INFO:teuthology.orchestra.run.smithi038.stderr: 2023-11-30T22:55:03.870 INFO:teuthology.orchestra.run.smithi038.stderr:For more information see: 2023-11-30T22:55:03.870 INFO:teuthology.orchestra.run.smithi038.stderr: 2023-11-30T22:55:03.870 INFO:teuthology.orchestra.run.smithi038.stderr: https://docs.ceph.com/en/pacific/mgr/telemetry/ 2023-11-30T22:55:03.870 INFO:teuthology.orchestra.run.smithi038.stderr: 2023-11-30T22:55:03.871 INFO:teuthology.orchestra.run.smithi038.stderr:Bootstrap complete. 2023-11-30T22:55:03.903 INFO:tasks.cephadm:Fetching config... 2023-11-30T22:55:03.903 DEBUG:teuthology.orchestra.run.smithi038:> set -ex 2023-11-30T22:55:03.904 DEBUG:teuthology.orchestra.run.smithi038:> dd if=/etc/ceph/ceph.conf of=/dev/stdout 2023-11-30T22:55:03.918 INFO:tasks.cephadm:Fetching client.admin keyring... 2023-11-30T22:55:03.919 DEBUG:teuthology.orchestra.run.smithi038:> set -ex 2023-11-30T22:55:03.919 DEBUG:teuthology.orchestra.run.smithi038:> dd if=/etc/ceph/ceph.client.admin.keyring of=/dev/stdout 2023-11-30T22:55:03.975 INFO:tasks.cephadm:Fetching mon keyring... 2023-11-30T22:55:03.975 DEBUG:teuthology.orchestra.run.smithi038:> set -ex 2023-11-30T22:55:03.975 DEBUG:teuthology.orchestra.run.smithi038:> sudo dd if=/var/lib/ceph/3faf8b00-8fd3-11ee-95a2-87774f69a715/mon.smithi038/keyring of=/dev/stdout 2023-11-30T22:55:04.041 INFO:tasks.cephadm:Fetching pub ssh key... 2023-11-30T22:55:04.041 DEBUG:teuthology.orchestra.run.smithi038:> set -ex 2023-11-30T22:55:04.041 DEBUG:teuthology.orchestra.run.smithi038:> dd if=/home/ubuntu/cephtest/ceph.pub of=/dev/stdout 2023-11-30T22:55:04.097 INFO:tasks.cephadm:Installing pub ssh key for root users... 2023-11-30T22:55:04.097 DEBUG:teuthology.orchestra.run.smithi038:> sudo install -d -m 0700 /root/.ssh && echo 'ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABgQClNL/cr5wI6EZ/uoJDq8mYWdUMI3pCn3HXJZAMcDeTNU0+XfvvcT05fJ8F0VklqFiCHKHLMeGQA8q/v3B1weK/Rwgea3jkBvLBIvelrnr2SFIcdMGHIwd8LGrFZ11M/91honI6ssSwzM0nT6VnDsX+Y1Gu4JktzmitL0S/QGY8NwAjlsN22A8z3tw7oVCeL00OFkCKpKaOG1kn6QHyDh8Y8sXAcTl4tpQXu9GFXNZq1hUxjJuJN7OK/XWCwHYwTZeY+3rq0W1H93fO53qn2NiGxK7zYnQUNK5V/Vg0srHKinG+oNSMF1Ct8NxYC3Th/by1X9Fk08gKnGeomauodfzznbSOZbG7OLFu8pTzYhwsBWbjmbZxsevxxDWXfGq4C+AgbsaooxF8txr+Z3o7btTUoA13YmMIdqWRtCH24eUHMJD8U4unsDfIaxjLbf82IxFRs+yrYflvNB0SDz2+YWDskTDZfYtIc/jkuo2OJIUchz778x1ia8sKratwCGzXQD0= ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715' | sudo tee -a /root/.ssh/authorized_keys && sudo chmod 0600 /root/.ssh/authorized_keys 2023-11-30T22:55:04.174 INFO:teuthology.orchestra.run.smithi038.stdout:ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABgQClNL/cr5wI6EZ/uoJDq8mYWdUMI3pCn3HXJZAMcDeTNU0+XfvvcT05fJ8F0VklqFiCHKHLMeGQA8q/v3B1weK/Rwgea3jkBvLBIvelrnr2SFIcdMGHIwd8LGrFZ11M/91honI6ssSwzM0nT6VnDsX+Y1Gu4JktzmitL0S/QGY8NwAjlsN22A8z3tw7oVCeL00OFkCKpKaOG1kn6QHyDh8Y8sXAcTl4tpQXu9GFXNZq1hUxjJuJN7OK/XWCwHYwTZeY+3rq0W1H93fO53qn2NiGxK7zYnQUNK5V/Vg0srHKinG+oNSMF1Ct8NxYC3Th/by1X9Fk08gKnGeomauodfzznbSOZbG7OLFu8pTzYhwsBWbjmbZxsevxxDWXfGq4C+AgbsaooxF8txr+Z3o7btTUoA13YmMIdqWRtCH24eUHMJD8U4unsDfIaxjLbf82IxFRs+yrYflvNB0SDz2+YWDskTDZfYtIc/jkuo2OJIUchz778x1ia8sKratwCGzXQD0= ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715 2023-11-30T22:55:04.185 DEBUG:teuthology.orchestra.run.smithi167:> sudo install -d -m 0700 /root/.ssh && echo 'ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABgQClNL/cr5wI6EZ/uoJDq8mYWdUMI3pCn3HXJZAMcDeTNU0+XfvvcT05fJ8F0VklqFiCHKHLMeGQA8q/v3B1weK/Rwgea3jkBvLBIvelrnr2SFIcdMGHIwd8LGrFZ11M/91honI6ssSwzM0nT6VnDsX+Y1Gu4JktzmitL0S/QGY8NwAjlsN22A8z3tw7oVCeL00OFkCKpKaOG1kn6QHyDh8Y8sXAcTl4tpQXu9GFXNZq1hUxjJuJN7OK/XWCwHYwTZeY+3rq0W1H93fO53qn2NiGxK7zYnQUNK5V/Vg0srHKinG+oNSMF1Ct8NxYC3Th/by1X9Fk08gKnGeomauodfzznbSOZbG7OLFu8pTzYhwsBWbjmbZxsevxxDWXfGq4C+AgbsaooxF8txr+Z3o7btTUoA13YmMIdqWRtCH24eUHMJD8U4unsDfIaxjLbf82IxFRs+yrYflvNB0SDz2+YWDskTDZfYtIc/jkuo2OJIUchz778x1ia8sKratwCGzXQD0= ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715' | sudo tee -a /root/.ssh/authorized_keys && sudo chmod 0600 /root/.ssh/authorized_keys 2023-11-30T22:55:04.227 INFO:teuthology.orchestra.run.smithi167.stdout:ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABgQClNL/cr5wI6EZ/uoJDq8mYWdUMI3pCn3HXJZAMcDeTNU0+XfvvcT05fJ8F0VklqFiCHKHLMeGQA8q/v3B1weK/Rwgea3jkBvLBIvelrnr2SFIcdMGHIwd8LGrFZ11M/91honI6ssSwzM0nT6VnDsX+Y1Gu4JktzmitL0S/QGY8NwAjlsN22A8z3tw7oVCeL00OFkCKpKaOG1kn6QHyDh8Y8sXAcTl4tpQXu9GFXNZq1hUxjJuJN7OK/XWCwHYwTZeY+3rq0W1H93fO53qn2NiGxK7zYnQUNK5V/Vg0srHKinG+oNSMF1Ct8NxYC3Th/by1X9Fk08gKnGeomauodfzznbSOZbG7OLFu8pTzYhwsBWbjmbZxsevxxDWXfGq4C+AgbsaooxF8txr+Z3o7btTUoA13YmMIdqWRtCH24eUHMJD8U4unsDfIaxjLbf82IxFRs+yrYflvNB0SDz2+YWDskTDZfYtIc/jkuo2OJIUchz778x1ia8sKratwCGzXQD0= ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715 2023-11-30T22:55:04.240 DEBUG:teuthology.orchestra.run.smithi038:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:0dc074ce0b0b3b4f393f56dd32ef36884ebf45a9 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 3faf8b00-8fd3-11ee-95a2-87774f69a715 -- ceph config set mgr mgr/cephadm/allow_ptrace true 2023-11-30T22:55:04.764 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:55:04 smithi038 conmon[81956]: cluster 2023-11-30T22:55:03.467559+0000 mon.smithi038 (mon.0) 93 : cluster [DBG] mgrmap e13: smithi038.ldalxq(active, since 6s) 2023-11-30T22:55:04.764 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:55:04 smithi038 conmon[81956]: audit 2023-11-30T22:55:03.519104+0000 mon.smithi038 (mon.0) 94 : audit [INF] from='client.? 172.21.15.38:0/1454681825' entity='client.admin' 2023-11-30T22:55:06.790 INFO:tasks.cephadm:Distributing conf and client.admin keyring to all hosts + 0755 2023-11-30T22:55:06.790 DEBUG:teuthology.orchestra.run.smithi038:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:0dc074ce0b0b3b4f393f56dd32ef36884ebf45a9 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 3faf8b00-8fd3-11ee-95a2-87774f69a715 -- ceph orch client-keyring set client.admin '*' --mode 0755 2023-11-30T22:55:07.023 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:55:06 smithi038 conmon[81956]: audit 2023-11-30T22:55:05.972638+0000 mon.smithi038 (mon.0) 95 : audit [INF] from='mgr.14158 172.21.15.38:0/750967497' entity='mgr.smithi038.ldalxq' 2023-11-30T22:55:07.024 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:55:06 smithi038 conmon[81956]: audit 2023-11-30T22:55:06.183162+0000 mon.smithi038 (mon.0) 96 : audit [INF] from='client.? 172.21.15.38:0/427030923' entity='client.admin' 2023-11-30T22:55:07.024 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:55:06 smithi038 conmon[81956]: audit 2023-11-30T22:55:06.439907+0000 mon.smithi038 (mon.0) 97 : audit [INF] from='mgr.14158 172.21.15.38:0/750967497' entity='mgr.smithi038.ldalxq' cmd=[{"prefix": "config rm", "who": "osd/host:smithi038", "name": "osd_memory_target"}]: dispatch 2023-11-30T22:55:07.024 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:55:06 smithi038 conmon[81956]: audit 2023-11-30T22:55:06.443399+0000 mon.smithi038 (mon.0) 98 : audit [INF] from='mgr.14158 172.21.15.38:0/750967497' entity='mgr.smithi038.ldalxq' 2023-11-30T22:55:08.274 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:55:07 smithi038 conmon[81956]: cephadm 2023-11-30T22:55:06.452045+0000 mgr.smithi038.ldalxq (mgr.14158) 5 : cephadm [INF] Deploying daemon alertmanager.smithi038 on smithi038 2023-11-30T22:55:09.346 INFO:tasks.cephadm:Writing (initial) conf and keyring to smithi167 2023-11-30T22:55:09.346 DEBUG:teuthology.orchestra.run.smithi167:> set -ex 2023-11-30T22:55:09.346 DEBUG:teuthology.orchestra.run.smithi167:> dd of=/etc/ceph/ceph.conf 2023-11-30T22:55:09.365 DEBUG:teuthology.orchestra.run.smithi167:> set -ex 2023-11-30T22:55:09.365 DEBUG:teuthology.orchestra.run.smithi167:> dd of=/etc/ceph/ceph.client.admin.keyring 2023-11-30T22:55:09.422 INFO:tasks.cephadm:Adding host smithi167 to orchestrator... 2023-11-30T22:55:09.423 DEBUG:teuthology.orchestra.run.smithi167:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:0dc074ce0b0b3b4f393f56dd32ef36884ebf45a9 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 3faf8b00-8fd3-11ee-95a2-87774f69a715 -- ceph orch host add smithi167 2023-11-30T22:55:10.274 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:55:09 smithi038 conmon[81956]: audit 2023-11-30T22:55:08.931742+0000 mgr.smithi038.ldalxq (mgr.14158) 6 : audit [DBG] from='client.14180 -' entity='client.admin' cmd=[{"prefix": "orch client-keyring set", "entity": "client.admin", "placement": "*", "mode": "0755", "target": ["mon-mgr", ""]}]: dispatch 2023-11-30T22:55:10.274 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:55:09 smithi038 conmon[81956]: audit 2023-11-30T22:55:08.936800+0000 mon.smithi038 (mon.0) 99 : audit [INF] from='mgr.14158 172.21.15.38:0/750967497' entity='mgr.smithi038.ldalxq' 2023-11-30T22:55:14.867 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:55:14 smithi038 conmon[81956]: audit 2023-11-30T22:55:13.559550+0000 mon.smithi038 (mon.0) 100 : audit [INF] from='mgr.14158 172.21.15.38:0/750967497' entity='mgr.smithi038.ldalxq' 2023-11-30T22:55:14.867 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:55:14 smithi038 conmon[81956]: audit 2023-11-30T22:55:13.561168+0000 mon.smithi038 (mon.0) 101 : audit [INF] from='mgr.14158 172.21.15.38:0/750967497' entity='mgr.smithi038.ldalxq' cmd=[{"prefix": "auth get-or-create", "entity": "client.crash.smithi038", "caps": ["mon", "profile crash", "mgr", "profile crash"]}]: dispatch 2023-11-30T22:55:14.867 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:55:14 smithi038 conmon[81956]: audit 2023-11-30T22:55:13.562936+0000 mon.smithi038 (mon.0) 102 : audit [INF] from='mgr.14158 172.21.15.38:0/750967497' entity='mgr.smithi038.ldalxq' cmd='[{"prefix": "auth get-or-create", "entity": "client.crash.smithi038", "caps": ["mon", "profile crash", "mgr", "profile crash"]}]': finished 2023-11-30T22:55:14.867 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:55:14 smithi038 conmon[81956]: audit 2023-11-30T22:55:13.563573+0000 mon.smithi038 (mon.0) 103 : audit [DBG] from='mgr.14158 172.21.15.38:0/750967497' entity='mgr.smithi038.ldalxq' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2023-11-30T22:55:14.867 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:55:14 smithi038 conmon[81956]: cephadm 2023-11-30T22:55:13.564081+0000 mgr.smithi038.ldalxq (mgr.14158) 7 : cephadm [INF] Deploying daemon crash.smithi038 on smithi038 2023-11-30T22:55:17.024 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:55:16 smithi038 conmon[81956]: audit 2023-11-30T22:55:15.632991+0000 mon.smithi038 ( 2023-11-30T22:55:17.024 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:55:16 smithi038 conmon[81956]: mon.0) 104 : audit [INF] from='mgr.14158 172.21.15.38:0/750967497' entity='mgr.smithi038.ldalxq' 2023-11-30T22:55:17.024 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:55:16 smithi038 conmon[81956]: audit 2023-11-30T22:55:15.794842+0000 mon.smithi038 (mon.0) 105 : audit [INF] from='mgr.14158 172.21.15.38:0/750967497' entity='mgr.smithi038.ldalxq' 2023-11-30T22:55:17.024 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:55:16 smithi038 conmon[81956]: audit 2023-11-30T22:55:15.796692+0000 mon.smithi038 (mon.0) 106 : audit [INF] from='mgr.14158 172.21.15.38:0/750967497' entity='mgr.smithi038.ldalxq' 2023-11-30T22:55:17.024 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:55:16 smithi038 conmon[81956]: audit 2023-11-30T22:55:15.798679+0000 mon.smithi038 (mon.0) 107 : audit [INF] from='mgr.14158 172.21.15.38:0/750967497' entity='mgr.smithi038.ldalxq' cmd=[{"prefix": "dashboard set-grafana-api-ssl-verify", "value": "false"}]: dispatch 2023-11-30T22:55:17.024 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:55:16 smithi038 conmon[81956]: audit 2023-11-30T22:55:15.799010+0000 mgr.smithi038.ldalxq (mgr.14158) 8 : audit [DBG] from='mon.0 -' entity='mon.' cmd=[{"prefix": "dashboard set-grafana-api-ssl-verify", "value": "false"}]: dispatch 2023-11-30T22:55:17.024 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:55:16 smithi038 conmon[81956]: audit 2023-11-30T22:55:15.801433+0000 mon.smithi038 (mon.0) 108 : audit [INF] from='mgr.14158 172.21.15.38:0/750967497' entity='mgr.smithi038.ldalxq' 2023-11-30T22:55:17.024 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:55:16 smithi038 conmon[81956]: cephadm 2023-11-30T22:55: 2023-11-30T22:55:17.024 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:55:16 smithi038 conmon[81956]: 15.808511+0000 mgr.smithi038.ldalxq (mgr.14158) 9 : cephadm [INF] Deploying daemon grafana.smithi038 on smithi038 2023-11-30T22:55:18.274 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:55:17 smithi038 conmon[81956]: cluster 2023-11-30T22:55:16.805883+0000 mgr.smithi038.ldalxq (mgr. 2023-11-30T22:55:18.274 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:55:17 smithi038 conmon[81956]: 14158) 10 : cluster [DBG] pgmap v3: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2023-11-30T22:55:18.274 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:55:17 smithi038 conmon[81956]: audit 2023-11-30T22:55:16.948424+0000 mon.smithi038 (mon.0) 109 : audit [INF] from='mgr.14158 172.21.15.38:0/750967497' entity='mgr.smithi038.ldalxq' 2023-11-30T22:55:20.274 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:55:19 smithi038 conmon[81956]: cluster 2023-11-30T22:55:18.806157+0000 mgr.smithi038.ldalxq (mgr.14158 2023-11-30T22:55:20.274 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:55:19 smithi038 conmon[81956]: ) 11 : cluster [DBG] pgmap v4: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2023-11-30T22:55:22.024 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:55:21 smithi038 conmon[81956]: cluster 2023-11-30T22:55: 2023-11-30T22:55:22.024 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:55:21 smithi038 conmon[81956]: 20.806403+0000 mgr.smithi038.ldalxq (mgr.14158) 12 : cluster [DBG] pgmap v5: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2023-11-30T22:55:24.274 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:55:23 smithi038 conmon[81956]: cluster 2023-11-30T22:55:22.806611+0000 mgr.smithi038.ldalxq ( 2023-11-30T22:55:24.274 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:55:23 smithi038 conmon[81956]: mgr.14158) 13 : cluster [DBG] pgmap v6: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2023-11-30T22:55:26.274 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:55:25 smithi038 conmon[81956]: cluster 2023-11-30T22:55:24 2023-11-30T22:55:26.274 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:55:25 smithi038 conmon[81956]: .806859+0000 mgr.smithi038.ldalxq (mgr.14158) 14 : cluster [DBG] pgmap v7: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2023-11-30T22:55:28.273 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:55:27 smithi038 conmon[81956]: cluster 2023-11-30T22:55:26.807071+0000 mgr.smithi038.ldalxq (mgr. 2023-11-30T22:55:28.274 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:55:27 smithi038 conmon[81956]: 14158) 15 : cluster [DBG] pgmap v8: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2023-11-30T22:55:30.274 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:55:29 smithi038 conmon[81956]: cluster 2023-11-30T22:55:28.807397+0000 mgr.smithi038.ldalxq (mgr.14158) 16 : cluster [DBG] pgmap v9: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2023-11-30T22:55:32.024 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:55:31 smithi038 conmon[81956]: audit 2023-11-30T22:55:30.650966+0000 mon.smithi038 (mon.0) 110 : audit [INF] from='mgr.14158 172.21.15.38:0/750967497' entity='mgr.smithi038.ldalxq' 2023-11-30T22:55:32.024 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:55:31 smithi038 conmon[81956]: cephadm 2023-11-30T22:55:30.653127+0000 mgr.smithi038.ldalxq (mgr.14158) 17 : cephadm [INF] Deploying daemon node-exporter.smithi038 on smithi038 2023-11-30T22:55:32.024 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:55:31 smithi038 conmon[81956]: cluster 2023-11-30T22:55:30.807625+0000 mgr.smithi038.ldalxq (mgr.14158) 18 : cluster [DBG] pgmap v10: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2023-11-30T22:55:33.274 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:55:32 smithi038 conmon[81956]: audit 2023-11-30T22:55:31.954142+0000 mon.smithi038 (mon.0) 2023-11-30T22:55:33.274 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:55:32 smithi038 conmon[81956]: 111 : audit [INF] from='mgr.14158 172.21.15.38:0/750967497' entity='mgr.smithi038.ldalxq' 2023-11-30T22:55:34.274 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:55:33 smithi038 conmon[81956]: cluster 2023-11-30T22:55:32.807908+0000 mgr.smithi038.ldalxq (mgr.14158) 19 2023-11-30T22:55:34.274 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:55:33 smithi038 conmon[81956]: : cluster [DBG] pgmap v11: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2023-11-30T22:55:36.274 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:55:35 smithi038 conmon[81956]: cluster 2023-11-30T22:55:34.808163+0000 mgr.smithi038.ldalxq (mgr.14158) 20 : cluster [DBG] pgmap v12: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2023-11-30T22:55:36.274 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:55:35 smithi038 conmon[81956]: audit 2023-11-30T22:55:35.524960+0000 mon.smithi038 (mon.0) 112 : audit [INF] from='mgr.14158 172.21.15.38:0/750967497' entity='mgr.smithi038.ldalxq' 2023-11-30T22:55:36.274 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:55:35 smithi038 conmon[81956]: audit 2023-11-30T22:55:35.527299+0000 mon.smithi038 (mon.0) 113 : 2023-11-30T22:55:36.275 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:55:35 smithi038 conmon[81956]: audit [INF] from='mgr.14158 172.21.15.38:0/750967497' entity='mgr.smithi038.ldalxq' cmd=[{"prefix": "mgr module enable", "module": "prometheus"}]: dispatch 2023-11-30T22:55:37.970 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:55:37 smithi038 conmon[81956]: audit 2023-11-30T22:55:36.528948+0000 mon.smithi038 (mon.0) 114 : audit [INF] from='mgr.14158 172.21.15.38:0/750967497' entity='mgr.smithi038.ldalxq' cmd='[{"prefix": "mgr module enable", "module": "prometheus"}]': finished 2023-11-30T22:55:37.971 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:55:37 smithi038 conmon[81956]: cluster 2023-11-30T22:55:36.529015+0000 mon.smithi038 (mon.0) 115 : cluster [DBG] mgrmap e14: smithi038.ldalxq(active, since 39s) 2023-11-30T22:55:42.412 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:55:42 smithi038 conmon[81956]: cluster 2023-11-30T22:55:42.173935+0000 mon.smithi038 (mon.0 2023-11-30T22:55:42.412 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:55:42 smithi038 conmon[81956]: ) 116 : cluster [INF] Active manager daemon smithi038.ldalxq restarted 2023-11-30T22:55:42.412 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:55:42 smithi038 conmon[81956]: cluster 2023-11-30T22:55:42.174178+0000 mon.smithi038 (mon.0) 117 : cluster [INF] Activating manager daemon smithi038.ldalxq 2023-11-30T22:55:42.412 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:55:42 smithi038 conmon[81956]: cluster 2023-11-30T22:55:42.180537+0000 mon.smithi038 2023-11-30T22:55:42.412 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:55:42 smithi038 conmon[81956]: (mon.0) 118 : cluster [DBG] osdmap e4: 0 total, 0 up, 0 in 2023-11-30T22:55:42.412 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:55:42 smithi038 conmon[81956]: cluster 2023- 2023-11-30T22:55:42.412 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:55:42 smithi038 conmon[81956]: 11-30T22:55:42.180652+0000 2023-11-30T22:55:42.413 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:55:42 smithi038 conmon[81956]: mon.smithi038 (mon.0) 119 : cluster [DBG] 2023-11-30T22:55:42.413 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:55:42 smithi038 conmon[81956]: mgrmap e15: smithi038.ldalxq(active, starting, since 0.00657089s) 2023-11-30T22:55:42.413 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:55:42 smithi038 conmon[81956]: audit 2023-11-30T22:55:42.413 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:55:42 smithi038 conmon[81956]: 2023-11-30T22:55:42.181570+0000 mon.smithi038 ( 2023-11-30T22:55:42.413 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:55:42 smithi038 conmon[81956]: mon.0) 120 : audit [DBG] from='mgr.14182 172.21.15.38:0/2999689707' entity='mgr.smithi038.ldalxq' cmd=[{"prefix": "mon metadata", "id": "smithi038"}]: dispatch 2023-11-30T22:55:42.413 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:55:42 smithi038 conmon[81956]: audit 2023-11 2023-11-30T22:55:42.413 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:55:42 smithi038 conmon[81956]: -30T22:55:42.182276+0000 2023-11-30T22:55:42.413 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:55:42 smithi038 conmon[81956]: mon.smithi038 (mon.0) 121 : audit [DBG] from='mgr.14182 172.21.15.38:0/2999689707' entity='mgr.smithi038.ldalxq' cmd=[{"prefix": "mgr metadata", "who": "smithi038.ldalxq", "id": "smithi038.ldalxq"}]: dispatch 2023-11-30T22:55:42.413 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:55:42 smithi038 conmon[81956]: 2023-11-30T22:55:42.413 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:55:42 smithi038 conmon[81956]: audit 2023 2023-11-30T22:55:42.413 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:55:42 smithi038 conmon[81956]: -11-30T22:55:42.182937+0000 mon.smithi038 (mon 2023-11-30T22:55:42.414 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:55:42 smithi038 conmon[81956]: .0) 122 : audit [DBG] from='mgr.14182 172.21.15.38:0/2999689707' entity='mgr.smithi038.ldalxq' cmd=[{"prefix": "mds metadata"}]: dispatch 2023-11-30T22:55:42.414 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:55:42 smithi038 conmon[81956]: audit 2023-11-30 2023-11-30T22:55:42.414 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:55:42 smithi038 conmon[81956]: T22:55:42.183107+0000 mon.smithi038 ( 2023-11-30T22:55:42.414 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:55:42 smithi038 conmon[81956]: mon.0) 123 : audit [DBG] from='mgr.14182 172.21.15.38:0/2999689707' entity='mgr.smithi038.ldalxq' cmd=[{"prefix": "osd metadata"}]: dispatch 2023-11-30T22:55:42.414 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:55:42 smithi038 conmon[81956]: audit 2023-11-30 2023-11-30T22:55:42.414 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:55:42 smithi038 conmon[81956]: T22:55:42.183271+0000 mon.smithi038 ( 2023-11-30T22:55:42.414 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:55:42 smithi038 conmon[81956]: mon.0) 124 : audit [DBG] from='mgr.14182 172.21.15.38:0/2999689707' entity='mgr.smithi038.ldalxq' cmd=[{"prefix": "mon metadata"}]: dispatch 2023-11-30T22:55:42.414 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:55:42 smithi038 conmon[81956]: cluster 2023-11 2023-11-30T22:55:42.414 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:55:42 smithi038 conmon[81956]: -30T22:55:42.185267+0000 mon.smithi038 2023-11-30T22:55:42.414 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:55:42 smithi038 conmon[81956]: (mon.0) 125 : cluster [INF] Manager daemon smithi038.ldalxq is now available 2023-11-30T22:55:42.414 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:55:42 smithi038 conmon[81956]: 2023-11-30T22:55:43.524 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:55:43 smithi038 conmon[81956]: audit 2023-11-30T22:55:42.288104+0000 2023-11-30T22:55:43.524 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:55:43 smithi038 conmon[81956]: mon.smithi038 (mon.0) 126 : audit [DBG] from='mgr.14182 172.21.15.38:0/2999689707' entity='mgr.smithi038.ldalxq' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2023-11-30T22:55:43.524 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:55:43 smithi038 conmon[81956]: audit 2023-11-30T22:55 2023-11-30T22:55:43.524 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:55:43 smithi038 conmon[81956]: :42.289496+0000 mon.smithi038 (mon.0) 127 : audit [DBG] from='mgr.14182 172.21.15.38:0/2999689707' entity='mgr.smithi038.ldalxq' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2023-11-30T22:55:43.524 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:55:43 smithi038 conmon[81956]: audit 2023-11- 2023-11-30T22:55:43.524 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:55:43 smithi038 conmon[81956]: 30T22:55:42.316788+0000 mon.smithi038 ( 2023-11-30T22:55:43.524 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:55:43 smithi038 conmon[81956]: mon.0) 128 : audit [INF] from='mgr.14182 172.21.15.38:0/2999689707' entity='mgr.smithi038.ldalxq' 2023-11-30T22:55:43.524 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:55:43 smithi038 conmon[81956]: audit 2023- 2023-11-30T22:55:43.525 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:55:43 smithi038 conmon[81956]: 11-30T22:55:42.326039+0000 2023-11-30T22:55:43.525 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:55:43 smithi038 conmon[81956]: mon.smithi038 (mon.0) 129 : audit [INF] 2023-11-30T22:55:43.525 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:55:43 smithi038 conmon[81956]: from='mgr.14182 172.21.15.38:0/2999689707' entity='mgr.smithi038.ldalxq' cmd=[{"prefix":"config rm","who":"mgr","name":"mgr/rbd_support/smithi038.ldalxq/mirror_snapshot_schedule"}]: dispatch 2023-11-30T22:55:43.525 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:55:43 smithi038 conmon[81956]: audit 2023-11-30T22:55:43.525 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:55:43 smithi038 conmon[81956]: 2023-11-30T22:55:42.333460+0000 2023-11-30T22:55:43.525 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:55:43 smithi038 conmon[81956]: mon.smithi038 (mon.0) 130 : audit [INF] from='mgr.14182 172.21.15.38:0/2999689707' entity='mgr.smithi038.ldalxq' cmd=[{"prefix":"config rm","who":"mgr","name":"mgr/rbd_support/smithi038.ldalxq/trash_purge_schedule"}]: dispatch 2023-11-30T22:55:43.525 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:55:43 smithi038 conmon[81956]: 2023-11-30T22:55:43.525 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:55:43 smithi038 conmon[81956]: cluster 2023- 2023-11-30T22:55:43.525 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:55:43 smithi038 conmon[81956]: 11-30T22:55:43.180672+0000 mon.smithi038 (mon 2023-11-30T22:55:43.525 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:55:43 smithi038 conmon[81956]: .0) 131 : cluster [DBG] mgrmap e16: smithi038.ldalxq(active, since 1.00659s) 2023-11-30T22:55:43.901 INFO:teuthology.orchestra.run.smithi167.stdout:Added host 'smithi167' with addr '172.21.15.167' 2023-11-30T22:55:44.417 DEBUG:teuthology.orchestra.run.smithi167:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:0dc074ce0b0b3b4f393f56dd32ef36884ebf45a9 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 3faf8b00-8fd3-11ee-95a2-87774f69a715 -- ceph orch host ls --format=json 2023-11-30T22:55:44.524 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:55:44 smithi038 conmon[81956]: audit 2023-11-30T22:55:43.181109+0000 mgr.smithi038.ldalxq (mgr.14182) 1 : audit [DBG] from='client.14188 -' entity='client.admin' cmd=[{"prefix": "orch host add", "hostname": "smithi167", "target": ["mon-mgr", ""]}]: dispatch 2023-11-30T22:55:44.524 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:55:44 smithi038 conmon[81956]: audit 2023-11-30T22:55:43.900507+0000 mon.smithi038 (mon.0) 132 : audit [INF] from='mgr.14182 172.21.15.38:0/2999689707' entity='mgr.smithi038.ldalxq' 2023-11-30T22:55:45.523 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:55:45 smithi038 conmon[81956]: cephadm 2023-11-30T22:55:43.900819+0000 mgr.smithi038.ldalxq (mgr.14182) 2 : cephadm [INF] Added host smithi167 2023-11-30T22:55:45.524 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:55:45 smithi038 conmon[81956]: cluster 2023-11-30T22:55:44.904348+0000 mon.smithi038 (mon.0) 133 : cluster [DBG] mgrmap e17: smithi038.ldalxq(active, since 2s) 2023-11-30T22:55:46.098 INFO:teuthology.orchestra.run.smithi167.stdout: 2023-11-30T22:55:46.098 INFO:teuthology.orchestra.run.smithi167.stdout:[{"addr": "172.21.15.38", "hostname": "smithi038", "labels": [], "status": ""}, {"addr": "172.21.15.167", "hostname": "smithi167", "labels": [], "status": ""}] 2023-11-30T22:55:46.587 INFO:tasks.cephadm:Setting crush tunables to default 2023-11-30T22:55:46.587 DEBUG:teuthology.orchestra.run.smithi038:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:0dc074ce0b0b3b4f393f56dd32ef36884ebf45a9 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 3faf8b00-8fd3-11ee-95a2-87774f69a715 -- ceph osd crush tunables default 2023-11-30T22:55:47.514 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:55:47 smithi038 conmon[81956]: audit 2023-11-30T22:55:46.097660+0000 mgr.smithi038.ldalxq (mgr.14182) 3 : audit 2023-11-30T22:55:47.515 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:55:47 smithi038 conmon[81956]: [DBG] from='client.14190 -' entity='client.admin' cmd=[{"prefix": "orch host ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-11-30T22:55:47.515 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:55:47 smithi038 conmon[81956]: audit 2023-11-30T22:55:46.393662+0000 mon.smithi038 (mon.0) 134 : audit [INF] from='mgr.14182 172.21.15.38:0/2999689707' entity='mgr.smithi038.ldalxq' 2023-11-30T22:55:47.515 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:55:47 smithi038 conmon[81956]: audit 2023-11-30T22:55:46.808060+0000 mon.smithi038 (mon.0) 135 : audit [INF] from='mgr.14182 172.21.15.38:0/2999689707' entity='mgr.smithi038.ldalxq' cmd=[{"prefix": "config rm", "who": "osd/host:smithi038", "name": "osd_memory_target"}]: dispatch 2023-11-30T22:55:47.515 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:55:47 smithi038 conmon[81956]: audit 2023-11-30T22:55:46.808987+0000 mon.smithi038 (mon.0) 136 : audit [DBG] from='mgr.14182 172.21.15.38:0/2999689707' entity='mgr.smithi038.ldalxq' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2023-11-30T22:55:47.515 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:55:47 smithi038 conmon[81956]: audit 2023-11-30T22:55:46.809700+0000 mon.smithi038 (mon.0) 137 : audit [INF] from='mgr.14182 172.21.15.38:0/2999689707' entity='mgr.smithi038.ldalxq' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2023-11-30T22:55:47.516 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:55:47 smithi038 conmon[81956]: audit 2023-11-30T22:55:46.850731+0000 mon.smithi038 (mon.0) 138 : audit [INF] from='mgr.14182 172.21.15.38:0/2999689707' entity='mgr.smithi038.ldalxq' 2023-11-30T22:55:47.516 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:55:47 smithi038 conmon[81956]: audit 2023-11-30T22:55:46.855051+0000 mon.smithi038 (mon.0) 139 : audit [INF] from='mgr.14182 172.21.15.38:0/2999689707' entity='mgr.smithi038.ldalxq' 2023-11-30T22:55:48.404 INFO:teuthology.orchestra.run.smithi038.stderr:adjusted tunables profile to default 2023-11-30T22:55:48.676 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:55:48 smithi038 conmon[81956]: cephadm 2023-11-30T22:55:46.810897+0000 mgr.smithi038.ldalxq ( 2023-11-30T22:55:48.676 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:55:48 smithi038 conmon[81956]: mgr.14182) 4 : cephadm [INF] Updating smithi038:/etc/ceph/ceph.conf 2023-11-30T22:55:48.677 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:55:48 smithi038 conmon[81956]: cephadm 2023-11-30T22:55:46.829986+0000 mgr.smithi038.ldalxq (mgr.14182) 5 : cephadm [INF] Updating smithi038:/etc/ceph/ceph.client.admin.keyring 2023-11-30T22:55:48.677 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:55:48 smithi038 conmon[81956]: cephadm 2023-11-30T22:55:46.867301+0000 mgr.smithi038.ldalxq (mgr.14182) 6 : cephadm [INF] Deploying daemon prometheus.smithi038 on smithi038 2023-11-30T22:55:48.677 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:55:48 smithi038 conmon[81956]: audit 2023-11-30T22:55:48.330274+0000 mon.smithi038 (mon.0) 140 : audit [INF] from='client.? 172.21.15.38:0/1469216752' entity='client.admin' cmd=[{"prefix": "osd crush tunables", "profile": "default"}]: dispatch 2023-11-30T22:55:48.944 INFO:tasks.cephadm:Adding mon.smithi038 on smithi038 2023-11-30T22:55:48.944 INFO:tasks.cephadm:Adding mon.smithi167 on smithi167 2023-11-30T22:55:48.944 DEBUG:teuthology.orchestra.run.smithi167:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:0dc074ce0b0b3b4f393f56dd32ef36884ebf45a9 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 3faf8b00-8fd3-11ee-95a2-87774f69a715 -- ceph orch apply mon '2;smithi038:172.21.15.38=smithi038;smithi167:172.21.15.167=smithi167' 2023-11-30T22:55:49.774 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:55:49 smithi038 conmon[81956]: audit 2023-11-30T22:55:48.400896+0000 mon.smithi038 (mon.0) 141 : audit [INF] from='client.? 172.21.15.38:0/1469216752' entity='client.admin' cmd='[{"prefix": "osd crush tunables", "profile": "default"}]': finished 2023-11-30T22:55:49.774 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:55:49 smithi038 conmon[81956]: cluster 2023-11-30T22:55:48.400961+0000 mon.smithi038 (mon.0) 142 : cluster [DBG] osdmap e5: 0 total, 0 up, 0 in 2023-11-30T22:55:50.760 INFO:teuthology.orchestra.run.smithi167.stdout:Scheduled mon update... 2023-11-30T22:55:51.221 DEBUG:teuthology.orchestra.run.smithi167:mon.smithi167> sudo journalctl -f -n 0 -u ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715@mon.smithi167.service 2023-11-30T22:55:51.223 INFO:tasks.cephadm:Waiting for 2 mons in monmap... 2023-11-30T22:55:51.224 DEBUG:teuthology.orchestra.run.smithi167:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:0dc074ce0b0b3b4f393f56dd32ef36884ebf45a9 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 3faf8b00-8fd3-11ee-95a2-87774f69a715 -- ceph mon dump -f json 2023-11-30T22:55:51.250 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:-- Logs begin at Thu 2023-11-30 22:43:36 UTC. -- 2023-11-30T22:55:52.024 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:55:51 smithi038 conmon[81956]: audit 2023-11-30T22:55:50.754600+0000 mgr.smithi038.ldalxq (mgr.14182 2023-11-30T22:55:52.024 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:55:51 smithi038 conmon[81956]: ) 7 : audit [DBG] from='client.14194 -' entity='client.admin' cmd=[{"prefix": "orch apply", "service_type": "mon", "placement": "2;smithi038:172.21.15.38=smithi038;smithi167:172.21.15.167=smithi167", "target": ["mon-mgr", ""]}]: dispatch 2023-11-30T22:55:52.024 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:55:51 smithi038 conmon[81956]: cephadm 2023-11-30T22:55:50.756442+0000 mgr.smithi038.ldalxq (mgr.14182) 8 : cephadm [INF] Saving service mon spec with placement smithi038:172.21.15.38=smithi038;smithi167:172.21.15.167=smithi167;count:2 2023-11-30T22:55:52.024 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:55:51 smithi038 conmon[81956]: audit 2023-11-30T22:55:50.759013+0000 mon.smithi038 ( 2023-11-30T22:55:52.024 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:55:51 smithi038 conmon[81956]: mon.0) 143 : audit [INF] from='mgr.14182 172.21.15.38:0/2999689707' entity='mgr.smithi038.ldalxq' 2023-11-30T22:55:52.986 INFO:teuthology.orchestra.run.smithi167.stdout: 2023-11-30T22:55:52.987 INFO:teuthology.orchestra.run.smithi167.stdout:{"epoch":1,"fsid":"3faf8b00-8fd3-11ee-95a2-87774f69a715","modified":"2023-11-30T22:53:58.638783Z","created":"2023-11-30T22:53:58.638783Z","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":"smithi038","public_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.38:3300","nonce":0},{"type":"v1","addr":"172.21.15.38:6789","nonce":0}]},"addr":"172.21.15.38:6789/0","public_addr":"172.21.15.38:6789/0","priority":0,"weight":0,"crush_location":"{}"}],"quorum":[0]} 2023-11-30T22:55:52.988 INFO:teuthology.orchestra.run.smithi167.stderr:dumped monmap epoch 1 2023-11-30T22:55:53.524 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:55:53 smithi038 conmon[81956]: audit 2023-11-30T22:55:52.986368+0000 mon.smithi038 (mon.0) 144 : audit [DBG] 2023-11-30T22:55:53.524 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:55:53 smithi038 conmon[81956]: from='client.? 172.21.15.167:0/560507382' entity='client.admin' cmd=[{"prefix": "mon dump", "format": "json"}]: dispatch 2023-11-30T22:55:54.804 INFO:tasks.cephadm:Waiting for 2 mons in monmap... 2023-11-30T22:55:54.804 DEBUG:teuthology.orchestra.run.smithi167:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:0dc074ce0b0b3b4f393f56dd32ef36884ebf45a9 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 3faf8b00-8fd3-11ee-95a2-87774f69a715 -- ceph mon dump -f json 2023-11-30T22:55:56.566 INFO:teuthology.orchestra.run.smithi167.stdout: 2023-11-30T22:55:56.567 INFO:teuthology.orchestra.run.smithi167.stdout:{"epoch":1,"fsid":"3faf8b00-8fd3-11ee-95a2-87774f69a715","modified":"2023-11-30T22:53:58.638783Z","created":"2023-11-30T22:53:58.638783Z","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":"smithi038","public_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.38:3300","nonce":0},{"type":"v1","addr":"172.21.15.38:6789","nonce":0}]},"addr":"172.21.15.38:6789/0","public_addr":"172.21.15.38:6789/0","priority":0,"weight":0,"crush_location":"{}"}],"quorum":[0]} 2023-11-30T22:55:56.569 INFO:teuthology.orchestra.run.smithi167.stderr:dumped monmap epoch 1 2023-11-30T22:55:57.013 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:55:56 smithi038 conmon[81956]: audit 2023-11-30T22:55:56.566281+0000 mon.smithi038 (mon.0) 145 : audit [DBG] from='client.? 172.21.15.167:0/185431612' entity='client.admin' cmd=[{"prefix": "mon dump", "format": "json"}]: dispatch 2023-11-30T22:55:58.070 INFO:tasks.cephadm:Waiting for 2 mons in monmap... 2023-11-30T22:55:58.071 DEBUG:teuthology.orchestra.run.smithi167:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:0dc074ce0b0b3b4f393f56dd32ef36884ebf45a9 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 3faf8b00-8fd3-11ee-95a2-87774f69a715 -- ceph mon dump -f json 2023-11-30T22:55:58.524 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:55:58 smithi038 conmon[81956]: audit 2023-11-30T22:55:57.123887+0000 mon.smithi038 (mon 2023-11-30T22:55:58.524 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:55:58 smithi038 conmon[81956]: .0) 146 : audit [INF] from='mgr.14182 172.21.15.38:0/2999689707' entity='mgr.smithi038.ldalxq' 2023-11-30T22:55:58.524 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:55:58 smithi038 conmon[81956]: audit 2023-11-30T22:55:57.124998+0000 mon.smithi038 (mon.0) 147 : audit [DBG] from='mgr.14182 172.21.15.38:0/2999689707' entity='mgr.smithi038.ldalxq' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2023-11-30T22:55:58.524 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:55:58 smithi038 conmon[81956]: audit 2023-11-30T22:55:57.317596+0000 mon.smithi038 (mon.0) 148 : audit [INF] from='mgr.14182 172.21.15.38:0/2999689707' entity='mgr.smithi038.ldalxq' 2023-11-30T22:55:58.524 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:55:58 smithi038 conmon[81956]: audit 2023-11-30T22:55:57.668633+0000 mon.smithi038 (mon.0) 149 : audit [INF] from='mgr.14182 172.21.15.38:0/2999689707' entity='mgr.smithi038.ldalxq' 2023-11-30T22:55:59.774 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:55:59 smithi038 conmon[81956]: audit 2023-11-30T22:55:58.289670+0000 mon.smithi038 2023-11-30T22:55:59.774 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:55:59 smithi038 conmon[81956]: (mon.0) 150 : audit [INF] from='mgr.14182 172.21.15.38:0/2999689707' entity='mgr.smithi038.ldalxq' 2023-11-30T22:56:00.031 INFO:teuthology.orchestra.run.smithi167.stdout: 2023-11-30T22:56:00.031 INFO:teuthology.orchestra.run.smithi167.stdout:{"epoch":1,"fsid":"3faf8b00-8fd3-11ee-95a2-87774f69a715","modified":"2023-11-30T22:53:58.638783Z","created":"2023-11-30T22:53:58.638783Z","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":"smithi038","public_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.38:3300","nonce":0},{"type":"v1","addr":"172.21.15.38:6789","nonce":0}]},"addr":"172.21.15.38:6789/0","public_addr":"172.21.15.38:6789/0","priority":0,"weight":0,"crush_location":"{}"}],"quorum":[0]} 2023-11-30T22:56:00.034 INFO:teuthology.orchestra.run.smithi167.stderr:dumped monmap epoch 1 2023-11-30T22:56:00.774 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:56:00 smithi038 conmon[81956]: audit 2023-11-30T22:56:00.030785+0000 2023-11-30T22:56:00.774 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:56:00 smithi038 conmon[81956]: mon.smithi038 (mon.0) 151 : audit [DBG] from='client.? 172.21.15.167:0/3811820631' entity='client.admin' cmd=[{"prefix": "mon dump", "format": "json"}]: dispatch 2023-11-30T22:56:01.589 INFO:tasks.cephadm:Waiting for 2 mons in monmap... 2023-11-30T22:56:01.589 DEBUG:teuthology.orchestra.run.smithi167:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:0dc074ce0b0b3b4f393f56dd32ef36884ebf45a9 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 3faf8b00-8fd3-11ee-95a2-87774f69a715 -- ceph mon dump -f json 2023-11-30T22:56:02.774 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:56:02 smithi038 conmon[81956]: audit 2023-11-30T22:56:01.416614+0000 mon.smithi038 (mon.0) 152 : audit [INF] from='mgr.14182 172.21.15.38:0/2999689707' entity='mgr.smithi038.ldalxq' 2023-11-30T22:56:02.774 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:56:02 smithi038 conmon[81956]: audit 2023-11-30T22:56:02.774 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:56:02 smithi038 conmon[81956]: 2023-11-30T22:56:02.111433+0000 mon.smithi038 (mon.0) 153 : audit [INF] from='mgr.14182 172.21.15.38:0/2999689707' entity='mgr.smithi038.ldalxq' 2023-11-30T22:56:03.443 INFO:teuthology.orchestra.run.smithi167.stdout: 2023-11-30T22:56:03.443 INFO:teuthology.orchestra.run.smithi167.stdout:{"epoch":1,"fsid":"3faf8b00-8fd3-11ee-95a2-87774f69a715","modified":"2023-11-30T22:53:58.638783Z","created":"2023-11-30T22:53:58.638783Z","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":"smithi038","public_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.38:3300","nonce":0},{"type":"v1","addr":"172.21.15.38:6789","nonce":0}]},"addr":"172.21.15.38:6789/0","public_addr":"172.21.15.38:6789/0","priority":0,"weight":0,"crush_location":"{}"}],"quorum":[0]} 2023-11-30T22:56:03.445 INFO:teuthology.orchestra.run.smithi167.stderr:dumped monmap epoch 1 2023-11-30T22:56:03.774 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:56:03 smithi038 conmon[81956]: cluster 2023-11-30T22:56:02.184227+0000 mgr.smithi038.ldalxq (mgr.14182) 9 : cluster [DBG] pgmap v4: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2023-11-30T22:56:03.774 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:56:03 smithi038 conmon[81956]: audit 2023-11 2023-11-30T22:56:03.774 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:56:03 smithi038 conmon[81956]: -30T22:56:03.149993+0000 mon.smithi038 (mon.0) 154 : audit [INF] from='mgr.14182 172.21.15.38:0/2999689707' entity='mgr.smithi038.ldalxq' 2023-11-30T22:56:03.774 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:56:03 smithi038 conmon[81956]: audit 2023-11-30T22:56:03.150933+0000 mon.smithi038 (mon.0) 155 : audit [INF] from='mgr.14182 172.21.15.38:0/2999689707' entity='mgr.smithi038.ldalxq' cmd=[{"prefix": "config rm", "who": "osd/host:smithi167", "name": "osd_memory_target"}]: dispatch 2023-11-30T22:56:03.774 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:56:03 smithi038 conmon[81956]: audit 2023-11-30T22:56:03.152015+0000 mon.smithi038 (mon.0) 156 : audit [DBG] 2023-11-30T22:56:03.775 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:56:03 smithi038 conmon[81956]: from='mgr.14182 172.21.15.38:0/2999689707' entity='mgr.smithi038.ldalxq' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2023-11-30T22:56:03.775 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:56:03 smithi038 conmon[81956]: audit 2023-11-30T22:56:03.775 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:56:03 smithi038 conmon[81956]: 2023-11-30T22:56:03.152921+0000 mon.smithi038 (mon.0) 2023-11-30T22:56:03.775 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:56:03 smithi038 conmon[81956]: 157 : audit [INF] from='mgr.14182 172.21.15.38:0/2999689707' entity='mgr.smithi038.ldalxq' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2023-11-30T22:56:03.775 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:56:03 smithi038 conmon[81956]: audit 2023-11-30T22:56:03. 2023-11-30T22:56:03.775 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:56:03 smithi038 conmon[81956]: 197838+0000 mon.smithi038 (mon.0) 158 : audit [INF] from='mgr.14182 172.21.15.38:0/2999689707' entity='mgr.smithi038.ldalxq' 2023-11-30T22:56:03.775 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:56:03 smithi038 conmon[81956]: audit 2023-11-30T22:56:03.775 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:56:03 smithi038 conmon[81956]: 2023-11-30T22:56:03.201051+0000 mon.smithi038 ( 2023-11-30T22:56:03.775 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:56:03 smithi038 conmon[81956]: mon.0) 159 : audit [INF] from='mgr.14182 172.21.15.38:0/2999689707' entity='mgr.smithi038.ldalxq' 2023-11-30T22:56:03.775 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:56:03 smithi038 conmon[81956]: audit 2023-11-30T22:56: 2023-11-30T22:56:03.775 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:56:03 smithi038 conmon[81956]: 03.207010+0000 mon.smithi038 (mon.0) 160 : audit [INF] from='mgr.14182 172.21.15.38:0/2999689707' entity='mgr.smithi038.ldalxq' cmd=[{"prefix": "auth get-or-create", "entity": "client.crash.smithi167", "caps": ["mon", "profile crash", "mgr", "profile crash"]}]: dispatch 2023-11-30T22:56:03.775 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:56:03 smithi038 conmon[81956]: 2023-11-30T22:56:03.775 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:56:03 smithi038 conmon[81956]: audit 2023- 2023-11-30T22:56:03.776 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:56:03 smithi038 conmon[81956]: 11-30T22:56:03.209362+0000 mon.smithi038 (mon.0) 161 : audit [INF] 2023-11-30T22:56:03.776 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:56:03 smithi038 conmon[81956]: from='mgr.14182 172.21.15.38:0/2999689707' entity='mgr.smithi038.ldalxq' cmd='[{"prefix": "auth get-or-create", "entity": "client.crash.smithi167", "caps": ["mon", "profile crash", "mgr", "profile crash"]}]': finished 2023-11-30T22:56:03.776 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:56:03 smithi038 conmon[81956]: audit 2023-11 2023-11-30T22:56:03.776 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:56:03 smithi038 conmon[81956]: -30T22:56:03.210245+0000 mon.smithi038 (mon.0) 162 : audit [DBG] from='mgr.14182 172.21.15.38:0/2999689707' entity='mgr.smithi038.ldalxq' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2023-11-30T22:56:04.774 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:56:04 smithi038 conmon[81956]: cephadm 2023-11-30T22:56:03.154337+0000 2023-11-30T22:56:04.774 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:56:04 smithi038 conmon[81956]: mgr.smithi038.ldalxq (mgr.14182) 10 : cephadm [INF] Updating smithi167:/etc/ceph/ceph.conf 2023-11-30T22:56:04.774 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:56:04 smithi038 conmon[81956]: cephadm 2023-11-30T22:56:03.169982+0000 mgr.smithi038.ldalxq (mgr.14182) 11 : cephadm [INF] Updating smithi167:/etc/ceph/ceph.client.admin.keyring 2023-11-30T22:56:04.774 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:56:04 smithi038 conmon[81956]: cephadm 2023-11-30T22:56:03 2023-11-30T22:56:04.774 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:56:04 smithi038 conmon[81956]: .210972+0000 mgr.smithi038.ldalxq (mgr.14182) 12 : cephadm [INF] Deploying daemon crash.smithi167 on smithi167 2023-11-30T22:56:04.774 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:56:04 smithi038 conmon[81956]: audit 2023-11-30T22:56:03.443097+0000 mon.smithi038 (mon.0) 163 : audit [DBG] 2023-11-30T22:56:04.774 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:56:04 smithi038 conmon[81956]: from='client.? 172.21.15.167:0/2904606238' entity='client.admin' cmd=[{"prefix": "mon dump", "format": "json"}]: dispatch 2023-11-30T22:56:04.878 INFO:tasks.cephadm:Waiting for 2 mons in monmap... 2023-11-30T22:56:04.878 DEBUG:teuthology.orchestra.run.smithi167:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:0dc074ce0b0b3b4f393f56dd32ef36884ebf45a9 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 3faf8b00-8fd3-11ee-95a2-87774f69a715 -- ceph mon dump -f json 2023-11-30T22:56:05.774 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:56:05 smithi038 conmon[81956]: cluster 2023-11-30T22:56:04.184699+0000 2023-11-30T22:56:05.774 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:56:05 smithi038 conmon[81956]: mgr.smithi038.ldalxq (mgr.14182) 13 : cluster [DBG] pgmap v5: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2023-11-30T22:56:07.024 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:56:06 smithi038 conmon[81956]: cluster 2023-11-30T22:56:06.185070+0000 mgr.smithi038.ldalxq 2023-11-30T22:56:07.024 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:56:06 smithi038 conmon[81956]: (mgr.14182) 14 : cluster [DBG] pgmap v6: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2023-11-30T22:56:09.524 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:56:09 smithi038 conmon[81956]: cluster 2023-11-30T22:56:08 2023-11-30T22:56:09.524 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:56:09 smithi038 conmon[81956]: .185448+0000 mgr.smithi038.ldalxq (mgr.14182) 15 : cluster [DBG] pgmap v7: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2023-11-30T22:56:11.524 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:56:11 smithi038 conmon[81956]: cluster 2023-11-30T22:56:10.185846+0000 mgr.smithi038.ldalxq (mgr.14182) 16 2023-11-30T22:56:13.803 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:56:11 smithi038 conmon[81956]: : cluster [DBG] pgmap v8: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2023-11-30T22:56:13.803 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:56:13 smithi038 conmon[81956]: cluster 2023-11-30T22:56:12.186201+0000 mgr.smithi038.ldalxq (mgr.14182) 17 : 2023-11-30T22:56:13.804 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:56:13 smithi038 conmon[81956]: cluster [DBG] pgmap v9: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2023-11-30T22:56:14.774 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:56:14 smithi038 conmon[81956]: audit 2023-11-30T22:56:13.443645+0000 mon.smithi038 (mon.0) 164 : audit [INF] 2023-11-30T22:56:14.774 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:56:14 smithi038 conmon[81956]: from='mgr.14182 172.21.15.38:0/2999689707' entity='mgr.smithi038.ldalxq' 2023-11-30T22:56:14.774 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:56:14 smithi038 conmon[81956]: audit 2023-11-30T22:56:13.446077+0000 mon.smithi038 (mon.0) 165 : audit [INF] from='mgr.14182 172.21.15.38:0/2999689707' entity='mgr.smithi038.ldalxq' cmd=[{"prefix": "auth get-or-create", "entity": "mgr.smithi167.wfawnr", "caps": ["mon", "profile mgr", "osd", "allow *", "mds", "allow *"]}]: dispatch 2023-11-30T22:56:14.774 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:56:14 smithi038 conmon[81956]: audit 2023-11-30T22:56:13.448342+0000 mon.smithi038 (mon. 2023-11-30T22:56:14.774 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:56:14 smithi038 conmon[81956]: 0) 166 : audit [INF] from='mgr.14182 172.21.15.38:0/2999689707' entity='mgr.smithi038.ldalxq' cmd='[{"prefix": "auth get-or-create", "entity": "mgr.smithi167.wfawnr", "caps": ["mon", "profile mgr", "osd", "allow *", "mds", "allow *"]}]': finished 2023-11-30T22:56:14.775 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:56:14 smithi038 conmon[81956]: audit 2023-11-30T22:56:13.449229+0000 mon.smithi038 (mon.0) 167 : audit [DBG] 2023-11-30T22:56:14.775 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:56:14 smithi038 conmon[81956]: from='mgr.14182 172.21.15.38:0/2999689707' entity='mgr.smithi038.ldalxq' cmd=[{"prefix": "mgr services"}]: dispatch 2023-11-30T22:56:14.775 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:56:14 smithi038 conmon[81956]: audit 2023-11-30T22:56:13.450299+0000 mon.smithi038 (mon.0 2023-11-30T22:56:14.775 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:56:14 smithi038 conmon[81956]: ) 168 : audit [DBG] from='mgr.14182 172.21.15.38:0/2999689707' entity='mgr.smithi038.ldalxq' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2023-11-30T22:56:14.775 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:56:14 smithi038 conmon[81956]: cephadm 2023-11-30T22 2023-11-30T22:56:14.775 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:56:14 smithi038 conmon[81956]: :56:13.451183+0000 mgr.smithi038.ldalxq (mgr.14182) 18 : cephadm [INF] Deploying daemon mgr.smithi167.wfawnr on smithi167 2023-11-30T22:56:15.177 INFO:teuthology.orchestra.run.smithi167.stdout: 2023-11-30T22:56:15.178 INFO:teuthology.orchestra.run.smithi167.stdout:{"epoch":1,"fsid":"3faf8b00-8fd3-11ee-95a2-87774f69a715","modified":"2023-11-30T22:53:58.638783Z","created":"2023-11-30T22:53:58.638783Z","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":"smithi038","public_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.38:3300","nonce":0},{"type":"v1","addr":"172.21.15.38:6789","nonce":0}]},"addr":"172.21.15.38:6789/0","public_addr":"172.21.15.38:6789/0","priority":0,"weight":0,"crush_location":"{}"}],"quorum":[0]} 2023-11-30T22:56:15.178 INFO:teuthology.orchestra.run.smithi167.stderr:dumped monmap epoch 1 2023-11-30T22:56:15.774 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:56:15 smithi038 conmon[81956]: cluster 2023-11-30T22:56:14.186580+0000 mgr.smithi038.ldalxq (mgr.14182) 2023-11-30T22:56:15.774 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:56:15 smithi038 conmon[81956]: 19 : cluster [DBG] pgmap v10: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2023-11-30T22:56:15.774 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:56:15 smithi038 conmon[81956]: audit 2023-11-30T22:56:15.055043+0000 mon.smithi038 (mon.0) 169 : audit [DBG] from='client.? 172.21.15.167:0/3716272669' entity='client.admin' cmd=[{"prefix": "mon dump", "format": "json"}]: dispatch 2023-11-30T22:56:17.024 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:56:16 smithi038 conmon[81956]: cluster 2023-11-30T22:56:16.186903+0000 mgr.smithi038.ldalxq (mgr.14182) 20 : cluster 2023-11-30T22:56:17.024 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:56:16 smithi038 conmon[81956]: [DBG] pgmap v11: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2023-11-30T22:56:17.194 INFO:tasks.cephadm:Waiting for 2 mons in monmap... 2023-11-30T22:56:17.196 DEBUG:teuthology.orchestra.run.smithi167:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:0dc074ce0b0b3b4f393f56dd32ef36884ebf45a9 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 3faf8b00-8fd3-11ee-95a2-87774f69a715 -- ceph mon dump -f json 2023-11-30T22:56:18.774 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:56:18 smithi038 conmon[81956]: audit 2023-11-30T22:56:17. 2023-11-30T22:56:18.774 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:56:18 smithi038 conmon[81956]: 327400+0000 mon.smithi038 (mon.0) 170 : audit [INF] from='mgr.14182 172.21.15.38:0/2999689707' entity='mgr.smithi038.ldalxq' 2023-11-30T22:56:18.774 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:56:18 smithi038 conmon[81956]: audit 2023-11-30T22:56:17.411169+0000 2023-11-30T22:56:18.774 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:56:18 smithi038 conmon[81956]: mon.smithi038 (mon.0) 171 : audit [INF] from='mgr.14182 172.21.15.38:0/2999689707' entity='mgr.smithi038.ldalxq' 2023-11-30T22:56:18.775 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:56:18 smithi038 conmon[81956]: audit 2023-11-30T22:56:17. 2023-11-30T22:56:18.775 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:56:18 smithi038 conmon[81956]: 413900+0000 mon.smithi038 (mon.0) 172 : audit [INF] from='mgr.14182 172.21.15.38:0/2999689707' entity='mgr.smithi038.ldalxq' cmd=[{"prefix": "auth get", "entity": "mon."}]: dispatch 2023-11-30T22:56:18.775 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:56:18 smithi038 conmon[81956]: audit 2023-11- 2023-11-30T22:56:18.775 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:56:18 smithi038 conmon[81956]: 30T22:56:17.414892+0000 mon.smithi038 (mon.0) 173 : audit 2023-11-30T22:56:18.775 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:56:18 smithi038 conmon[81956]: [DBG] from='mgr.14182 172.21.15.38:0/2999689707' entity='mgr.smithi038.ldalxq' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2023-11-30T22:56:18.775 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:56:18 smithi038 conmon[81956]: cephadm 2023-11-30T22:56:18.775 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:56:18 smithi038 conmon[81956]: 2023-11-30T22:56:17.415758 2023-11-30T22:56:18.775 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:56:18 smithi038 conmon[81956]: +0000 mgr.smithi038.ldalxq (mgr.14182) 21 : 2023-11-30T22:56:18.775 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:56:18 smithi038 conmon[81956]: cephadm [INF] Deploying daemon mon.smithi167 on smithi167 2023-11-30T22:56:19.148 INFO:teuthology.orchestra.run.smithi167.stdout: 2023-11-30T22:56:19.148 INFO:teuthology.orchestra.run.smithi167.stdout:{"epoch":1,"fsid":"3faf8b00-8fd3-11ee-95a2-87774f69a715","modified":"2023-11-30T22:53:58.638783Z","created":"2023-11-30T22:53:58.638783Z","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":"smithi038","public_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.38:3300","nonce":0},{"type":"v1","addr":"172.21.15.38:6789","nonce":0}]},"addr":"172.21.15.38:6789/0","public_addr":"172.21.15.38:6789/0","priority":0,"weight":0,"crush_location":"{}"}],"quorum":[0]} 2023-11-30T22:56:19.150 INFO:teuthology.orchestra.run.smithi167.stderr:dumped monmap epoch 1 2023-11-30T22:56:19.774 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:56:19 smithi038 conmon[81956]: cluster 2023-11-30T22:56:18.187227+0000 mgr.smithi038.ldalxq (mgr.14182) 22 : cluster [DBG] pgmap v12: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2023-11-30T22:56:19.774 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:56:19 smithi038 conmon[81956]: audit 2023-11-30T22:56:19.148433+0000 mon.smithi038 (mon.0) 174 : audit [DBG] from='client.? 172.21.15.167:0/1490345269' entity='client.admin' cmd=[{"prefix": "mon dump", "format": "json"}]: dispatch 2023-11-30T22:56:20.552 INFO:tasks.cephadm:Waiting for 2 mons in monmap... 2023-11-30T22:56:20.553 DEBUG:teuthology.orchestra.run.smithi167:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:0dc074ce0b0b3b4f393f56dd32ef36884ebf45a9 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 3faf8b00-8fd3-11ee-95a2-87774f69a715 -- ceph mon dump -f json 2023-11-30T22:56:20.616 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 22:56:20 smithi167 systemd[1]: Starting Ceph mon.smithi167 for 3faf8b00-8fd3-11ee-95a2-87774f69a715... 2023-11-30T22:56:21.512 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 22:56:21 smithi167 conmon[87022]: debug 2023-11-30T22:56:21.241+0000 7fc5d8e6d880 0 set uid:gid to 167:167 (ceph:ceph) 2023-11-30T22:56:21.513 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 22:56:21 smithi167 conmon[87022]: debug 2023-11-30T22:56:21.241+0000 7fc5d8e6d880 0 ceph version 16.2.14-328-g0dc074ce (0dc074ce0b0b3b4f393f56dd32ef36884ebf45a9) pacific (stable), process ceph-mon, pid 7 2023-11-30T22:56:21.513 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 22:56:21 smithi167 conmon[87022]: debug 2023-11-30T22:56:21.241+0000 7fc5d8e6d880 0 pidfile_write: ignore empty --pid-file 2023-11-30T22:56:21.513 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 22:56:21 smithi167 conmon[87022]: debug 2023-11-30T22:56:21.245+0000 7fc5d8e6d880 0 load: jerasure load: lrc load: isa 2023-11-30T22:56:21.513 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 22:56:21 smithi167 conmon[87022]: debug 2023-11-30T22:56:21.246+0000 7fc5d8e6d880 4 rocksdb: RocksDB version: 6.8.1 2023-11-30T22:56:21.513 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 22:56:21 smithi167 conmon[87022]: 2023-11-30T22:56:21.513 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 22:56:21 smithi167 conmon[87022]: debug 2023-11-30T22:56:21.246+0000 7fc5d8e6d880 4 rocksdb: Git sha rocksdb_build_git_sha:@0@ 2023-11-30T22:56:21.513 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 22:56:21 smithi167 conmon[87022]: debug 2023-11-30T22:56:21.246+0000 7fc5d8e6d880 4 rocksdb: Compile date Nov 29 2023 2023-11-30T22:56:21.513 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 22:56:21 smithi167 conmon[87022]: debug 2023-11-30T22:56:21.246+0000 7fc5d8e6d880 4 rocksdb: DB SUMMARY 2023-11-30T22:56:21.513 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 22:56:21 smithi167 conmon[87022]: 2023-11-30T22:56:21.513 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 22:56:21 smithi167 conmon[87022]: debug 2023-11-30T22:56:21.246+0000 7fc5d8e6d880 4 rocksdb: CURRENT file: CURRENT 2023-11-30T22:56:21.514 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 22:56:21 smithi167 conmon[87022]: 2023-11-30T22:56:21.514 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 22:56:21 smithi167 conmon[87022]: debug 2023-11-30T22:56:21.246+0000 7fc5d8e6d880 4 rocksdb: IDENTITY file: IDENTITY 2023-11-30T22:56:21.514 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 22:56:21 smithi167 conmon[87022]: 2023-11-30T22:56:21.514 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 22:56:21 smithi167 conmon[87022]: debug 2023-11-30T22:56:21.246+0000 7fc5d8e6d880 4 rocksdb: MANIFEST file: MANIFEST-000001 size: 13 Bytes 2023-11-30T22:56:21.514 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 22:56:21 smithi167 conmon[87022]: 2023-11-30T22:56:21.514 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 22:56:21 smithi167 conmon[87022]: debug 2023-11-30T22:56:21.246+0000 7fc5d8e6d880 4 rocksdb: SST files in /var/lib/ceph/mon/ceph-smithi167/store.db dir, Total Num: 0, files: 2023-11-30T22:56:21.514 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 22:56:21 smithi167 conmon[87022]: 2023-11-30T22:56:21.514 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 22:56:21 smithi167 conmon[87022]: debug 2023-11-30T22:56:21.246+0000 7fc5d8e6d880 4 rocksdb: Write Ahead Log file in /var/lib/ceph/mon/ceph-smithi167/store.db: 000003.log size: 511 ; 2023-11-30T22:56:21.514 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 22:56:21 smithi167 conmon[87022]: 2023-11-30T22:56:21.514 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 22:56:21 smithi167 conmon[87022]: debug 2023-11-30T22:56:21.246+0000 7fc5d8e6d880 4 rocksdb: Options.error_if_exists: 0 2023-11-30T22:56:21.514 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 22:56:21 smithi167 conmon[87022]: debug 2023-11-30T22:56:21.246+0000 7fc5d8e6d880 4 rocksdb: Options.create_if_missing: 0 2023-11-30T22:56:21.515 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 22:56:21 smithi167 conmon[87022]: debug 2023-11-30T22:56:21.246+0000 7fc5d8e6d880 4 rocksdb: Options.paranoid_checks: 1 2023-11-30T22:56:21.515 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 22:56:21 smithi167 conmon[87022]: debug 2023-11-30T22:56:21.246+0000 7fc5d8e6d880 4 rocksdb: Options.env: 0x5558c8b9a080 2023-11-30T22:56:21.515 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 22:56:21 smithi167 conmon[87022]: debug 2023-11-30T22:56:21.246+0000 7fc5d8e6d880 4 rocksdb: Options.fs: Posix File System 2023-11-30T22:56:21.515 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 22:56:21 smithi167 conmon[87022]: debug 2023-11-30T22:56:21.246+0000 7fc5d8e6d880 4 rocksdb: Options.info_log: 0x5558ca32bd20 2023-11-30T22:56:21.515 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 22:56:21 smithi167 conmon[87022]: debug 2023-11-30T22:56:21.246+0000 7fc5d8e6d880 4 rocksdb: Options.max_file_opening_threads: 16 2023-11-30T22:56:21.515 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 22:56:21 smithi167 conmon[87022]: debug 2023-11-30T22:56:21.246+0000 7fc5d8e6d880 4 rocksdb: Options.statistics: (nil) 2023-11-30T22:56:21.515 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 22:56:21 smithi167 conmon[87022]: debug 2023-11-30T22:56:21.246+0000 7fc5d8e6d880 4 rocksdb: Options.use_fsync: 0 2023-11-30T22:56:21.515 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 22:56:21 smithi167 conmon[87022]: debug 2023-11-30T22:56:21.246+0000 7fc5d8e6d880 4 rocksdb: Options.max_log_file_size: 0 2023-11-30T22:56:21.515 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 22:56:21 smithi167 conmon[87022]: debug 2023-11-30T22:56:21.246+0000 7fc5d8e6d880 4 rocksdb: Options.max_manifest_file_size: 1073741824 2023-11-30T22:56:21.515 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 22:56:21 smithi167 conmon[87022]: debug 2023-11-30T22:56:21.246+0000 7fc5d8e6d880 4 rocksdb: Options.log_file_time_to_roll: 0 2023-11-30T22:56:21.515 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 22:56:21 smithi167 conmon[87022]: debug 2023-11-30T22:56:21.246+0000 7fc5d8e6d880 4 rocksdb: Options.keep_log_file_num: 1000 2023-11-30T22:56:21.515 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 22:56:21 smithi167 conmon[87022]: debug 2023-11-30T22:56:21.246+0000 7fc5d8e6d880 4 rocksdb: Options.recycle_log_file_num: 0 2023-11-30T22:56:21.516 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 22:56:21 smithi167 conmon[87022]: debug 2023-11-30T22:56:21.246+0000 7fc5d8e6d880 4 rocksdb: Options.allow_fallocate: 1 2023-11-30T22:56:21.516 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 22:56:21 smithi167 conmon[87022]: debug 2023-11-30T22:56:21.246+0000 7fc5d8e6d880 4 rocksdb: Options.allow_mmap_reads: 0 2023-11-30T22:56:21.516 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 22:56:21 smithi167 conmon[87022]: debug 2023-11-30T22:56:21.246+0000 7fc5d8e6d880 4 rocksdb: Options.allow_mmap_writes: 0 2023-11-30T22:56:21.516 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 22:56:21 smithi167 conmon[87022]: debug 2023-11-30T22:56:21.246+0000 7fc5d8e6d880 4 rocksdb: Options.use_direct_reads: 0 2023-11-30T22:56:21.516 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 22:56:21 smithi167 conmon[87022]: debug 2023-11-30T22:56:21.246+0000 7fc5d8e6d880 4 rocksdb: Options.use_direct_io_for_flush_and_compaction: 0 2023-11-30T22:56:21.516 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 22:56:21 smithi167 conmon[87022]: debug 2023-11-30T22:56:21.246+0000 7fc5d8e6d880 4 rocksdb: Options.create_missing_column_families: 0 2023-11-30T22:56:21.516 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 22:56:21 smithi167 conmon[87022]: debug 2023-11-30T22:56:21.246+0000 7fc5d8e6d880 4 rocksdb: Options.db_log_dir: 2023-11-30T22:56:21.516 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 22:56:21 smithi167 conmon[87022]: debug 2023-11-30T22:56:21.246+0000 7fc5d8e6d880 4 rocksdb: Options.wal_dir: /var/lib/ceph/mon/ceph-smithi167/store.db 2023-11-30T22:56:21.516 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 22:56:21 smithi167 conmon[87022]: debug 2023-11-30T22:56:21.246+0000 7fc5d8e6d880 4 rocksdb: Options.table_cache_numshardbits: 6 2023-11-30T22:56:21.516 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 22:56:21 smithi167 conmon[87022]: debug 2023-11-30T22:56:21.246+0000 7fc5d8e6d880 4 rocksdb: Options.max_subcompactions: 1 2023-11-30T22:56:21.516 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 22:56:21 smithi167 conmon[87022]: debug 2023-11-30T22:56:21.246+0000 7fc5d8e6d880 4 rocksdb: Options.max_background_flushes: -1 2023-11-30T22:56:21.516 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 22:56:21 smithi167 conmon[87022]: debug 2023-11-30T22:56:21.246+0000 7fc5d8e6d880 4 rocksdb: Options.WAL_ttl_seconds: 0 2023-11-30T22:56:21.517 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 22:56:21 smithi167 conmon[87022]: debug 2023-11-30T22:56:21.246+0000 7fc5d8e6d880 4 rocksdb: Options.WAL_size_limit_MB: 0 2023-11-30T22:56:21.517 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 22:56:21 smithi167 conmon[87022]: debug 2023-11-30T22:56:21.246+0000 7fc5d8e6d880 4 rocksdb: Options.max_write_batch_group_size_bytes: 1048576 2023-11-30T22:56:21.517 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 22:56:21 smithi167 conmon[87022]: debug 2023-11-30T22:56:21.246+0000 7fc5d8e6d880 4 rocksdb: Options.manifest_preallocation_size: 4194304 2023-11-30T22:56:21.517 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 22:56:21 smithi167 conmon[87022]: debug 2023-11-30T22:56:21.246+0000 7fc5d8e6d880 4 rocksdb: Options.is_fd_close_on_exec: 1 2023-11-30T22:56:21.517 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 22:56:21 smithi167 conmon[87022]: debug 2023-11-30T22:56:21.246+0000 7fc5d8e6d880 4 rocksdb: Options.advise_random_on_open: 1 2023-11-30T22:56:21.517 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 22:56:21 smithi167 conmon[87022]: debug 2023-11-30T22:56:21.246+0000 7fc5d8e6d880 4 rocksdb: Options.db_write_buffer_size: 0 2023-11-30T22:56:21.517 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 22:56:21 smithi167 conmon[87022]: debug 2023-11-30T22:56:21.246+0000 7fc5d8e6d880 4 rocksdb: Options.write_buffer_manager: 0x5558caf82480 2023-11-30T22:56:21.517 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 22:56:21 smithi167 conmon[87022]: debug 2023-11-30T22:56:21.246+0000 7fc5d8e6d880 4 rocksdb: Options.access_hint_on_compaction_start: 1 2023-11-30T22:56:21.517 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 22:56:21 smithi167 conmon[87022]: debug 2023-11-30T22:56:21.246+0000 7fc5d8e6d880 4 rocksdb: Options.new_table_reader_for_compaction_inputs: 0 2023-11-30T22:56:21.517 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 22:56:21 smithi167 conmon[87022]: debug 2023-11-30T22:56:21.246+0000 7fc5d8e6d880 4 rocksdb: Options.random_access_max_buffer_size: 1048576 2023-11-30T22:56:21.517 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 22:56:21 smithi167 conmon[87022]: debug 2023-11-30T22:56:21.246+0000 7fc5d8e6d880 4 rocksdb: Options.use_adaptive_mutex: 0 2023-11-30T22:56:21.518 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 22:56:21 smithi167 conmon[87022]: debug 2023-11-30T22:56:21.246+0000 7fc5d8e6d880 4 rocksdb: Options.rate_limiter: (nil) 2023-11-30T22:56:21.519 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 22:56:21 smithi167 conmon[87022]: debug 2023-11-30T22:56:21.246+0000 7fc5d8e6d880 4 rocksdb: Options.sst_file_manager.rate_bytes_per_sec: 0 2023-11-30T22:56:21.519 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 22:56:21 smithi167 conmon[87022]: debug 2023-11-30T22:56:21.246+0000 7fc5d8e6d880 4 rocksdb: Options.wal_recovery_mode: 2 2023-11-30T22:56:21.519 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 22:56:21 smithi167 conmon[87022]: debug 2023-11-30T22:56:21.246+0000 7fc5d8e6d880 4 rocksdb: Options.enable_thread_tracking: 0 2023-11-30T22:56:21.519 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 22:56:21 smithi167 conmon[87022]: debug 2023-11-30T22:56:21.246+0000 7fc5d8e6d880 4 rocksdb: Options.enable_pipelined_write: 0 2023-11-30T22:56:21.519 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 22:56:21 smithi167 conmon[87022]: debug 2023-11-30T22:56:21.246+0000 7fc5d8e6d880 4 rocksdb: Options.unordered_write: 0 2023-11-30T22:56:21.519 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 22:56:21 smithi167 conmon[87022]: debug 2023-11-30T22:56:21.246+0000 7fc5d8e6d880 4 rocksdb: Options.allow_concurrent_memtable_write: 1 2023-11-30T22:56:21.520 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 22:56:21 smithi167 conmon[87022]: debug 2023-11-30T22:56:21.246+0000 7fc5d8e6d880 4 rocksdb: Options.enable_write_thread_adaptive_yield: 1 2023-11-30T22:56:21.520 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 22:56:21 smithi167 conmon[87022]: debug 2023-11-30T22:56:21.246+0000 7fc5d8e6d880 4 rocksdb: Options.write_thread_max_yield_usec: 100 2023-11-30T22:56:21.520 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 22:56:21 smithi167 conmon[87022]: debug 2023-11-30T22:56:21.246+0000 7fc5d8e6d880 4 rocksdb: Options.write_thread_slow_yield_usec: 3 2023-11-30T22:56:21.520 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 22:56:21 smithi167 conmon[87022]: debug 2023-11-30T22:56:21.246+0000 7fc5d8e6d880 4 rocksdb: Options.row_cache: None 2023-11-30T22:56:21.520 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 22:56:21 smithi167 conmon[87022]: debug 2023-11-30T22:56:21.246+0000 7fc5d8e6d880 4 rocksdb: Options.wal_filter: None 2023-11-30T22:56:21.520 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 22:56:21 smithi167 conmon[87022]: debug 2023-11-30T22:56:21.246+0000 7fc5d8e6d880 4 rocksdb: Options.avoid_flush_during_recovery: 0 2023-11-30T22:56:21.520 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 22:56:21 smithi167 conmon[87022]: debug 2023-11-30T22:56:21.246+0000 7fc5d8e6d880 4 rocksdb: Options.allow_ingest_behind: 0 2023-11-30T22:56:21.520 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 22:56:21 smithi167 conmon[87022]: debug 2023-11-30T22:56:21.246+0000 7fc5d8e6d880 4 rocksdb: Options.preserve_deletes: 0 2023-11-30T22:56:21.520 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 22:56:21 smithi167 conmon[87022]: debug 2023-11-30T22:56:21.246+0000 7fc5d8e6d880 4 rocksdb: Options.two_write_queues: 0 2023-11-30T22:56:21.520 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 22:56:21 smithi167 conmon[87022]: debug 2023-11-30T22:56:21.246+0000 7fc5d8e6d880 4 rocksdb: Options.manual_wal_flush: 0 2023-11-30T22:56:21.520 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 22:56:21 smithi167 conmon[87022]: debug 2023-11-30T22:56:21.246+0000 7fc5d8e6d880 4 rocksdb: Options.atomic_flush: 0 2023-11-30T22:56:21.521 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 22:56:21 smithi167 conmon[87022]: debug 2023-11-30T22:56:21.246+0000 7fc5d8e6d880 4 rocksdb: Options.avoid_unnecessary_blocking_io: 0 2023-11-30T22:56:21.521 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 22:56:21 smithi167 conmon[87022]: debug 2023-11-30T22:56:21.246+0000 7fc5d8e6d880 4 rocksdb: Options.persist_stats_to_disk: 0 2023-11-30T22:56:21.521 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 22:56:21 smithi167 conmon[87022]: debug 2023-11-30T22:56:21.246+0000 7fc5d8e6d880 4 rocksdb: Options.write_dbid_to_manifest: 0 2023-11-30T22:56:21.521 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 22:56:21 smithi167 conmon[87022]: debug 2023-11-30T22:56:21.246+0000 7fc5d8e6d880 4 rocksdb: Options.log_readahead_size: 0 2023-11-30T22:56:21.521 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 22:56:21 smithi167 conmon[87022]: debug 2023-11-30T22:56:21.246+0000 7fc5d8e6d880 4 rocksdb: Options.sst_file_checksum_func: Unknown 2023-11-30T22:56:21.521 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 22:56:21 smithi167 conmon[87022]: debug 2023-11-30T22:56:21.246+0000 7fc5d8e6d880 4 rocksdb: Options.max_background_jobs: 2 2023-11-30T22:56:21.521 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 22:56:21 smithi167 conmon[87022]: debug 2023-11-30T22:56:21.246+0000 7fc5d8e6d880 4 rocksdb: Options.max_background_compactions: -1 2023-11-30T22:56:21.521 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 22:56:21 smithi167 conmon[87022]: debug 2023-11-30T22:56:21.246+0000 7fc5d8e6d880 4 rocksdb: Options.avoid_flush_during_shutdown: 0 2023-11-30T22:56:21.521 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 22:56:21 smithi167 conmon[87022]: debug 2023-11-30T22:56:21.246+0000 7fc5d8e6d880 4 rocksdb: Options.writable_file_max_buffer_size: 1048576 2023-11-30T22:56:21.521 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 22:56:21 smithi167 conmon[87022]: debug 2023-11-30T22:56:21.246+0000 7fc5d8e6d880 4 rocksdb: Options.delayed_write_rate : 16777216 2023-11-30T22:56:21.521 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 22:56:21 smithi167 conmon[87022]: debug 2023-11-30T22:56:21.246+0000 7fc5d8e6d880 4 rocksdb: Options.max_total_wal_size: 0 2023-11-30T22:56:21.521 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 22:56:21 smithi167 conmon[87022]: debug 2023-11-30T22:56:21.246+0000 7fc5d8e6d880 4 rocksdb: Options.delete_obsolete_files_period_micros: 21600000000 2023-11-30T22:56:21.522 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 22:56:21 smithi167 conmon[87022]: debug 2023-11-30T22:56:21.246+0000 7fc5d8e6d880 4 rocksdb: Options.stats_dump_period_sec: 600 2023-11-30T22:56:21.522 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 22:56:21 smithi167 conmon[87022]: debug 2023-11-30T22:56:21.246+0000 7fc5d8e6d880 4 rocksdb: Options.stats_persist_period_sec: 600 2023-11-30T22:56:21.522 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 22:56:21 smithi167 conmon[87022]: debug 2023-11-30T22:56:21.246+0000 7fc5d8e6d880 4 rocksdb: Options.stats_history_buffer_size: 1048576 2023-11-30T22:56:21.522 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 22:56:21 smithi167 conmon[87022]: debug 2023-11-30T22:56:21.246+0000 7fc5d8e6d880 4 rocksdb: Options.max_open_files: -1 2023-11-30T22:56:21.522 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 22:56:21 smithi167 conmon[87022]: debug 2023-11-30T22:56:21.246+0000 7fc5d8e6d880 4 rocksdb: Options.bytes_per_sync: 0 2023-11-30T22:56:21.522 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 22:56:21 smithi167 conmon[87022]: debug 2023-11-30T22:56:21.246+0000 7fc5d8e6d880 4 rocksdb: Options.wal_bytes_per_sync: 0 2023-11-30T22:56:21.522 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 22:56:21 smithi167 conmon[87022]: debug 2023-11-30T22:56:21.246+0000 7fc5d8e6d880 4 rocksdb: Options.strict_bytes_per_sync: 0 2023-11-30T22:56:21.522 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 22:56:21 smithi167 conmon[87022]: debug 2023-11-30T22:56:21.246+0000 7fc5d8e6d880 4 rocksdb: Options.compaction_readahead_size: 0 2023-11-30T22:56:21.522 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 22:56:21 smithi167 conmon[87022]: debug 2023-11-30T22:56:21.246+0000 7fc5d8e6d880 4 rocksdb: Compression algorithms supported: 2023-11-30T22:56:21.522 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 22:56:21 smithi167 conmon[87022]: debug 2023-11-30T22:56:21.246+0000 7fc5d8e6d880 4 rocksdb: kZSTDNotFinalCompression supported: 0 2023-11-30T22:56:21.522 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 22:56:21 smithi167 conmon[87022]: debug 2023-11-30T22:56:21.246+0000 7fc5d8e6d880 4 rocksdb: kZSTD supported: 0 2023-11-30T22:56:21.522 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 22:56:21 smithi167 conmon[87022]: debug 2023-11-30T22:56:21.246+0000 7fc5d8e6d880 4 rocksdb: kXpressCompression supported: 0 2023-11-30T22:56:21.523 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 22:56:21 smithi167 conmon[87022]: debug 2023-11-30T22:56:21.246+0000 7fc5d8e6d880 4 rocksdb: kLZ4HCCompression supported: 1 2023-11-30T22:56:21.523 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 22:56:21 smithi167 conmon[87022]: debug 2023-11-30T22:56:21.246+0000 7fc5d8e6d880 4 rocksdb: kLZ4Compression supported: 1 2023-11-30T22:56:21.523 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 22:56:21 smithi167 conmon[87022]: debug 2023-11-30T22:56:21.246+0000 7fc5d8e6d880 4 rocksdb: kBZip2Compression supported: 0 2023-11-30T22:56:21.523 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 22:56:21 smithi167 conmon[87022]: debug 2023-11-30T22:56:21.246+0000 7fc5d8e6d880 4 rocksdb: kZlibCompression supported: 1 2023-11-30T22:56:21.523 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 22:56:21 smithi167 conmon[87022]: debug 2023-11-30T22:56:21.246+0000 7fc5d8e6d880 4 rocksdb: kSnappyCompression supported: 1 2023-11-30T22:56:21.523 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 22:56:21 smithi167 conmon[87022]: debug 2023-11-30T22:56:21.246+0000 7fc5d8e6d880 4 rocksdb: Fast CRC32 supported: Supported on x86 2023-11-30T22:56:21.523 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 22:56:21 smithi167 conmon[87022]: debug 2023-11-30T22:56:21.246+0000 7fc5d8e6d880 4 rocksdb: [version_set.cc:4413] Recovering from manifest file: /var/lib/ceph/mon/ceph-smithi167/store.db/MANIFEST-000001 2023-11-30T22:56:21.523 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 22:56:21 smithi167 conmon[87022]: 2023-11-30T22:56:21.523 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 22:56:21 smithi167 conmon[87022]: debug 2023-11-30T22:56:21.246+0000 7fc5d8e6d880 4 rocksdb: [column_family.cc:552] --------------- Options for column family [default]: 2023-11-30T22:56:21.523 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 22:56:21 smithi167 conmon[87022]: 2023-11-30T22:56:21.523 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 22:56:21 smithi167 conmon[87022]: debug 2023-11-30T22:56:21.246+0000 7fc5d8e6d880 4 rocksdb: Options.comparator: leveldb.BytewiseComparator 2023-11-30T22:56:21.523 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 22:56:21 smithi167 conmon[87022]: debug 2023-11-30T22:56:21.246+0000 7fc5d8e6d880 4 rocksdb: Options.merge_operator: 2023-11-30T22:56:21.524 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 22:56:21 smithi167 conmon[87022]: debug 2023-11-30T22:56:21.246+0000 7fc5d8e6d880 4 rocksdb: Options.compaction_filter: None 2023-11-30T22:56:21.524 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 22:56:21 smithi167 conmon[87022]: debug 2023-11-30T22:56:21.246+0000 7fc5d8e6d880 4 rocksdb: Options.compaction_filter_factory: None 2023-11-30T22:56:21.524 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 22:56:21 smithi167 conmon[87022]: debug 2023-11-30T22:56:21.246+0000 7fc5d8e6d880 4 rocksdb: Options.memtable_factory: SkipListFactory 2023-11-30T22:56:21.524 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 22:56:21 smithi167 conmon[87022]: debug 2023-11-30T22:56:21.246+0000 7fc5d8e6d880 4 rocksdb: Options.table_factory: BlockBasedTable 2023-11-30T22:56:21.524 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 22:56:21 smithi167 conmon[87022]: debug 2023-11-30T22:56:21.246+0000 7fc5d8e6d880 4 rocksdb: table_factory options: flush_block_policy_factory: FlushBlockBySizePolicyFactory (0x5558ca2dbd28) 2023-11-30T22:56:21.524 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 22:56:21 smithi167 conmon[87022]: cache_index_and_filter_blocks: 1 2023-11-30T22:56:21.524 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 22:56:21 smithi167 conmon[87022]: cache_index_and_filter_blocks_with_high_priority: 0 2023-11-30T22:56:21.524 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 22:56:21 smithi167 conmon[87022]: pin_l0_filter_and_index_blocks_in_cache: 0 2023-11-30T22:56:21.524 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 22:56:21 smithi167 conmon[87022]: pin_top_level_index_and_filter: 1 2023-11-30T22:56:21.524 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 22:56:21 smithi167 conmon[87022]: index_type: 0 2023-11-30T22:56:21.524 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 22:56:21 smithi167 conmon[87022]: data_block_index_type: 0 2023-11-30T22:56:21.525 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 22:56:21 smithi167 conmon[87022]: index_shortening: 1 2023-11-30T22:56:21.525 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 22:56:21 smithi167 conmon[87022]: data_block_hash_table_util_ratio: 0.750000 2023-11-30T22:56:21.525 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 22:56:21 smithi167 conmon[87022]: hash_index_allow_collision: 1 2023-11-30T22:56:21.525 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 22:56:21 smithi167 conmon[87022]: checksum: 1 2023-11-30T22:56:21.525 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 22:56:21 smithi167 conmon[87022]: no_block_cache: 0 2023-11-30T22:56:21.525 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 22:56:21 smithi167 conmon[87022]: block_cache: 0x5558ca310f10 2023-11-30T22:56:21.525 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 22:56:21 smithi167 conmon[87022]: block_cache_name: BinnedLRUCache 2023-11-30T22:56:21.525 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 22:56:21 smithi167 conmon[87022]: block_cache_options: 2023-11-30T22:56:21.525 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 22:56:21 smithi167 conmon[87022]: capacity : 536870912 2023-11-30T22:56:21.525 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 22:56:21 smithi167 conmon[87022]: num_shard_bits : 4 2023-11-30T22:56:21.525 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 22:56:21 smithi167 conmon[87022]: strict_capacity_limit : 0 2023-11-30T22:56:21.525 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 22:56:21 smithi167 conmon[87022]: high_pri_pool_ratio: 0.000 2023-11-30T22:56:21.525 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 22:56:21 smithi167 conmon[87022]: block_cache_compressed: (nil) 2023-11-30T22:56:21.526 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 22:56:21 smithi167 conmon[87022]: persistent_cache: (nil) 2023-11-30T22:56:21.526 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 22:56:21 smithi167 conmon[87022]: block_size: 4096 2023-11-30T22:56:21.526 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 22:56:21 smithi167 conmon[87022]: block_size_deviation: 10 2023-11-30T22:56:21.526 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 22:56:21 smithi167 conmon[87022]: block_restart_interval: 16 2023-11-30T22:56:21.526 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 22:56:21 smithi167 conmon[87022]: index_block_restart_interval: 1 2023-11-30T22:56:21.526 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 22:56:21 smithi167 conmon[87022]: metadata_block_size: 4096 2023-11-30T22:56:21.526 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 22:56:21 smithi167 conmon[87022]: partition_filters: 0 2023-11-30T22:56:21.526 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 22:56:21 smithi167 conmon[87022]: use_delta_encoding: 1 2023-11-30T22:56:21.526 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 22:56:21 smithi167 conmon[87022]: filter_policy: rocksdb.BuiltinBloomFilter 2023-11-30T22:56:21.526 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 22:56:21 smithi167 conmon[87022]: whole_key_filtering: 1 2023-11-30T22:56:21.526 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 22:56:21 smithi167 conmon[87022]: verify_compression: 0 2023-11-30T22:56:21.526 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 22:56:21 smithi167 conmon[87022]: read_amp_bytes_per_bit: 0 2023-11-30T22:56:21.527 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 22:56:21 smithi167 conmon[87022]: format_version: 2 2023-11-30T22:56:21.527 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 22:56:21 smithi167 conmon[87022]: enable_index_compression: 1 2023-11-30T22:56:21.527 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 22:56:21 smithi167 conmon[87022]: block_align: 0 2023-11-30T22:56:21.527 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 22:56:21 smithi167 conmon[87022]: 2023-11-30T22:56:21.527 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 22:56:21 smithi167 conmon[87022]: debug 2023-11-30T22:56:21.246+0000 7fc5d8e6d880 4 rocksdb: Options.write_buffer_size: 33554432 2023-11-30T22:56:21.527 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 22:56:21 smithi167 conmon[87022]: debug 2023-11-30T22:56:21.246+0000 7fc5d8e6d880 4 rocksdb: Options.max_write_buffer_number: 2 2023-11-30T22:56:21.527 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 22:56:21 smithi167 conmon[87022]: debug 2023-11-30T22:56:21.246+0000 7fc5d8e6d880 4 rocksdb: Options.compression: NoCompression 2023-11-30T22:56:21.527 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 22:56:21 smithi167 conmon[87022]: debug 2023-11-30T22:56:21.246+0000 7fc5d8e6d880 4 rocksdb: Options.bottommost_compression: Disabled 2023-11-30T22:56:21.527 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 22:56:21 smithi167 conmon[87022]: debug 2023-11-30T22:56:21.246+0000 7fc5d8e6d880 4 rocksdb: Options.prefix_extractor: nullptr 2023-11-30T22:56:21.527 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 22:56:21 smithi167 conmon[87022]: debug 2023-11-30T22:56:21.246+0000 7fc5d8e6d880 4 rocksdb: Options.memtable_insert_with_hint_prefix_extractor: nullptr 2023-11-30T22:56:21.527 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 22:56:21 smithi167 conmon[87022]: debug 2023-11-30T22:56:21.246+0000 7fc5d8e6d880 4 rocksdb: Options.num_levels: 7 2023-11-30T22:56:21.527 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 22:56:21 smithi167 conmon[87022]: debug 2023-11-30T22:56:21.246+0000 7fc5d8e6d880 4 rocksdb: Options.min_write_buffer_number_to_merge: 1 2023-11-30T22:56:21.528 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 22:56:21 smithi167 conmon[87022]: debug 2023-11-30T22:56:21.246+0000 7fc5d8e6d880 4 rocksdb: Options.max_write_buffer_number_to_maintain: 0 2023-11-30T22:56:21.528 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 22:56:21 smithi167 conmon[87022]: debug 2023-11-30T22:56:21.246+0000 7fc5d8e6d880 4 rocksdb: Options.max_write_buffer_size_to_maintain: 0 2023-11-30T22:56:21.528 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 22:56:21 smithi167 conmon[87022]: debug 2023-11-30T22:56:21.246+0000 7fc5d8e6d880 4 rocksdb: Options.bottommost_compression_opts.window_bits: -14 2023-11-30T22:56:21.528 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 22:56:21 smithi167 conmon[87022]: debug 2023-11-30T22:56:21.246+0000 7fc5d8e6d880 4 rocksdb: Options.bottommost_compression_opts.level: 32767 2023-11-30T22:56:21.528 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 22:56:21 smithi167 conmon[87022]: debug 2023-11-30T22:56:21.246+0000 7fc5d8e6d880 4 rocksdb: Options.bottommost_compression_opts.strategy: 0 2023-11-30T22:56:21.528 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 22:56:21 smithi167 conmon[87022]: debug 2023-11-30T22:56:21.246+0000 7fc5d8e6d880 4 rocksdb: Options.bottommost_compression_opts.max_dict_bytes: 0 2023-11-30T22:56:21.528 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 22:56:21 smithi167 conmon[87022]: debug 2023-11-30T22:56:21.246+0000 7fc5d8e6d880 4 rocksdb: Options.bottommost_compression_opts.zstd_max_train_bytes: 0 2023-11-30T22:56:21.528 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 22:56:21 smithi167 conmon[87022]: debug 2023-11-30T22:56:21.246+0000 7fc5d8e6d880 4 rocksdb: Options.bottommost_compression_opts.enabled: false 2023-11-30T22:56:21.528 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 22:56:21 smithi167 conmon[87022]: debug 2023-11-30T22:56:21.246+0000 7fc5d8e6d880 4 rocksdb: Options.compression_opts.window_bits: -14 2023-11-30T22:56:21.528 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 22:56:21 smithi167 conmon[87022]: debug 2023-11-30T22:56:21.246+0000 7fc5d8e6d880 4 rocksdb: Options.compression_opts.level: 32767 2023-11-30T22:56:21.528 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 22:56:21 smithi167 conmon[87022]: debug 2023-11-30T22:56:21.246+0000 7fc5d8e6d880 4 rocksdb: Options.compression_opts.strategy: 0 2023-11-30T22:56:21.528 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 22:56:21 smithi167 conmon[87022]: debug 2023-11-30T22:56:21.246+0000 7fc5d8e6d880 4 rocksdb: Options.compression_opts.max_dict_bytes: 0 2023-11-30T22:56:21.529 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 22:56:21 smithi167 conmon[87022]: debug 2023-11-30T22:56:21.246+0000 7fc5d8e6d880 4 rocksdb: Options.compression_opts.zstd_max_train_bytes: 0 2023-11-30T22:56:21.529 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 22:56:21 smithi167 conmon[87022]: debug 2023-11-30T22:56:21.246+0000 7fc5d8e6d880 4 rocksdb: Options.compression_opts.enabled: false 2023-11-30T22:56:21.529 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 22:56:21 smithi167 conmon[87022]: debug 2023-11-30T22:56:21.246+0000 7fc5d8e6d880 4 rocksdb: Options.level0_file_num_compaction_trigger: 4 2023-11-30T22:56:21.529 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 22:56:21 smithi167 conmon[87022]: debug 2023-11-30T22:56:21.246+0000 7fc5d8e6d880 4 rocksdb: Options.level0_slowdown_writes_trigger: 20 2023-11-30T22:56:21.529 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 22:56:21 smithi167 conmon[87022]: debug 2023-11-30T22:56:21.246+0000 7fc5d8e6d880 4 rocksdb: Options.level0_stop_writes_trigger: 36 2023-11-30T22:56:21.529 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 22:56:21 smithi167 conmon[87022]: debug 2023-11-30T22:56:21.246+0000 7fc5d8e6d880 4 rocksdb: Options.target_file_size_base: 67108864 2023-11-30T22:56:21.529 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 22:56:21 smithi167 conmon[87022]: debug 2023-11-30T22:56:21.246+0000 7fc5d8e6d880 4 rocksdb: Options.target_file_size_multiplier: 1 2023-11-30T22:56:21.529 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 22:56:21 smithi167 conmon[87022]: debug 2023-11-30T22:56:21.246+0000 7fc5d8e6d880 4 rocksdb: Options.max_bytes_for_level_base: 268435456 2023-11-30T22:56:21.529 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 22:56:21 smithi167 conmon[87022]: debug 2023-11-30T22:56:21.246+0000 7fc5d8e6d880 4 rocksdb: Options.level_compaction_dynamic_level_bytes: 1 2023-11-30T22:56:21.529 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 22:56:21 smithi167 conmon[87022]: debug 2023-11-30T22:56:21.246+0000 7fc5d8e6d880 4 rocksdb: Options.max_bytes_for_level_multiplier: 10.000000 2023-11-30T22:56:21.529 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 22:56:21 smithi167 conmon[87022]: debug 2023-11-30T22:56:21.246+0000 7fc5d8e6d880 4 rocksdb: Options.max_bytes_for_level_multiplier_addtl[0]: 1 2023-11-30T22:56:21.529 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 22:56:21 smithi167 conmon[87022]: debug 2023-11-30T22:56:21.246+0000 7fc5d8e6d880 4 rocksdb: Options.max_bytes_for_level_multiplier_addtl[1]: 1 2023-11-30T22:56:21.529 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 22:56:21 smithi167 conmon[87022]: debug 2023-11-30T22:56:21.246+0000 7fc5d8e6d880 4 rocksdb: Options.max_bytes_for_level_multiplier_addtl[2]: 1 2023-11-30T22:56:21.530 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 22:56:21 smithi167 conmon[87022]: debug 2023-11-30T22:56:21.246+0000 7fc5d8e6d880 4 rocksdb: Options.max_bytes_for_level_multiplier_addtl[3]: 1 2023-11-30T22:56:21.530 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 22:56:21 smithi167 conmon[87022]: debug 2023-11-30T22:56:21.246+0000 7fc5d8e6d880 4 rocksdb: Options.max_bytes_for_level_multiplier_addtl[4]: 1 2023-11-30T22:56:21.530 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 22:56:21 smithi167 conmon[87022]: debug 2023-11-30T22:56:21.246+0000 7fc5d8e6d880 4 rocksdb: Options.max_bytes_for_level_multiplier_addtl[5]: 1 2023-11-30T22:56:21.530 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 22:56:21 smithi167 conmon[87022]: debug 2023-11-30T22:56:21.246+0000 7fc5d8e6d880 4 rocksdb: Options.max_bytes_for_level_multiplier_addtl[6]: 1 2023-11-30T22:56:21.530 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 22:56:21 smithi167 conmon[87022]: debug 2023-11-30T22:56:21.246+0000 7fc5d8e6d880 4 rocksdb: Options.max_sequential_skip_in_iterations: 8 2023-11-30T22:56:21.530 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 22:56:21 smithi167 conmon[87022]: debug 2023-11-30T22:56:21.246+0000 7fc5d8e6d880 4 rocksdb: Options.max_compaction_bytes: 1677721600 2023-11-30T22:56:21.530 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 22:56:21 smithi167 conmon[87022]: debug 2023-11-30T22:56:21.246+0000 7fc5d8e6d880 4 rocksdb: Options.arena_block_size: 4194304 2023-11-30T22:56:21.530 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 22:56:21 smithi167 conmon[87022]: debug 2023-11-30T22:56:21.246+0000 7fc5d8e6d880 4 rocksdb: Options.soft_pending_compaction_bytes_limit: 68719476736 2023-11-30T22:56:21.530 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 22:56:21 smithi167 conmon[87022]: debug 2023-11-30T22:56:21.246+0000 7fc5d8e6d880 4 rocksdb: Options.hard_pending_compaction_bytes_limit: 274877906944 2023-11-30T22:56:21.530 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 22:56:21 smithi167 conmon[87022]: debug 2023-11-30T22:56:21.246+0000 7fc5d8e6d880 4 rocksdb: Options.rate_limit_delay_max_milliseconds: 100 2023-11-30T22:56:21.531 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 22:56:21 smithi167 conmon[87022]: debug 2023-11-30T22:56:21.246+0000 7fc5d8e6d880 4 rocksdb: Options.disable_auto_compactions: 0 2023-11-30T22:56:21.531 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 22:56:21 smithi167 conmon[87022]: debug 2023-11-30T22:56:21.246+0000 7fc5d8e6d880 4 rocksdb: Options.compaction_style: kCompactionStyleLevel 2023-11-30T22:56:21.531 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 22:56:21 smithi167 conmon[87022]: debug 2023-11-30T22:56:21.246+0000 7fc5d8e6d880 4 rocksdb: Options.compaction_pri: kMinOverlappingRatio 2023-11-30T22:56:21.531 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 22:56:21 smithi167 conmon[87022]: debug 2023-11-30T22:56:21.246+0000 7fc5d8e6d880 4 rocksdb: Options.compaction_options_universal.size_ratio: 1 2023-11-30T22:56:21.531 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 22:56:21 smithi167 conmon[87022]: debug 2023-11-30T22:56:21.246+0000 7fc5d8e6d880 4 rocksdb: Options.compaction_options_universal.min_merge_width: 2 2023-11-30T22:56:21.531 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 22:56:21 smithi167 conmon[87022]: debug 2023-11-30T22:56:21.246+0000 7fc5d8e6d880 4 rocksdb: Options.compaction_options_universal.max_merge_width: 4294967295 2023-11-30T22:56:21.531 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 22:56:21 smithi167 conmon[87022]: debug 2023-11-30T22:56:21.246+0000 7fc5d8e6d880 4 rocksdb: Options.compaction_options_universal.max_size_amplification_percent: 200 2023-11-30T22:56:21.531 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 22:56:21 smithi167 conmon[87022]: debug 2023-11-30T22:56:21.246+0000 7fc5d8e6d880 4 rocksdb: Options.compaction_options_universal.compression_size_percent: -1 2023-11-30T22:56:21.532 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 22:56:21 smithi167 conmon[87022]: debug 2023-11-30T22:56:21.246+0000 7fc5d8e6d880 4 rocksdb: Options.compaction_options_universal.stop_style: kCompactionStopStyleTotalSize 2023-11-30T22:56:21.532 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 22:56:21 smithi167 conmon[87022]: debug 2023-11-30T22:56:21.246+0000 7fc5d8e6d880 4 rocksdb: Options.compaction_options_fifo.max_table_files_size: 1073741824 2023-11-30T22:56:21.532 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 22:56:21 smithi167 conmon[87022]: debug 2023-11-30T22:56:21.246+0000 7fc5d8e6d880 4 rocksdb: Options.compaction_options_fifo.allow_compaction: 0 2023-11-30T22:56:21.532 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 22:56:21 smithi167 conmon[87022]: debug 2023-11-30T22:56:21.246+0000 7fc5d8e6d880 4 rocksdb: Options.table_properties_collectors: 2023-11-30T22:56:21.532 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 22:56:21 smithi167 conmon[87022]: debug 2023-11-30T22:56:21.246+0000 7fc5d8e6d880 4 rocksdb: Options.inplace_update_support: 0 2023-11-30T22:56:21.532 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 22:56:21 smithi167 conmon[87022]: debug 2023-11-30T22:56:21.246+0000 7fc5d8e6d880 4 rocksdb: Options.inplace_update_num_locks: 10000 2023-11-30T22:56:21.532 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 22:56:21 smithi167 conmon[87022]: debug 2023-11-30T22:56:21.246+0000 7fc5d8e6d880 4 rocksdb: Options.memtable_prefix_bloom_size_ratio: 0.000000 2023-11-30T22:56:21.532 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 22:56:21 smithi167 conmon[87022]: debug 2023-11-30T22:56:21.246+0000 7fc5d8e6d880 4 rocksdb: Options.memtable_whole_key_filtering: 0 2023-11-30T22:56:21.532 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 22:56:21 smithi167 conmon[87022]: debug 2023-11-30T22:56:21.246+0000 7fc5d8e6d880 4 rocksdb: Options.memtable_huge_page_size: 0 2023-11-30T22:56:21.532 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 22:56:21 smithi167 conmon[87022]: debug 2023-11-30T22:56:21.246+0000 7fc5d8e6d880 4 rocksdb: Options.bloom_locality: 0 2023-11-30T22:56:21.532 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 22:56:21 smithi167 conmon[87022]: debug 2023-11-30T22:56:21.246+0000 7fc5d8e6d880 4 rocksdb: Options.max_successive_merges: 0 2023-11-30T22:56:21.532 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 22:56:21 smithi167 conmon[87022]: debug 2023-11-30T22:56:21.246+0000 7fc5d8e6d880 4 rocksdb: Options.optimize_filters_for_hits: 0 2023-11-30T22:56:21.532 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 22:56:21 smithi167 conmon[87022]: debug 2023-11-30T22:56:21.246+0000 7fc5d8e6d880 4 rocksdb: Options.paranoid_file_checks: 0 2023-11-30T22:56:21.533 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 22:56:21 smithi167 conmon[87022]: debug 2023-11-30T22:56:21.246+0000 7fc5d8e6d880 4 rocksdb: Options.force_consistency_checks: 0 2023-11-30T22:56:21.533 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 22:56:21 smithi167 conmon[87022]: debug 2023-11-30T22:56:21.246+0000 7fc5d8e6d880 4 rocksdb: Options.report_bg_io_stats: 0 2023-11-30T22:56:21.533 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 22:56:21 smithi167 conmon[87022]: debug 2023-11-30T22:56:21.246+0000 7fc5d8e6d880 4 rocksdb: Options.ttl: 2592000 2023-11-30T22:56:21.533 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 22:56:21 smithi167 conmon[87022]: debug 2023-11-30T22:56:21.246+0000 7fc5d8e6d880 4 rocksdb: Options.periodic_compaction_seconds: 0 2023-11-30T22:56:21.533 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 22:56:21 smithi167 conmon[87022]: debug 2023-11-30T22:56:21.247+0000 7fc5d8e6d880 4 rocksdb: [version_set.cc:4568] Recovered from manifest file:/var/lib/ceph/mon/ceph-smithi167/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-11-30T22:56:21.533 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 22:56:21 smithi167 conmon[87022]: 2023-11-30T22:56:21.533 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 22:56:21 smithi167 conmon[87022]: debug 2023-11-30T22:56:21.247+0000 7fc5d8e6d880 4 rocksdb: [version_set.cc:4577] Column family [default] (ID 0), log number is 0 2023-11-30T22:56:21.533 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 22:56:21 smithi167 conmon[87022]: 2023-11-30T22:56:21.533 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 22:56:21 smithi167 conmon[87022]: debug 2023-11-30T22:56:21.247+0000 7fc5d8e6d880 4 rocksdb: EVENT_LOG_v1 {"time_micros": 1701384981248754, "job": 1, "event": "recovery_started", "log_files": [3]} 2023-11-30T22:56:21.533 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 22:56:21 smithi167 conmon[87022]: debug 2023-11-30T22:56:21.247+0000 7fc5d8e6d880 4 rocksdb: [db_impl/db_impl_open.cc:760] Recovering log #3 mode 2 2023-11-30T22:56:21.533 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 22:56:21 smithi167 conmon[87022]: debug 2023-11-30T22:56:21.247+0000 7fc5d8e6d880 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-11-30T22:56:21.533 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 22:56:21 smithi167 conmon[87022]: debug 2023-11-30T22:56:21.247+0000 7fc5d8e6d880 4 rocksdb: EVENT_LOG_v1 {"time_micros": 1701384981249227, "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": 1701384981, "oldest_key_time": 3, "file_creation_time": 0}} 2023-11-30T22:56:21.534 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 22:56:21 smithi167 conmon[87022]: debug 2023-11-30T22:56:21.247+0000 7fc5d8e6d880 4 rocksdb: [version_set.cc:3826] Creating manifest 5 2023-11-30T22:56:21.534 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 22:56:21 smithi167 conmon[87022]: 2023-11-30T22:56:21.534 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 22:56:21 smithi167 conmon[87022]: debug 2023-11-30T22:56:21.248+0000 7fc5d8e6d880 4 rocksdb: EVENT_LOG_v1 {"time_micros": 1701384981249632, "job": 1, "event": "recovery_finished"} 2023-11-30T22:56:21.534 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 22:56:21 smithi167 conmon[87022]: debug 2023-11-30T22:56:21.248+0000 7fc5d8e6d880 4 rocksdb: DB pointer 0x5558ca3d9800 2023-11-30T22:56:21.534 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 22:56:21 smithi167 conmon[87022]: debug 2023-11-30T22:56:21.248+0000 7fc5bfc73700 4 rocksdb: [db_impl/db_impl.cc:850] ------- DUMPING STATS ------- 2023-11-30T22:56:21.534 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 22:56:21 smithi167 conmon[87022]: debug 2023-11-30T22:56:21.248+0000 7fc5bfc73700 4 rocksdb: [db_impl/db_impl.cc:851] 2023-11-30T22:56:21.534 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 22:56:21 smithi167 conmon[87022]: ** DB Stats ** 2023-11-30T22:56:21.534 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 22:56:21 smithi167 conmon[87022]: Uptime(secs): 0.0 total, 0.0 interval 2023-11-30T22:56:21.534 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 22:56:21 smithi167 conmon[87022]: Cumulative writes: 0 writes, 0 keys, 0 commit groups, 0.0 writes per commit group, ingest: 0.00 GB, 0.00 MB/s 2023-11-30T22:56:21.534 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 22:56:21 smithi167 conmon[87022]: Cumulative WAL: 0 writes, 0 syncs, 0.00 writes per sync, written: 0.00 GB, 0.00 MB/s 2023-11-30T22:56:21.534 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 22:56:21 smithi167 conmon[87022]: Cumulative stall: 00:00:0.000 H:M:S, 0.0 percent 2023-11-30T22:56:21.535 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 22:56:21 smithi167 conmon[87022]: Interval writes: 0 writes, 0 keys, 0 commit groups, 0.0 writes per commit group, ingest: 0.00 MB, 0.00 MB/s 2023-11-30T22:56:21.535 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 22:56:21 smithi167 conmon[87022]: Interval WAL: 0 writes, 0 syncs, 0.00 writes per sync, written: 0.00 MB, 0.00 MB/s 2023-11-30T22:56:21.535 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 22:56:21 smithi167 conmon[87022]: Interval stall: 00:00:0.000 H:M:S, 0.0 percent 2023-11-30T22:56:21.535 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 22:56:21 smithi167 conmon[87022]: 2023-11-30T22:56:21.535 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 22:56:21 smithi167 conmon[87022]: ** Compaction Stats [default] ** 2023-11-30T22:56:21.535 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 22:56:21 smithi167 conmon[87022]: 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-11-30T22:56:21.535 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 22:56:21 smithi167 conmon[87022]: ---------------------------------------------------------------------------------------------------------------------------------------------------------------------------- 2023-11-30T22:56:21.535 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 22:56:21 smithi167 conmon[87022]: L0 1/0 1.40 KB 0.2 0.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 3.2 0.00 0.00 1 0.000 0 0 2023-11-30T22:56:21.535 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 22:56:21 smithi167 conmon[87022]: Sum 1/0 1.40 KB 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 3.2 0.00 0.00 1 0.000 0 0 2023-11-30T22:56:21.535 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 22:56:21 smithi167 conmon[87022]: Int 0/0 0.00 KB 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 3.2 0.00 0.00 1 0.000 0 0 2023-11-30T22:56:21.535 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 22:56:21 smithi167 conmon[87022]: 2023-11-30T22:56:21.535 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 22:56:21 smithi167 conmon[87022]: ** Compaction Stats [default] ** 2023-11-30T22:56:21.536 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 22:56:21 smithi167 conmon[87022]: 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-11-30T22:56:21.536 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 22:56:21 smithi167 conmon[87022]: ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- 2023-11-30T22:56:21.536 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 22:56:21 smithi167 conmon[87022]: User 0/0 0.00 KB 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 3.2 0.00 0.00 1 0.000 0 0 2023-11-30T22:56:21.536 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 22:56:21 smithi167 conmon[87022]: Uptime(secs): 0.0 total, 0.0 interval 2023-11-30T22:56:21.536 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 22:56:21 smithi167 conmon[87022]: Flush(GB): cumulative 0.000, interval 0.000 2023-11-30T22:56:21.536 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 22:56:21 smithi167 conmon[87022]: AddFile(GB): cumulative 0.000, interval 0.000 2023-11-30T22:56:21.536 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 22:56:21 smithi167 conmon[87022]: AddFile(Total Files): cumulative 0, interval 0 2023-11-30T22:56:21.536 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 22:56:21 smithi167 conmon[87022]: AddFile(L0 Files): cumulative 0, interval 0 2023-11-30T22:56:21.536 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 22:56:21 smithi167 conmon[87022]: AddFile(Keys): cumulative 0, interval 0 2023-11-30T22:56:21.536 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 22:56:21 smithi167 conmon[87022]: Cumulative compaction: 0.00 GB write, 0.59 MB/s write, 0.00 GB read, 0.00 MB/s read, 0.0 seconds 2023-11-30T22:56:21.536 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 22:56:21 smithi167 conmon[87022]: Interval compaction: 0.00 GB write, 0.59 MB/s write, 0.00 GB read, 0.00 MB/s read, 0.0 seconds 2023-11-30T22:56:21.536 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 22:56:21 smithi167 conmon[87022]: 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-11-30T22:56:21.537 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 22:56:21 smithi167 conmon[87022]: 2023-11-30T22:56:21.537 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 22:56:21 smithi167 conmon[87022]: ** File Read Latency Histogram By Level [default] ** 2023-11-30T22:56:21.537 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 22:56:21 smithi167 conmon[87022]: 2023-11-30T22:56:21.537 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 22:56:21 smithi167 conmon[87022]: ** Compaction Stats [default] ** 2023-11-30T22:56:21.537 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 22:56:21 smithi167 conmon[87022]: 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-11-30T22:56:21.537 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 22:56:21 smithi167 conmon[87022]: ---------------------------------------------------------------------------------------------------------------------------------------------------------------------------- 2023-11-30T22:56:21.537 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 22:56:21 smithi167 conmon[87022]: L0 1/0 1.40 KB 0.2 0.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 3.2 0.00 0.00 1 0.000 0 0 2023-11-30T22:56:21.537 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 22:56:21 smithi167 conmon[87022]: Sum 1/0 1.40 KB 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 3.2 0.00 0.00 1 0.000 0 0 2023-11-30T22:56:21.537 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 22:56:21 smithi167 conmon[87022]: 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-11-30T22:56:21.537 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 22:56:21 smithi167 conmon[87022]: 2023-11-30T22:56:21.537 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 22:56:21 smithi167 conmon[87022]: ** Compaction Stats [default] ** 2023-11-30T22:56:21.537 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 22:56:21 smithi167 conmon[87022]: 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-11-30T22:56:21.538 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 22:56:21 smithi167 conmon[87022]: ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- 2023-11-30T22:56:21.538 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 22:56:21 smithi167 conmon[87022]: User 0/0 0.00 KB 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 3.2 0.00 0.00 1 0.000 0 0 2023-11-30T22:56:21.538 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 22:56:21 smithi167 conmon[87022]: Uptime(secs): 0.0 total, 0.0 interval 2023-11-30T22:56:21.538 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 22:56:21 smithi167 conmon[87022]: Flush(GB): cumulative 0.000, interval 0.000 2023-11-30T22:56:21.538 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 22:56:21 smithi167 conmon[87022]: AddFile(GB): cumulative 0.000, interval 0.000 2023-11-30T22:56:21.538 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 22:56:21 smithi167 conmon[87022]: AddFile(Total Files): cumulative 0, interval 0 2023-11-30T22:56:21.538 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 22:56:21 smithi167 conmon[87022]: AddFile(L0 Files): cumulative 0, interval 0 2023-11-30T22:56:21.538 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 22:56:21 smithi167 conmon[87022]: AddFile(Keys): cumulative 0, interval 0 2023-11-30T22:56:21.538 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 22:56:21 smithi167 conmon[87022]: Cumulative compaction: 0.00 GB write, 0.59 MB/s write, 0.00 GB read, 0.00 MB/s read, 0.0 seconds 2023-11-30T22:56:21.538 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 22:56:21 smithi167 conmon[87022]: Interval compaction: 0.00 GB write, 0.00 MB/s write, 0.00 GB read, 0.00 MB/s read, 0.0 seconds 2023-11-30T22:56:21.538 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 22:56:21 smithi167 conmon[87022]: 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-11-30T22:56:21.539 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 22:56:21 smithi167 conmon[87022]: 2023-11-30T22:56:21.539 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 22:56:21 smithi167 conmon[87022]: ** File Read Latency Histogram By Level [default] ** 2023-11-30T22:56:21.539 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 22:56:21 smithi167 conmon[87022]: 2023-11-30T22:56:21.539 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 22:56:21 smithi167 conmon[87022]: debug 2023-11-30T22:56:21.249+0000 7fc5d8e6d880 0 mon.smithi167 does not exist in monmap, will attempt to join an existing cluster 2023-11-30T22:56:21.539 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 22:56:21 smithi167 conmon[87022]: debug 2023-11-30T22:56:21.249+0000 7fc5d8e6d880 0 using public_addr v2:172.21.15.167:0/0 -> [v2:172.21.15.167:3300/0,v1:172.21.15.167:6789/0] 2023-11-30T22:56:21.539 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 22:56:21 smithi167 conmon[87022]: debug 2023-11-30T22:56:21.249+0000 7fc5d8e6d880 0 starting mon.smithi167 rank -1 at public addrs [v2:172.21.15.167:3300/0,v1:172.21.15.167:6789/0] at bind addrs [v2:172.21.15.167:3300/0,v1:172.21.15.167:6789/0] mon_data /var/lib/ceph/mon/ceph-smithi167 fsid 3faf8b00-8fd3-11ee-95a2-87774f69a715 2023-11-30T22:56:21.539 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 22:56:21 smithi167 conmon[87022]: debug 2023-11-30T22:56:21.250+0000 7fc5d8e6d880 1 mon.smithi167@-1(???) e0 preinit fsid 3faf8b00-8fd3-11ee-95a2-87774f69a715 2023-11-30T22:56:21.539 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 22:56:21 smithi167 conmon[87022]: debug 2023-11-30T22:56:21.279+0000 7fc5c2478700 0 mon.smithi167@-1(synchronizing).mds e1 new map 2023-11-30T22:56:21.539 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 22:56:21 smithi167 conmon[87022]: debug 2023-11-30T22:56:21.279+0000 7fc5c2478700 0 mon.smithi167@-1(synchronizing).mds e1 print_map 2023-11-30T22:56:21.539 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 22:56:21 smithi167 conmon[87022]: e1 2023-11-30T22:56:21.539 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 22:56:21 smithi167 conmon[87022]: enable_multiple, ever_enabled_multiple: 1,1 2023-11-30T22:56:21.540 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 22:56:21 smithi167 conmon[87022]: 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-11-30T22:56:21.540 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 22:56:21 smithi167 conmon[87022]: legacy client fscid: -1 2023-11-30T22:56:21.540 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 22:56:21 smithi167 conmon[87022]: 2023-11-30T22:56:21.540 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 22:56:21 smithi167 conmon[87022]: No filesystems configured 2023-11-30T22:56:21.540 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 22:56:21 smithi167 conmon[87022]: 2023-11-30T22:56:21.540 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 22:56:21 smithi167 conmon[87022]: debug 2023-11-30T22:56:21.279+0000 7fc5c2478700 1 mon.smithi167@-1(synchronizing).osd e0 _set_cache_ratios kv ratio 0.25 inc ratio 0.375 full ratio 0.375 2023-11-30T22:56:21.540 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 22:56:21 smithi167 conmon[87022]: debug 2023-11-30T22:56:21.280+0000 7fc5c2478700 1 mon.smithi167@-1(synchronizing).osd e0 register_cache_with_pcm pcm target: 2147483648 pcm max: 1020054732 pcm min: 134217728 inc_osd_cache size: 1 2023-11-30T22:56:21.540 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 22:56:21 smithi167 conmon[87022]: debug 2023-11-30T22:56:21.280+0000 7fc5c2478700 1 mon.smithi167@-1(synchronizing).osd e1 e1: 0 total, 0 up, 0 in 2023-11-30T22:56:21.540 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 22:56:21 smithi167 conmon[87022]: debug 2023-11-30T22:56:21.280+0000 7fc5c2478700 1 mon.smithi167@-1(synchronizing).osd e2 e2: 0 total, 0 up, 0 in 2023-11-30T22:56:21.540 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 22:56:21 smithi167 conmon[87022]: debug 2023-11-30T22:56:21.280+0000 7fc5c2478700 1 mon.smithi167@-1(synchronizing).osd e3 e3: 0 total, 0 up, 0 in 2023-11-30T22:56:21.540 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 22:56:21 smithi167 conmon[87022]: debug 2023-11-30T22:56:21.280+0000 7fc5c2478700 1 mon.smithi167@-1(synchronizing).osd e4 e4: 0 total, 0 up, 0 in 2023-11-30T22:56:21.541 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 22:56:21 smithi167 conmon[87022]: debug 2023-11-30T22:56:21.280+0000 7fc5c2478700 1 mon.smithi167@-1(synchronizing).osd e5 e5: 0 total, 0 up, 0 in 2023-11-30T22:56:21.541 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 22:56:21 smithi167 conmon[87022]: debug 2023-11-30T22:56:21.280+0000 7fc5c2478700 0 mon.smithi167@-1(synchronizing).osd e5 crush map has features 3314932999778484224, adjusting msgr requires 2023-11-30T22:56:21.541 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 22:56:21 smithi167 conmon[87022]: debug 2023-11-30T22:56:21.280+0000 7fc5c2478700 0 mon.smithi167@-1(synchronizing).osd e5 crush map has features 288514050185494528, adjusting msgr requires 2023-11-30T22:56:21.541 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 22:56:21 smithi167 conmon[87022]: debug 2023-11-30T22:56:21.280+0000 7fc5c2478700 0 mon.smithi167@-1(synchronizing).osd e5 crush map has features 288514050185494528, adjusting msgr requires 2023-11-30T22:56:21.541 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 22:56:21 smithi167 conmon[87022]: debug 2023-11-30T22:56:21.280+0000 7fc5c2478700 0 mon.smithi167@-1(synchronizing).osd e5 crush map has features 288514050185494528, adjusting msgr requires 2023-11-30T22:56:21.541 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 22:56:21 smithi167 conmon[87022]: cluster 2023-11-30T22:56:21.541 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 22:56:21 smithi167 conmon[87022]: 2023-11-30T22:56:18.187227 2023-11-30T22:56:21.541 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 22:56:21 smithi167 conmon[87022]: +0000 mgr.smithi038.ldalxq (mgr.14182) 22 : cluster 2023-11-30T22:56:21.541 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 22:56:21 smithi167 conmon[87022]: [DBG] pgmap v12: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2023-11-30T22:56:21.541 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 22:56:21 smithi167 conmon[87022]: audit 2023-11-30T22:56:19 2023-11-30T22:56:21.541 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 22:56:21 smithi167 conmon[87022]: .148433+0000 mon.smithi038 (mon.0) 174 : audit 2023-11-30T22:56:21.541 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 22:56:21 smithi167 conmon[87022]: [DBG] from='client.? 172.21.15.167:0/1490345269' entity='client.admin' cmd=[{"prefix": "mon dump", "format": "json"}]: dispatch 2023-11-30T22:56:21.541 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 22:56:21 smithi167 conmon[87022]: debug 2023-11-30T22:56:21.280+0000 7fc5c2478700 1 mon.smithi167@-1(synchronizing).paxosservice(auth 1..6) refresh upgraded, format 0 -> 3 2023-11-30T22:56:21.542 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 22:56:21 smithi167 bash[86920]: ec7f0d15a9368ded2f6d61e886cc6311e7529277ec68f8d33299c142b7d1e02c 2023-11-30T22:56:21.542 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 22:56:21 smithi167 systemd[1]: Started Ceph mon.smithi167 for 3faf8b00-8fd3-11ee-95a2-87774f69a715. 2023-11-30T22:56:26.752 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 22:56:26 smithi167 conmon[87022]: audit 2023-11-30T22:56:21.291104+0000 mon.smithi038 (mon.0) 176 : audit [DBG] from='mgr.14182 172.21.15.38:0/2999689707' entity='mgr.smithi038.ldalxq' cmd=[{"prefix": "mon metadata", "id": "smithi038"}]: dispatch 2023-11-30T22:56:26.752 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 22:56:26 smithi167 conmon[87022]: 2023-11-30T22:56:26.752 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 22:56:26 smithi167 conmon[87022]: cluster 2023-11-30T22:56:21.291400+0000 mon.smithi038 (mon.0) 177 : cluster [INF] mon.smithi038 calling monitor election 2023-11-30T22:56:26.752 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 22:56:26 smithi167 conmon[87022]: audit 2023-11-30T22:56:21.305328+0000 mon.smithi038 (mon.0) 178 : audit [DBG] from='mgr.14182 172.21.15.38:0/2999689707' entity='mgr.smithi038.ldalxq' cmd=[{"prefix": "mon metadata", "id": "smithi167"}]: dispatch 2023-11-30T22:56:26.753 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 22:56:26 smithi167 conmon[87022]: cluster 2023-11-30T22:56:22.187953+0000 mgr.smithi038.ldalxq (mgr.14182) 24 : cluster [DBG] pgmap v14: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2023-11-30T22:56:26.753 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 22:56:26 smithi167 conmon[87022]: audit 2023-11-30T22:56:22.286204+0000 mon.smithi038 (mon.0) 179 : audit [DBG] from='mgr.14182 172.21.15.38:0/2999689707' entity='mgr.smithi038.ldalxq' cmd=[{"prefix": "mon metadata", "id": "smithi167"}]: dispatch 2023-11-30T22:56:26.753 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 22:56:26 smithi167 conmon[87022]: audit 2023-11-30T22:56:22.988878+0000 mon.smithi038 (mon.0) 180 : audit [DBG] from='mgr.? 172.21.15.167:0/4253127007' entity='mgr.smithi167.wfawnr' cmd=[{"prefix": "config-key get", "key": "mgr/dashboard/smithi167.wfawnr/crt"}]: dispatch 2023-11-30T22:56:26.753 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 22:56:26 smithi167 conmon[87022]: audit 2023-11-30T22:56:23.286073+0000 mon.smithi038 (mon.0) 181 : audit [DBG] from='mgr.14182 172.21.15.38:0/2999689707' entity='mgr.smithi038.ldalxq' cmd=[{"prefix": "mon metadata", "id": "smithi167"}]: dispatch 2023-11-30T22:56:26.753 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 22:56:26 smithi167 conmon[87022]: cluster 2023-11-30T22:56:23.287223+0000 mon.smithi167 (mon.1) 1 : cluster [INF] mon.smithi167 calling monitor election 2023-11-30T22:56:26.753 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 22:56:26 smithi167 conmon[87022]: cluster 2023-11-30T22:56:24.188227+0000 mgr.smithi038.ldalxq (mgr.14182) 25 : cluster [DBG] pgmap v15: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2023-11-30T22:56:26.753 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 22:56:26 smithi167 conmon[87022]: audit 2023-11-30T22:56:24.286399+0000 mon.smithi038 (mon.0) 182 : audit [DBG] from='mgr.14182 172.21.15.38:0/2999689707' entity='mgr.smithi038.ldalxq' cmd=[{"prefix": "mon metadata", "id": "smithi167"}]: dispatch 2023-11-30T22:56:26.753 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 22:56:26 smithi167 conmon[87022]: audit 2023-11-30T22:56:25.286646+0000 mon.smithi038 (mon.0) 183 : audit [DBG] from='mgr.14182 172.21.15.38:0/2999689707' entity='mgr.smithi038.ldalxq' cmd=[{"prefix": "mon metadata", "id": "smithi167"}]: dispatch 2023-11-30T22:56:26.753 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 22:56:26 smithi167 conmon[87022]: audit 2023-11-30T22:56:26 2023-11-30T22:56:26.753 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 22:56:26 smithi167 conmon[87022]: .286712+0000 mon.smithi038 (mon.0) 184 : audit [DBG] from='mgr.14182 172.21.15.38:0/2999689707' entity='mgr.smithi038.ldalxq' cmd=[{"prefix": "mon metadata", "id": "smithi167"}]: dispatch 2023-11-30T22:56:26.753 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 22:56:26 smithi167 conmon[87022]: cluster 2023-11-30T22:56:26.320776+0000 2023-11-30T22:56:26.753 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 22:56:26 smithi167 conmon[87022]: mon.smithi038 (mon.0) 185 : cluster [INF] mon.smithi038 is new leader, mons smithi038,smithi167 in quorum (ranks 0,1) 2023-11-30T22:56:26.754 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 22:56:26 smithi167 conmon[87022]: cluster 2023-11-30T22:56:26.323908+0000 mon.smithi038 (mon.0) 186 : cluster [DBG] monmap e2: 2 mons at {smithi038=[v2:172.21.15.38:3300/0,v1:172.21.15.38:6789/0],smithi167=[v2:172.21.15.167:3300/0,v1:172.21.15.167:6789/0]} removed_ranks: {} 2023-11-30T22:56:26.754 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 22:56:26 smithi167 conmon[87022]: cluster 2023-11-30T 2023-11-30T22:56:26.754 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 22:56:26 smithi167 conmon[87022]: 22:56:26.324412+0000 mon.smithi038 (mon.0) 2023-11-30T22:56:26.754 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 22:56:26 smithi167 conmon[87022]: 187 : cluster [DBG] fsmap 2023-11-30T22:56:26.754 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 22:56:26 smithi167 conmon[87022]: cluster 2023-11- 2023-11-30T22:56:26.754 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 22:56:26 smithi167 conmon[87022]: 30T22:56:26.324445+0000 mon.smithi038 (mon.0) 188 : cluster [DBG] osdmap e5: 0 total, 0 up, 0 in 2023-11-30T22:56:26.754 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 22:56:26 smithi167 conmon[87022]: cluster 2023-11-30 2023-11-30T22:56:26.754 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 22:56:26 smithi167 conmon[87022]: T22:56:26.324665+0000 mon.smithi038 (mon.0) 189 : cluster [DBG] mgrmap e17: smithi038.ldalxq(active, since 44s) 2023-11-30T22:56:26.754 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 22:56:26 smithi167 conmon[87022]: cluster 2023-11-30T22 2023-11-30T22:56:26.754 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 22:56:26 smithi167 conmon[87022]: :56:26.326046+0000 mon.smithi038 (mon.0) 190 : cluster [DBG] Standby manager daemon smithi167.wfawnr started 2023-11-30T22:56:26.754 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 22:56:26 smithi167 conmon[87022]: audit 2023-11-30 2023-11-30T22:56:26.754 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 22:56:26 smithi167 conmon[87022]: T22:56:26.327302+0000 mon.smithi038 (mon.0) 191 : audit [DBG] from='mgr.? 172.21.15.167:0/4253127007' entity='mgr.smithi167.wfawnr' cmd=[{"prefix": "config-key get", "key": "mgr/dashboard/crt"}]: dispatch 2023-11-30T22:56:26.754 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 22:56:26 smithi167 conmon[87022]: cluster 2023-11-30T22:56 2023-11-30T22:56:26.755 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 22:56:26 smithi167 conmon[87022]: :26.329217+0000 mon.smithi038 (mon.0) 192 : cluster [INF] overall HEALTH_OK 2023-11-30T22:56:26.755 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 22:56:26 smithi167 conmon[87022]: audit 2023-11-30T22:56 2023-11-30T22:56:26.755 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 22:56:26 smithi167 conmon[87022]: :26.329841+0000 mon.smithi038 (mon.0) 193 : audit [DBG] from='mgr.? 172.21.15.167:0/4253127007' entity='mgr.smithi167.wfawnr' cmd=[{"prefix": "config-key get", "key": "mgr/dashboard/smithi167.wfawnr/key"}]: dispatch 2023-11-30T22:56:26.755 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 22:56:26 smithi167 conmon[87022]: audit 2023-11-30T22:56:26.330351+0000 2023-11-30T22:56:26.755 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 22:56:26 smithi167 conmon[87022]: mon.smithi038 (mon.0) 194 : audit [DBG] from='mgr.? 172.21.15.167:0/4253127007' entity='mgr.smithi167.wfawnr' cmd=[{"prefix": "config-key get", "key": "mgr/dashboard/key"}]: dispatch 2023-11-30T22:56:26.755 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 22:56:26 smithi167 conmon[87022]: audit 2023-11-30T22:56:26.332243+0000 mon.smithi038 (mon.0) 195 : audit [INF] from='mgr.14182 172.21.15.38:0/2999689707' entity='mgr.smithi038.ldalxq' 2023-11-30T22:56:26.755 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 22:56:26 smithi167 conmon[87022]: audit 2023-11-30T22:56:26.336201+0000 mon.smithi038 (mon 2023-11-30T22:56:26.755 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 22:56:26 smithi167 conmon[87022]: .0) 196 : audit [INF] from='mgr.14182 172.21.15.38:0/2999689707' entity='mgr.smithi038.ldalxq' 2023-11-30T22:56:26.774 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:56:26 smithi038 conmon[81956]: audit 2023-11-30T22:56:21.291104+0000 mon.smithi038 (mon.0) 176 2023-11-30T22:56:26.775 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:56:26 smithi038 conmon[81956]: : audit [DBG] from='mgr.14182 172.21.15.38:0/2999689707' entity='mgr.smithi038.ldalxq' cmd=[{"prefix": "mon metadata", "id": "smithi038"}]: dispatch 2023-11-30T22:56:26.775 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:56:26 smithi038 conmon[81956]: cluster 2023-11-30T22:56:21.291400+0000 mon.smithi038 (mon.0) 177 : cluster [INF] mon.smithi038 calling monitor election 2023-11-30T22:56:26.775 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:56:26 smithi038 conmon[81956]: audit 2023 2023-11-30T22:56:26.775 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:56:26 smithi038 conmon[81956]: -11-30T22:56:21.305328+0000 mon.smithi038 (mon.0) 178 : audit [DBG] from='mgr.14182 172.21.15.38:0/2999689707' entity='mgr.smithi038.ldalxq' cmd=[{"prefix": "mon metadata", "id": "smithi167"}]: dispatch 2023-11-30T22:56:26.775 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:56:26 smithi038 conmon[81956]: cluster 2023-11-30T 2023-11-30T22:56:26.775 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:56:26 smithi038 conmon[81956]: 22:56:22.187953+0000 mgr.smithi038.ldalxq (mgr.14182) 24 : cluster [DBG] pgmap v14: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2023-11-30T22:56:26.775 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:56:26 smithi038 conmon[81956]: audit 2023-11-30T22:56:22.286204+0000 mon.smithi038 (mon 2023-11-30T22:56:26.775 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:56:26 smithi038 conmon[81956]: .0) 179 : audit [DBG] from='mgr.14182 172.21.15.38:0/2999689707' entity='mgr.smithi038.ldalxq' cmd=[{"prefix": "mon metadata", "id": "smithi167"}]: dispatch 2023-11-30T22:56:26.775 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:56:26 smithi038 conmon[81956]: audit 2023-11-30T22:56:26.775 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:56:26 smithi038 conmon[81956]: 2023-11-30T22:56:22.988878+0000 mon.smithi038 (mon.0) 180 : audit [DBG] from='mgr.? 172.21.15.167:0/4253127007' entity='mgr.smithi167.wfawnr' cmd=[{"prefix": "config-key get", "key": "mgr/dashboard/smithi167.wfawnr/crt"}]: dispatch 2023-11-30T22:56:26.775 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:56:26 smithi038 conmon[81956]: audit 2023-11-30T22:56:23.286073+0000 2023-11-30T22:56:26.775 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:56:26 smithi038 conmon[81956]: mon.smithi038 (mon.0) 181 : audit [DBG] from='mgr.14182 172.21.15.38:0/2999689707' entity='mgr.smithi038.ldalxq' cmd=[{"prefix": "mon metadata", "id": "smithi167"}]: dispatch 2023-11-30T22:56:26.776 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:56:26 smithi038 conmon[81956]: cluster 2023-11-30T22:56:23.287223+0000 mon.smithi167 (mon.1 2023-11-30T22:56:26.776 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:56:26 smithi038 conmon[81956]: ) 1 : cluster [INF] mon.smithi167 calling monitor election 2023-11-30T22:56:26.776 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:56:26 smithi038 conmon[81956]: cluster 2023 2023-11-30T22:56:26.776 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:56:26 smithi038 conmon[81956]: -11-30T22:56:24.188227+0000 mgr.smithi038.ldalxq (mgr.14182) 25 : cluster [DBG] pgmap v15: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2023-11-30T22:56:26.776 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:56:26 smithi038 conmon[81956]: 2023-11-30T22:56:26.776 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:56:26 smithi038 conmon[81956]: audit 2023-11-30T22:56:24 2023-11-30T22:56:26.776 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:56:26 smithi038 conmon[81956]: .286399+0000 mon.smithi038 (mon.0) 182 : audit [DBG] from='mgr.14182 172.21.15.38:0/2999689707' entity='mgr.smithi038.ldalxq' cmd=[{"prefix": "mon metadata", "id": "smithi167"}]: dispatch 2023-11-30T22:56:26.776 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:56:26 smithi038 conmon[81956]: audit 2023 2023-11-30T22:56:26.776 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:56:26 smithi038 conmon[81956]: -11-30T22:56:25.286646+0000 mon.smithi038 (mon.0) 183 : audit [DBG] from='mgr.14182 172.21.15.38:0/2999689707' entity='mgr.smithi038.ldalxq' cmd=[{"prefix": "mon metadata", "id": "smithi167"}]: dispatch 2023-11-30T22:56:26.776 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:56:26 smithi038 conmon[81956]: audit 2023-11-30T22:56:26.286712+0000 mon.smithi038 (mon. 2023-11-30T22:56:26.776 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:56:26 smithi038 conmon[81956]: 0) 184 : audit [DBG] from='mgr.14182 172.21.15.38:0/2999689707' entity='mgr.smithi038.ldalxq' cmd=[{"prefix": "mon metadata", "id": "smithi167"}]: dispatch 2023-11-30T22:56:26.776 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:56:26 smithi038 conmon[81956]: cluster 2023-11-30T22:56:26.777 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:56:26 smithi038 conmon[81956]: 2023-11-30T22:56:26.320776+0000 mon.smithi038 (mon.0) 185 : cluster [INF] mon.smithi038 is new leader, mons smithi038,smithi167 in quorum (ranks 0,1) 2023-11-30T22:56:26.777 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:56:26 smithi038 conmon[81956]: cluster 2023-11-30T22:56:26. 2023-11-30T22:56:26.777 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:56:26 smithi038 conmon[81956]: 323908+0000 mon.smithi038 (mon.0) 186 : cluster [DBG] monmap e2: 2 mons at {smithi038=[v2:172.21.15.38:3300/0,v1:172.21.15.38:6789/0],smithi167=[v2:172.21.15.167:3300/0,v1:172.21.15.167:6789/0]} removed_ranks: {} 2023-11-30T22:56:26.777 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:56:26 smithi038 conmon[81956]: cluster 2023-11-30T22:56:26.324412+0000 mon.smithi038 2023-11-30T22:56:26.777 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:56:26 smithi038 conmon[81956]: (mon.0) 187 : cluster [DBG] fsmap 2023-11-30T22:56:26.777 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:56:26 smithi038 conmon[81956]: cluster 2023-11-30T22:56:26.324445+0000 mon.smithi038 (mon 2023-11-30T22:56:26.777 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:56:26 smithi038 conmon[81956]: .0) 188 : cluster [DBG] osdmap e5: 0 total, 0 up, 0 in 2023-11-30T22:56:26.777 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:56:26 smithi038 conmon[81956]: cluster 2023- 2023-11-30T22:56:26.777 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:56:26 smithi038 conmon[81956]: 11-30T22:56:26.324665+0000 mon.smithi038 (mon.0) 189 : cluster [DBG] mgrmap e17: smithi038.ldalxq(active, since 44s) 2023-11-30T22:56:26.777 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:56:26 smithi038 conmon[81956]: cluster 2023-11-30T22:56:26.326046+0000 2023-11-30T22:56:26.777 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:56:26 smithi038 conmon[81956]: mon.smithi038 (mon.0) 190 : cluster [DBG] Standby manager daemon smithi167.wfawnr started 2023-11-30T22:56:26.777 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:56:26 smithi038 conmon[81956]: audit 2023-11-30T22:56:26.327302+0000 mon.smithi038 (mon 2023-11-30T22:56:26.777 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:56:26 smithi038 conmon[81956]: .0) 191 : audit [DBG] from='mgr.? 172.21.15.167:0/4253127007' entity='mgr.smithi167.wfawnr' cmd=[{"prefix": "config-key get", "key": "mgr/dashboard/crt"}]: dispatch 2023-11-30T22:56:26.778 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:56:26 smithi038 conmon[81956]: cluster 2023-11-30T22:56:26.329217+0000 mon.smithi038 (mon 2023-11-30T22:56:26.778 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:56:26 smithi038 conmon[81956]: .0) 192 : cluster [INF] overall HEALTH_OK 2023-11-30T22:56:26.778 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:56:26 smithi038 conmon[81956]: audit 2023-11-30T22:56:26.329841+0000 2023-11-30T22:56:26.778 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:56:26 smithi038 conmon[81956]: mon.smithi038 (mon.0) 193 : audit [DBG] from='mgr.? 172.21.15.167:0/4253127007' entity='mgr.smithi167.wfawnr' cmd=[{"prefix": "config-key get", "key": "mgr/dashboard/smithi167.wfawnr/key"}]: dispatch 2023-11-30T22:56:26.778 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:56:26 smithi038 conmon[81956]: audit 2023-11-30T22:56:26.330351+0000 mon.smithi038 (mon.0) 194 : audit 2023-11-30T22:56:26.778 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:56:26 smithi038 conmon[81956]: [DBG] from='mgr.? 172.21.15.167:0/4253127007' entity='mgr.smithi167.wfawnr' cmd=[{"prefix": "config-key get", "key": "mgr/dashboard/key"}]: dispatch 2023-11-30T22:56:26.778 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:56:26 smithi038 conmon[81956]: audit 2023-11-30T22 2023-11-30T22:56:26.778 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:56:26 smithi038 conmon[81956]: :56:26.332243+0000 mon.smithi038 (mon.0) 195 : audit [INF] from='mgr.14182 172.21.15.38:0/2999689707' entity='mgr.smithi038.ldalxq' 2023-11-30T22:56:26.778 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:56:26 smithi038 conmon[81956]: audit 2023-11-30T22:56:26.778 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:56:26 smithi038 conmon[81956]: 2023-11-30T22:56:26.336201+0000 mon.smithi038 (mon.0) 196 : audit [INF] from='mgr.14182 172.21.15.38:0/2999689707' entity='mgr.smithi038.ldalxq' 2023-11-30T22:56:26.778 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:56:26 smithi038 conmon[81956]: 2023-11-30T22:56:26.988 INFO:teuthology.orchestra.run.smithi167.stdout: 2023-11-30T22:56:26.988 INFO:teuthology.orchestra.run.smithi167.stdout:{"epoch":2,"fsid":"3faf8b00-8fd3-11ee-95a2-87774f69a715","modified":"2023-11-30T22:56:21.286236Z","created":"2023-11-30T22:53:58.638783Z","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":"smithi038","public_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.38:3300","nonce":0},{"type":"v1","addr":"172.21.15.38:6789","nonce":0}]},"addr":"172.21.15.38:6789/0","public_addr":"172.21.15.38:6789/0","priority":0,"weight":0,"crush_location":"{}"},{"rank":1,"name":"smithi167","public_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.167:3300","nonce":0},{"type":"v1","addr":"172.21.15.167:6789","nonce":0}]},"addr":"172.21.15.167:6789/0","public_addr":"172.21.15.167:6789/0","priority":0,"weight":0,"crush_location":"{}"}],"quorum":[0,1]} 2023-11-30T22:56:26.990 INFO:teuthology.orchestra.run.smithi167.stderr:dumped monmap epoch 2 2023-11-30T22:56:27.437 INFO:tasks.cephadm:Generating final ceph.conf file... 2023-11-30T22:56:27.437 DEBUG:teuthology.orchestra.run.smithi038:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:0dc074ce0b0b3b4f393f56dd32ef36884ebf45a9 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 3faf8b00-8fd3-11ee-95a2-87774f69a715 -- ceph config generate-minimal-conf 2023-11-30T22:56:27.762 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 22:56:27 smithi167 conmon[87022]: cluster 2023-11-30T22:56:26.188457+0000 mgr.smithi038.ldalxq (mgr.14182) 26 : cluster [DBG] pgmap v16: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2023-11-30T22:56:27.762 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 22:56:27 smithi167 conmon[87022]: cephadm 2023-11-30T22:56:26.334571+0000 mgr.smithi038.ldalxq (mgr.14182) 27 : cephadm [INF] Deploying daemon node-exporter.smithi167 on smithi167 2023-11-30T22:56:27.762 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 22:56:27 smithi167 conmon[87022]: cluster 2023-11-30T22:56:26.387053+0000 mon.smithi038 (mon.0) 197 : cluster [DBG] mgrmap e18: smithi038.ldalxq(active, since 44s), standbys: smithi167.wfawnr 2023-11-30T22:56:27.762 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 22:56:27 smithi167 conmon[87022]: audit 2023-11-30T22:56:26.396391+0000 mon.smithi038 (mon.0) 198 : audit [DBG] from='mgr.14182 172.21.15.38:0/2999689707' entity='mgr.smithi038.ldalxq' cmd=[{"prefix": "mgr metadata", "who": "smithi167.wfawnr", "id": "smithi167.wfawnr"}]: dispatch 2023-11-30T22:56:27.762 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 22:56:27 smithi167 conmon[87022]: audit 2023-11-30T22:56:26.986860+0000 mon.smithi038 (mon.0) 199 : audit [DBG] from='client.? 172.21.15.167:0/3423049314' entity='client.admin' cmd=[{"prefix": "mon dump", "format": "json"}]: dispatch 2023-11-30T22:56:27.762 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 22:56:27 smithi167 conmon[87022]: audit 2023-11-30T22:56:27.286775+0000 mon.smithi038 (mon.0) 200 : audit [DBG] from='mgr.14182 172.21.15.38:0/2999689707' entity='mgr.smithi038.ldalxq' cmd=[{"prefix": "mon metadata", "id": "smithi167"}]: dispatch 2023-11-30T22:56:27.774 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:56:27 smithi038 conmon[81956]: cluster 2023-11-30T22:56:26.188457+0000 mgr.smithi038.ldalxq (mgr.14182) 26 : cluster [DBG] pgmap v16: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2023-11-30T22:56:27.774 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:56:27 smithi038 conmon[81956]: cephadm 2023-11-30T22:56:26.334571+0000 mgr.smithi038.ldalxq (mgr.14182) 27 : cephadm [INF] Deploying daemon node-exporter.smithi167 on smithi167 2023-11-30T22:56:27.774 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:56:27 smithi038 conmon[81956]: cluster 2023-11-30T22:56:26.387053+0000 mon.smithi038 (mon.0) 197 : cluster [DBG] mgrmap e18: smithi038.ldalxq(active, since 44s), standbys: smithi167.wfawnr 2023-11-30T22:56:27.774 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:56:27 smithi038 conmon[81956]: audit 2023-11-30T22:56:26.396391+0000 mon.smithi038 (mon.0) 198 : audit [DBG] from='mgr.14182 172.21.15.38:0/2999689707' entity='mgr.smithi038.ldalxq' cmd=[{"prefix": "mgr metadata", "who": "smithi167.wfawnr", "id": "smithi167.wfawnr"}]: dispatch 2023-11-30T22:56:27.774 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:56:27 smithi038 conmon[81956]: audit 2023-11-30T22:56:26.986860 2023-11-30T22:56:27.774 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:56:27 smithi038 conmon[81956]: +0000 mon.smithi038 (mon.0) 199 : audit [DBG] from='client.? 172.21.15.167:0/3423049314' entity='client.admin' cmd=[{"prefix": "mon dump", "format": "json"}]: dispatch 2023-11-30T22:56:27.774 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:56:27 smithi038 conmon[81956]: audit 2023-11-30T22:56:27.286775+0000 mon.smithi038 ( 2023-11-30T22:56:27.774 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:56:27 smithi038 conmon[81956]: mon.0) 200 : audit [DBG] from='mgr.14182 172.21.15.38:0/2999689707' entity='mgr.smithi038.ldalxq' cmd=[{"prefix": "mon metadata", "id": "smithi167"}]: dispatch 2023-11-30T22:56:29.164 INFO:teuthology.orchestra.run.smithi038.stdout:# minimal ceph.conf for 3faf8b00-8fd3-11ee-95a2-87774f69a715 2023-11-30T22:56:29.164 INFO:teuthology.orchestra.run.smithi038.stdout:[global] 2023-11-30T22:56:29.165 INFO:teuthology.orchestra.run.smithi038.stdout: fsid = 3faf8b00-8fd3-11ee-95a2-87774f69a715 2023-11-30T22:56:29.165 INFO:teuthology.orchestra.run.smithi038.stdout: mon_host = [v2:172.21.15.38:3300/0,v1:172.21.15.38:6789/0] [v2:172.21.15.167:3300/0,v1:172.21.15.167:6789/0] 2023-11-30T22:56:29.524 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:56:29 smithi038 conmon[81956]: cluster 2023-11-30T22:56:28.188729+0000 mgr.smithi038.ldalxq (mgr.14182 2023-11-30T22:56:29.524 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:56:29 smithi038 conmon[81956]: ) 28 : cluster [DBG] pgmap v17: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2023-11-30T22:56:29.524 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:56:29 smithi038 conmon[81956]: audit 2023-11-30T22:56:29.164334+0000 mon.smithi038 (mon.0) 201 : audit 2023-11-30T22:56:29.524 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:56:29 smithi038 conmon[81956]: [DBG] from='client.? 172.21.15.38:0/453668240' entity='client.admin' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2023-11-30T22:56:29.607 INFO:tasks.cephadm:Distributing (final) config and client.admin keyring... 2023-11-30T22:56:29.607 DEBUG:teuthology.orchestra.run.smithi038:> set -ex 2023-11-30T22:56:29.607 DEBUG:teuthology.orchestra.run.smithi038:> sudo dd of=/etc/ceph/ceph.conf 2023-11-30T22:56:29.635 DEBUG:teuthology.orchestra.run.smithi038:> set -ex 2023-11-30T22:56:29.636 DEBUG:teuthology.orchestra.run.smithi038:> sudo dd of=/etc/ceph/ceph.client.admin.keyring 2023-11-30T22:56:29.701 DEBUG:teuthology.orchestra.run.smithi167:> set -ex 2023-11-30T22:56:29.701 DEBUG:teuthology.orchestra.run.smithi167:> sudo dd of=/etc/ceph/ceph.conf 2023-11-30T22:56:29.737 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 22:56:29 smithi167 conmon[87022]: cluster 2023-11-30T22:56:28.188729+0000 mgr.smithi038.ldalxq (mgr.14182) 28 : cluster [DBG] pgmap v17: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2023-11-30T22:56:29.738 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 22:56:29 smithi167 conmon[87022]: audit 2023-11-30T22:56:29.164334+0000 mon.smithi038 (mon.0) 201 : audit [DBG] from='client.? 172.21.15.38:0/453668240' entity='client.admin' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2023-11-30T22:56:29.742 DEBUG:teuthology.orchestra.run.smithi167:> set -ex 2023-11-30T22:56:29.742 DEBUG:teuthology.orchestra.run.smithi167:> sudo dd of=/etc/ceph/ceph.client.admin.keyring 2023-11-30T22:56:29.806 INFO:tasks.cephadm:Deploying OSDs... 2023-11-30T22:56:29.806 DEBUG:teuthology.orchestra.run.smithi038:> set -ex 2023-11-30T22:56:29.806 DEBUG:teuthology.orchestra.run.smithi038:> dd if=/scratch_devs of=/dev/stdout 2023-11-30T22:56:29.821 DEBUG:teuthology.misc:devs=['/dev/nvme1n1', '/dev/nvme2n1', '/dev/nvme3n1', '/dev/nvme4n1'] 2023-11-30T22:56:29.822 DEBUG:teuthology.orchestra.run.smithi038:> stat /dev/nvme1n1 2023-11-30T22:56:29.877 INFO:teuthology.orchestra.run.smithi038.stdout: File: /dev/nvme1n1 2023-11-30T22:56:29.878 INFO:teuthology.orchestra.run.smithi038.stdout: Size: 0 Blocks: 0 IO Block: 4096 block special file 2023-11-30T22:56:29.878 INFO:teuthology.orchestra.run.smithi038.stdout:Device: 6h/6d Inode: 245789 Links: 1 Device type: 103,1 2023-11-30T22:56:29.878 INFO:teuthology.orchestra.run.smithi038.stdout:Access: (0660/brw-rw----) Uid: ( 0/ root) Gid: ( 6/ disk) 2023-11-30T22:56:29.878 INFO:teuthology.orchestra.run.smithi038.stdout:Context: system_u:object_r:nvme_device_t:s0 2023-11-30T22:56:29.878 INFO:teuthology.orchestra.run.smithi038.stdout:Access: 2023-11-30 22:55:06.467936292 +0000 2023-11-30T22:56:29.878 INFO:teuthology.orchestra.run.smithi038.stdout:Modify: 2023-11-30 22:55:06.411937307 +0000 2023-11-30T22:56:29.878 INFO:teuthology.orchestra.run.smithi038.stdout:Change: 2023-11-30 22:55:06.411937307 +0000 2023-11-30T22:56:29.878 INFO:teuthology.orchestra.run.smithi038.stdout: Birth: - 2023-11-30T22:56:29.878 DEBUG:teuthology.orchestra.run.smithi038:> sudo dd if=/dev/nvme1n1 of=/dev/null count=1 2023-11-30T22:56:29.942 INFO:teuthology.orchestra.run.smithi038.stderr:1+0 records in 2023-11-30T22:56:29.942 INFO:teuthology.orchestra.run.smithi038.stderr:1+0 records out 2023-11-30T22:56:29.943 INFO:teuthology.orchestra.run.smithi038.stderr:512 bytes copied, 0.000304285 s, 1.7 MB/s 2023-11-30T22:56:29.943 DEBUG:teuthology.orchestra.run.smithi038:> ! mount | grep -v devtmpfs | grep -q /dev/nvme1n1 2023-11-30T22:56:30.000 DEBUG:teuthology.orchestra.run.smithi038:> stat /dev/nvme2n1 2023-11-30T22:56:30.056 INFO:teuthology.orchestra.run.smithi038.stdout: File: /dev/nvme2n1 2023-11-30T22:56:30.056 INFO:teuthology.orchestra.run.smithi038.stdout: Size: 0 Blocks: 0 IO Block: 4096 block special file 2023-11-30T22:56:30.056 INFO:teuthology.orchestra.run.smithi038.stdout:Device: 6h/6d Inode: 245893 Links: 1 Device type: 103,2 2023-11-30T22:56:30.056 INFO:teuthology.orchestra.run.smithi038.stdout:Access: (0660/brw-rw----) Uid: ( 0/ root) Gid: ( 6/ disk) 2023-11-30T22:56:30.057 INFO:teuthology.orchestra.run.smithi038.stdout:Context: system_u:object_r:nvme_device_t:s0 2023-11-30T22:56:30.057 INFO:teuthology.orchestra.run.smithi038.stdout:Access: 2023-11-30 22:55:06.480936056 +0000 2023-11-30T22:56:30.057 INFO:teuthology.orchestra.run.smithi038.stdout:Modify: 2023-11-30 22:55:06.413937271 +0000 2023-11-30T22:56:30.057 INFO:teuthology.orchestra.run.smithi038.stdout:Change: 2023-11-30 22:55:06.413937271 +0000 2023-11-30T22:56:30.057 INFO:teuthology.orchestra.run.smithi038.stdout: Birth: - 2023-11-30T22:56:30.058 DEBUG:teuthology.orchestra.run.smithi038:> sudo dd if=/dev/nvme2n1 of=/dev/null count=1 2023-11-30T22:56:30.120 INFO:teuthology.orchestra.run.smithi038.stderr:1+0 records in 2023-11-30T22:56:30.120 INFO:teuthology.orchestra.run.smithi038.stderr:1+0 records out 2023-11-30T22:56:30.120 INFO:teuthology.orchestra.run.smithi038.stderr:512 bytes copied, 0.000396758 s, 1.3 MB/s 2023-11-30T22:56:30.121 DEBUG:teuthology.orchestra.run.smithi038:> ! mount | grep -v devtmpfs | grep -q /dev/nvme2n1 2023-11-30T22:56:30.179 DEBUG:teuthology.orchestra.run.smithi038:> stat /dev/nvme3n1 2023-11-30T22:56:30.235 INFO:teuthology.orchestra.run.smithi038.stdout: File: /dev/nvme3n1 2023-11-30T22:56:30.235 INFO:teuthology.orchestra.run.smithi038.stdout: Size: 0 Blocks: 0 IO Block: 4096 block special file 2023-11-30T22:56:30.235 INFO:teuthology.orchestra.run.smithi038.stdout:Device: 6h/6d Inode: 245955 Links: 1 Device type: 103,3 2023-11-30T22:56:30.235 INFO:teuthology.orchestra.run.smithi038.stdout:Access: (0660/brw-rw----) Uid: ( 0/ root) Gid: ( 6/ disk) 2023-11-30T22:56:30.235 INFO:teuthology.orchestra.run.smithi038.stdout:Context: system_u:object_r:nvme_device_t:s0 2023-11-30T22:56:30.235 INFO:teuthology.orchestra.run.smithi038.stdout:Access: 2023-11-30 22:55:06.494935802 +0000 2023-11-30T22:56:30.235 INFO:teuthology.orchestra.run.smithi038.stdout:Modify: 2023-11-30 22:55:06.417937198 +0000 2023-11-30T22:56:30.236 INFO:teuthology.orchestra.run.smithi038.stdout:Change: 2023-11-30 22:55:06.417937198 +0000 2023-11-30T22:56:30.236 INFO:teuthology.orchestra.run.smithi038.stdout: Birth: - 2023-11-30T22:56:30.236 DEBUG:teuthology.orchestra.run.smithi038:> sudo dd if=/dev/nvme3n1 of=/dev/null count=1 2023-11-30T22:56:30.298 INFO:teuthology.orchestra.run.smithi038.stderr:1+0 records in 2023-11-30T22:56:30.299 INFO:teuthology.orchestra.run.smithi038.stderr:1+0 records out 2023-11-30T22:56:30.299 INFO:teuthology.orchestra.run.smithi038.stderr:512 bytes copied, 0.000312947 s, 1.6 MB/s 2023-11-30T22:56:30.300 DEBUG:teuthology.orchestra.run.smithi038:> ! mount | grep -v devtmpfs | grep -q /dev/nvme3n1 2023-11-30T22:56:30.356 DEBUG:teuthology.orchestra.run.smithi038:> stat /dev/nvme4n1 2023-11-30T22:56:30.413 INFO:teuthology.orchestra.run.smithi038.stdout: File: /dev/nvme4n1 2023-11-30T22:56:30.413 INFO:teuthology.orchestra.run.smithi038.stdout: Size: 0 Blocks: 0 IO Block: 4096 block special file 2023-11-30T22:56:30.413 INFO:teuthology.orchestra.run.smithi038.stdout:Device: 6h/6d Inode: 246012 Links: 1 Device type: 103,4 2023-11-30T22:56:30.413 INFO:teuthology.orchestra.run.smithi038.stdout:Access: (0660/brw-rw----) Uid: ( 0/ root) Gid: ( 6/ disk) 2023-11-30T22:56:30.414 INFO:teuthology.orchestra.run.smithi038.stdout:Context: system_u:object_r:nvme_device_t:s0 2023-11-30T22:56:30.414 INFO:teuthology.orchestra.run.smithi038.stdout:Access: 2023-11-30 22:55:06.507935566 +0000 2023-11-30T22:56:30.414 INFO:teuthology.orchestra.run.smithi038.stdout:Modify: 2023-11-30 22:55:06.419937162 +0000 2023-11-30T22:56:30.414 INFO:teuthology.orchestra.run.smithi038.stdout:Change: 2023-11-30 22:55:06.419937162 +0000 2023-11-30T22:56:30.414 INFO:teuthology.orchestra.run.smithi038.stdout: Birth: - 2023-11-30T22:56:30.414 DEBUG:teuthology.orchestra.run.smithi038:> sudo dd if=/dev/nvme4n1 of=/dev/null count=1 2023-11-30T22:56:30.477 INFO:teuthology.orchestra.run.smithi038.stderr:1+0 records in 2023-11-30T22:56:30.478 INFO:teuthology.orchestra.run.smithi038.stderr:1+0 records out 2023-11-30T22:56:30.478 INFO:teuthology.orchestra.run.smithi038.stderr:512 bytes copied, 0.000317176 s, 1.6 MB/s 2023-11-30T22:56:30.479 DEBUG:teuthology.orchestra.run.smithi038:> ! mount | grep -v devtmpfs | grep -q /dev/nvme4n1 2023-11-30T22:56:30.535 DEBUG:teuthology.orchestra.run.smithi167:> set -ex 2023-11-30T22:56:30.535 DEBUG:teuthology.orchestra.run.smithi167:> dd if=/scratch_devs of=/dev/stdout 2023-11-30T22:56:30.550 DEBUG:teuthology.misc:devs=['/dev/nvme1n1', '/dev/nvme2n1', '/dev/nvme3n1', '/dev/nvme4n1'] 2023-11-30T22:56:30.550 DEBUG:teuthology.orchestra.run.smithi167:> stat /dev/nvme1n1 2023-11-30T22:56:30.605 INFO:teuthology.orchestra.run.smithi167.stdout: File: /dev/nvme1n1 2023-11-30T22:56:30.606 INFO:teuthology.orchestra.run.smithi167.stdout: Size: 0 Blocks: 0 IO Block: 4096 block special file 2023-11-30T22:56:30.606 INFO:teuthology.orchestra.run.smithi167.stdout:Device: 6h/6d Inode: 241909 Links: 1 Device type: 103,1 2023-11-30T22:56:30.606 INFO:teuthology.orchestra.run.smithi167.stdout:Access: (0660/brw-rw----) Uid: ( 0/ root) Gid: ( 6/ disk) 2023-11-30T22:56:30.606 INFO:teuthology.orchestra.run.smithi167.stdout:Context: system_u:object_r:nvme_device_t:s0 2023-11-30T22:56:30.606 INFO:teuthology.orchestra.run.smithi167.stdout:Access: 2023-11-30 22:56:01.110139046 +0000 2023-11-30T22:56:30.606 INFO:teuthology.orchestra.run.smithi167.stdout:Modify: 2023-11-30 22:56:01.055140012 +0000 2023-11-30T22:56:30.606 INFO:teuthology.orchestra.run.smithi167.stdout:Change: 2023-11-30 22:56:01.055140012 +0000 2023-11-30T22:56:30.606 INFO:teuthology.orchestra.run.smithi167.stdout: Birth: - 2023-11-30T22:56:30.606 DEBUG:teuthology.orchestra.run.smithi167:> sudo dd if=/dev/nvme1n1 of=/dev/null count=1 2023-11-30T22:56:30.671 INFO:teuthology.orchestra.run.smithi167.stderr:1+0 records in 2023-11-30T22:56:30.672 INFO:teuthology.orchestra.run.smithi167.stderr:1+0 records out 2023-11-30T22:56:30.672 INFO:teuthology.orchestra.run.smithi167.stderr:512 bytes copied, 0.000276584 s, 1.9 MB/s 2023-11-30T22:56:30.673 DEBUG:teuthology.orchestra.run.smithi167:> ! mount | grep -v devtmpfs | grep -q /dev/nvme1n1 2023-11-30T22:56:30.729 DEBUG:teuthology.orchestra.run.smithi167:> stat /dev/nvme2n1 2023-11-30T22:56:30.784 INFO:teuthology.orchestra.run.smithi167.stdout: File: /dev/nvme2n1 2023-11-30T22:56:30.784 INFO:teuthology.orchestra.run.smithi167.stdout: Size: 0 Blocks: 0 IO Block: 4096 block special file 2023-11-30T22:56:30.784 INFO:teuthology.orchestra.run.smithi167.stdout:Device: 6h/6d Inode: 246027 Links: 1 Device type: 103,2 2023-11-30T22:56:30.785 INFO:teuthology.orchestra.run.smithi167.stdout:Access: (0660/brw-rw----) Uid: ( 0/ root) Gid: ( 6/ disk) 2023-11-30T22:56:30.785 INFO:teuthology.orchestra.run.smithi167.stdout:Context: system_u:object_r:nvme_device_t:s0 2023-11-30T22:56:30.785 INFO:teuthology.orchestra.run.smithi167.stdout:Access: 2023-11-30 22:56:01.120138871 +0000 2023-11-30T22:56:30.785 INFO:teuthology.orchestra.run.smithi167.stdout:Modify: 2023-11-30 22:56:01.057139976 +0000 2023-11-30T22:56:30.785 INFO:teuthology.orchestra.run.smithi167.stdout:Change: 2023-11-30 22:56:01.057139976 +0000 2023-11-30T22:56:30.785 INFO:teuthology.orchestra.run.smithi167.stdout: Birth: - 2023-11-30T22:56:30.785 DEBUG:teuthology.orchestra.run.smithi167:> sudo dd if=/dev/nvme2n1 of=/dev/null count=1 2023-11-30T22:56:30.847 INFO:teuthology.orchestra.run.smithi167.stderr:1+0 records in 2023-11-30T22:56:30.847 INFO:teuthology.orchestra.run.smithi167.stderr:1+0 records out 2023-11-30T22:56:30.847 INFO:teuthology.orchestra.run.smithi167.stderr:512 bytes copied, 0.000245885 s, 2.1 MB/s 2023-11-30T22:56:30.848 DEBUG:teuthology.orchestra.run.smithi167:> ! mount | grep -v devtmpfs | grep -q /dev/nvme2n1 2023-11-30T22:56:30.906 DEBUG:teuthology.orchestra.run.smithi167:> stat /dev/nvme3n1 2023-11-30T22:56:30.962 INFO:teuthology.orchestra.run.smithi167.stdout: File: /dev/nvme3n1 2023-11-30T22:56:30.963 INFO:teuthology.orchestra.run.smithi167.stdout: Size: 0 Blocks: 0 IO Block: 4096 block special file 2023-11-30T22:56:30.963 INFO:teuthology.orchestra.run.smithi167.stdout:Device: 6h/6d Inode: 244924 Links: 1 Device type: 103,3 2023-11-30T22:56:30.963 INFO:teuthology.orchestra.run.smithi167.stdout:Access: (0660/brw-rw----) Uid: ( 0/ root) Gid: ( 6/ disk) 2023-11-30T22:56:30.963 INFO:teuthology.orchestra.run.smithi167.stdout:Context: system_u:object_r:nvme_device_t:s0 2023-11-30T22:56:30.963 INFO:teuthology.orchestra.run.smithi167.stdout:Access: 2023-11-30 22:56:01.131138678 +0000 2023-11-30T22:56:30.964 INFO:teuthology.orchestra.run.smithi167.stdout:Modify: 2023-11-30 22:56:01.060139924 +0000 2023-11-30T22:56:30.964 INFO:teuthology.orchestra.run.smithi167.stdout:Change: 2023-11-30 22:56:01.060139924 +0000 2023-11-30T22:56:30.964 INFO:teuthology.orchestra.run.smithi167.stdout: Birth: - 2023-11-30T22:56:30.964 DEBUG:teuthology.orchestra.run.smithi167:> sudo dd if=/dev/nvme3n1 of=/dev/null count=1 2023-11-30T22:56:31.026 INFO:teuthology.orchestra.run.smithi167.stderr:1+0 records in 2023-11-30T22:56:31.026 INFO:teuthology.orchestra.run.smithi167.stderr:1+0 records out 2023-11-30T22:56:31.026 INFO:teuthology.orchestra.run.smithi167.stderr:512 bytes copied, 0.000218256 s, 2.3 MB/s 2023-11-30T22:56:31.027 DEBUG:teuthology.orchestra.run.smithi167:> ! mount | grep -v devtmpfs | grep -q /dev/nvme3n1 2023-11-30T22:56:31.084 DEBUG:teuthology.orchestra.run.smithi167:> stat /dev/nvme4n1 2023-11-30T22:56:31.140 INFO:teuthology.orchestra.run.smithi167.stdout: File: /dev/nvme4n1 2023-11-30T22:56:31.140 INFO:teuthology.orchestra.run.smithi167.stdout: Size: 0 Blocks: 0 IO Block: 4096 block special file 2023-11-30T22:56:31.140 INFO:teuthology.orchestra.run.smithi167.stdout:Device: 6h/6d Inode: 244983 Links: 1 Device type: 103,4 2023-11-30T22:56:31.140 INFO:teuthology.orchestra.run.smithi167.stdout:Access: (0660/brw-rw----) Uid: ( 0/ root) Gid: ( 6/ disk) 2023-11-30T22:56:31.141 INFO:teuthology.orchestra.run.smithi167.stdout:Context: system_u:object_r:nvme_device_t:s0 2023-11-30T22:56:31.141 INFO:teuthology.orchestra.run.smithi167.stdout:Access: 2023-11-30 22:56:01.141138503 +0000 2023-11-30T22:56:31.141 INFO:teuthology.orchestra.run.smithi167.stdout:Modify: 2023-11-30 22:56:01.062139889 +0000 2023-11-30T22:56:31.141 INFO:teuthology.orchestra.run.smithi167.stdout:Change: 2023-11-30 22:56:01.062139889 +0000 2023-11-30T22:56:31.141 INFO:teuthology.orchestra.run.smithi167.stdout: Birth: - 2023-11-30T22:56:31.141 DEBUG:teuthology.orchestra.run.smithi167:> sudo dd if=/dev/nvme4n1 of=/dev/null count=1 2023-11-30T22:56:31.206 INFO:teuthology.orchestra.run.smithi167.stderr:1+0 records in 2023-11-30T22:56:31.207 INFO:teuthology.orchestra.run.smithi167.stderr:1+0 records out 2023-11-30T22:56:31.207 INFO:teuthology.orchestra.run.smithi167.stderr:512 bytes copied, 0.000248529 s, 2.1 MB/s 2023-11-30T22:56:31.208 DEBUG:teuthology.orchestra.run.smithi167:> ! mount | grep -v devtmpfs | grep -q /dev/nvme4n1 2023-11-30T22:56:31.264 DEBUG:teuthology.orchestra.run.smithi167:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:0dc074ce0b0b3b4f393f56dd32ef36884ebf45a9 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 3faf8b00-8fd3-11ee-95a2-87774f69a715 -- ceph orch apply osd --all-available-devices 2023-11-30T22:56:31.762 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 22:56:31 smithi167 conmon[87022]: cluster 2023-11-30T22:56:30.189008+0000 mgr.smithi038.ldalxq (mgr.14182) 29 : cluster [DBG] pgmap v18: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2023-11-30T22:56:31.762 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 22:56:31 smithi167 conmon[87022]: audit 2023-11-30T22:56:30.318873+0000 mon.smithi038 (mon.0) 202 : audit [INF] from='mgr.14182 172.21.15.38:0/2999689707' entity='mgr.smithi038.ldalxq' 2023-11-30T22:56:31.762 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 22:56:31 smithi167 conmon[87022]: audit 2023-11-30T22:56:30.320252+0000 mon.smithi038 (mon.0) 203 : audit [DBG] from='mgr.14182 172.21.15.38:0/2999689707' entity='mgr.smithi038.ldalxq' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2023-11-30T22:56:31.774 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:56:31 smithi038 conmon[81956]: cluster 2023-11-30T22:56:30.189008+0000 mgr.smithi038.ldalxq (mgr.14182) 29 : cluster [DBG] pgmap v18: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2023-11-30T22:56:31.774 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:56:31 smithi038 conmon[81956]: audit 2023-11-30T22:56:30.318873+0000 mon.smithi038 (mon.0) 202 : audit [INF] from='mgr.14182 172.21.15.38:0/2999689707' entity='mgr.smithi038.ldalxq' 2023-11-30T22:56:31.774 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:56:31 smithi038 conmon[81956]: audit 2023-11-30T22:56:30.320252+0000 mon.smithi038 (mon.0) 203 : audit [DBG] from='mgr.14182 172.21.15.38:0/2999689707' entity='mgr.smithi038.ldalxq' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2023-11-30T22:56:32.762 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 22:56:32 smithi167 conmon[87022]: audit 2023-11-30T22:56:31.340572+0000 mon.smithi038 (mon.0) 204 : 2023-11-30T22:56:32.762 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 22:56:32 smithi167 conmon[87022]: audit [INF] from='mgr.14182 172.21.15.38:0/2999689707' entity='mgr.smithi038.ldalxq' 2023-11-30T22:56:32.774 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:56:32 smithi038 conmon[81956]: audit 2023-11-30T22:56:31. 2023-11-30T22:56:32.774 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:56:32 smithi038 conmon[81956]: 340572+0000 mon.smithi038 (mon.0) 204 : audit [INF] from='mgr.14182 172.21.15.38:0/2999689707' entity='mgr.smithi038.ldalxq' 2023-11-30T22:56:33.258 INFO:teuthology.orchestra.run.smithi167.stdout:Scheduled osd.all-available-devices update... 2023-11-30T22:56:33.681 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 22:56:33 smithi167 conmon[87022]: cluster 2023-11-30T22:56:32.189312+0000 mgr.smithi038.ldalxq (mgr.14182) 30 : cluster [DBG] pgmap v19: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2023-11-30T22:56:33.681 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 22:56:33 smithi167 conmon[87022]: audit 2023-11-30T22:56:33.247190+0000 mon.smithi038 (mon.0) 205 : audit [INF] from='mgr.14182 172.21.15.38:0/2999689707' entity='mgr.smithi038.ldalxq' 2023-11-30T22:56:33.681 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 22:56:33 smithi167 conmon[87022]: audit 2023-11-30T22:56:33.248165+0000 mon.smithi038 (mon.0) 206 : audit [DBG] from='mgr.14182 172.21.15.38:0/2999689707' entity='mgr.smithi038.ldalxq' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2023-11-30T22:56:33.681 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 22:56:33 smithi167 conmon[87022]: audit 2023-11-30T22:56:33.249132+0000 mon.smithi038 (mon.0) 207 : audit [INF] from='mgr.14182 172.21.15.38:0/2999689707' entity='mgr.smithi038.ldalxq' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2023-11-30T22:56:33.681 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 22:56:33 smithi167 conmon[87022]: audit 2023-11-30T22:56:33.257830+0000 mon.smithi038 (mon.0) 208 : audit [INF] from='mgr.14182 172.21.15.38:0/2999689707' entity='mgr.smithi038.ldalxq' 2023-11-30T22:56:33.681 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 22:56:33 smithi167 conmon[87022]: audit 2023-11- 2023-11-30T22:56:33.681 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 22:56:33 smithi167 conmon[87022]: 30T22:56:33.274824+0000 mon.smithi038 (mon.0) 209 : audit [INF] from='mgr.14182 172.21.15.38:0/2999689707' entity='mgr.smithi038.ldalxq' 2023-11-30T22:56:33.681 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 22:56:33 smithi167 conmon[87022]: audit 2023-11-30T22:56:33.279461+0000 mon.smithi038 (mon.0) 210 : audit [INF] from='mgr.14182 172.21.15.38:0/2999689707' entity='mgr.smithi038.ldalxq' 2023-11-30T22:56:33.681 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 22:56:33 smithi167 conmon[87022]: audit 2023-11-30T22:56:33.283058+0000 mon.smithi038 (mon.0) 211 : audit [INF] from='mgr.14182 172.21.15.38:0/2999689707' entity='mgr.smithi038.ldalxq' 2023-11-30T22:56:33.682 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 22:56:33 smithi167 conmon[87022]: audit 2023-11-30T22:56:33.287700+0000 mon.smithi038 (mon.0) 212 : audit [DBG] from='mgr.14182 172.21.15.38:0/2999689707' entity='mgr.smithi038.ldalxq' cmd=[{"prefix": "osd tree", "states": ["destroyed"], "format": "json"}]: dispatch 2023-11-30T22:56:33.682 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 22:56:33 smithi167 conmon[87022]: audit 2023-11-30T22:56:33.682 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 22:56:33 smithi167 conmon[87022]: 2023-11-30T22:56:33.291268 2023-11-30T22:56:33.682 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 22:56:33 smithi167 conmon[87022]: +0000 mon.smithi038 (mon.0) 213 : audit [INF] 2023-11-30T22:56:33.682 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 22:56:33 smithi167 conmon[87022]: from='mgr.14182 172.21.15.38:0/2999689707' entity='mgr.smithi038.ldalxq' cmd=[{"prefix": "auth get", "entity": "client.bootstrap-osd"}]: dispatch 2023-11-30T22:56:33.682 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 22:56:33 smithi167 conmon[87022]: audit 2023-11 2023-11-30T22:56:33.682 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 22:56:33 smithi167 conmon[87022]: -30T22:56:33. 2023-11-30T22:56:33.682 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 22:56:33 smithi167 conmon[87022]: 292249+0000 mon.smithi038 (mon.0) 2023-11-30T22:56:33.682 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 22:56:33 smithi167 conmon[87022]: 214 : audit [INF] from='mgr.14182 172.21.15.38:0/2999689707' entity='mgr.smithi038.ldalxq' cmd=[{"prefix": "auth get", "entity": "client.bootstrap-osd"}]: dispatch 2023-11-30T22:56:33.682 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 22:56:33 smithi167 conmon[87022]: audit 2023 2023-11-30T22:56:33.682 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 22:56:33 smithi167 conmon[87022]: -11-30T22:56:33.292526 2023-11-30T22:56:33.682 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 22:56:33 smithi167 conmon[87022]: +0000 mon.smithi038 (mon.0) 215 : audit [DBG] 2023-11-30T22:56:33.683 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 22:56:33 smithi167 conmon[87022]: from='mgr.14182 172.21.15.38:0/2999689707' entity='mgr.smithi038.ldalxq' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2023-11-30T22:56:33.683 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 22:56:33 smithi167 conmon[87022]: audit 2023-11-30T22:56:33.683 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 22:56:33 smithi167 conmon[87022]: 2023-11-30T22: 2023-11-30T22:56:33.683 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 22:56:33 smithi167 conmon[87022]: 56:33.293221+0000 mon.smithi038 2023-11-30T22:56:33.683 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 22:56:33 smithi167 conmon[87022]: (mon.0) 216 : audit [DBG] 2023-11-30T22:56:33.683 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 22:56:33 smithi167 conmon[87022]: from='mgr.14182 172.21.15.38:0/2999689707' entity='mgr.smithi038.ldalxq' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2023-11-30T22:56:33.700 INFO:tasks.cephadm:Waiting for 8 OSDs to come up... 2023-11-30T22:56:33.700 DEBUG:teuthology.orchestra.run.smithi038:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:0dc074ce0b0b3b4f393f56dd32ef36884ebf45a9 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 3faf8b00-8fd3-11ee-95a2-87774f69a715 -- ceph osd stat -f json 2023-11-30T22:56:33.723 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:56:33 smithi038 conmon[81956]: cluster 2023-11-30T22:56:32.189312+0000 mgr.smithi038.ldalxq 2023-11-30T22:56:33.723 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:56:33 smithi038 conmon[81956]: (mgr.14182) 30 : cluster [DBG] pgmap v19: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2023-11-30T22:56:33.723 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:56:33 smithi038 conmon[81956]: audit 2023-11-30T22:56:33.247190+0000 mon.smithi038 (mon.0) 205 : audit [INF] from='mgr.14182 172.21.15.38:0/2999689707' entity='mgr.smithi038.ldalxq' 2023-11-30T22:56:33.723 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:56:33 smithi038 conmon[81956]: audit 2023-11-30T22:56:33.248165+0000 mon.smithi038 (mon.0) 206 : audit [DBG] from='mgr.14182 172.21.15.38:0/2999689707' entity='mgr.smithi038.ldalxq' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2023-11-30T22:56:33.724 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:56:33 smithi038 conmon[81956]: audit 2023-11-30T22:56:33.249132+0000 2023-11-30T22:56:33.724 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:56:33 smithi038 conmon[81956]: mon.smithi038 (mon.0) 207 : audit [INF] from='mgr.14182 172.21.15.38:0/2999689707' entity='mgr.smithi038.ldalxq' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2023-11-30T22:56:33.724 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:56:33 smithi038 conmon[81956]: audit 2023-11-30T22:56:33.257830+0000 mon.smithi038 2023-11-30T22:56:33.724 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:56:33 smithi038 conmon[81956]: (mon.0) 208 : audit [INF] from='mgr.14182 172.21.15.38:0/2999689707' entity='mgr.smithi038.ldalxq' 2023-11-30T22:56:33.724 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:56:33 smithi038 conmon[81956]: audit 2023-11-30T22:56:33.274824+0000 mon.smithi038 (mon. 2023-11-30T22:56:33.724 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:56:33 smithi038 conmon[81956]: 0) 209 : audit [INF] from='mgr.14182 172.21.15.38:0/2999689707' entity='mgr.smithi038.ldalxq' 2023-11-30T22:56:33.724 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:56:33 smithi038 conmon[81956]: audit 2023-11-30T22:56:33.279461+0000 mon.smithi038 (mon. 2023-11-30T22:56:33.724 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:56:33 smithi038 conmon[81956]: 0) 210 : audit [INF] from='mgr.14182 172.21.15.38:0/2999689707' entity='mgr.smithi038.ldalxq' 2023-11-30T22:56:33.724 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:56:33 smithi038 conmon[81956]: audit 2023-11-30T22:56:33.283058+0000 mon.smithi038 ( 2023-11-30T22:56:33.724 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:56:33 smithi038 conmon[81956]: mon.0) 211 : audit [INF] from='mgr.14182 172.21.15.38:0/2999689707' entity='mgr.smithi038.ldalxq' 2023-11-30T22:56:33.724 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:56:33 smithi038 conmon[81956]: audit 2023-11-30T22:56:33.287700+0000 mon.smithi038 ( 2023-11-30T22:56:33.724 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:56:33 smithi038 conmon[81956]: mon.0) 212 : audit [DBG] from='mgr.14182 172.21.15.38:0/2999689707' entity='mgr.smithi038.ldalxq' cmd=[{"prefix": "osd tree", "states": ["destroyed"], "format": "json"}]: dispatch 2023-11-30T22:56:33.724 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:56:33 smithi038 conmon[81956]: audit 2023-11-30T22:56:33.291268+0000 mon.smithi038 ( 2023-11-30T22:56:33.724 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:56:33 smithi038 conmon[81956]: mon.0) 213 : audit [INF] from='mgr.14182 172.21.15.38:0/2999689707' entity='mgr.smithi038.ldalxq' cmd=[{"prefix": "auth get", "entity": "client.bootstrap-osd"}]: dispatch 2023-11-30T22:56:33.725 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:56:33 smithi038 conmon[81956]: audit 2023-11-30T22:56:33.292249+0000 mon.smithi038 (mon 2023-11-30T22:56:33.725 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:56:33 smithi038 conmon[81956]: .0) 214 : audit [INF] from='mgr.14182 172.21.15.38:0/2999689707' entity='mgr.smithi038.ldalxq' cmd=[{"prefix": "auth get", "entity": "client.bootstrap-osd"}]: dispatch 2023-11-30T22:56:33.725 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:56:33 smithi038 conmon[81956]: audit 2023-11 2023-11-30T22:56:33.725 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:56:33 smithi038 conmon[81956]: -30T22:56:33.292526+0000 mon.smithi038 (mon.0) 215 : audit [DBG] from='mgr.14182 172.21.15.38:0/2999689707' entity='mgr.smithi038.ldalxq' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2023-11-30T22:56:33.725 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:56:33 smithi038 conmon[81956]: audit 2023-11-30T22:56:33.293221+0000 mon.smithi038 (mon.0) 216 2023-11-30T22:56:33.725 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:56:33 smithi038 conmon[81956]: : audit [DBG] from='mgr.14182 172.21.15.38:0/2999689707' entity='mgr.smithi038.ldalxq' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2023-11-30T22:56:34.621 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:56:34 smithi038 conmon[81956]: cephadm 2023-11-30T22:56:33.250328 2023-11-30T22:56:34.621 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:56:34 smithi038 conmon[81956]: +0000 mgr.smithi038.ldalxq (mgr.14182) 31 : cephadm [INF] Updating smithi038:/etc/ceph/ceph.conf 2023-11-30T22:56:34.621 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:56:34 smithi038 conmon[81956]: audit 2023-11-30T22:56:33.250660+0000 mgr.smithi038.ldalxq (mgr.14182) 32 : audit [DBG] from='client.24101 -' entity='client.admin' cmd=[{"prefix": "orch apply osd", "all_available_devices": true, "target": ["mon-mgr", ""]}]: dispatch 2023-11-30T22:56:34.621 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:56:34 smithi038 conmon[81956]: cephadm 2023-11-30T22:56:33.250687+0000 mgr.smithi038.ldalxq (mgr.14182) 33 : cephadm [INF] Updating smithi167:/etc/ceph/ceph.conf 2023-11-30T22:56:34.621 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:56:34 smithi038 conmon[81956]: cephadm 2023-11-30T22:56:33.252684+0000 mgr.smithi038.ldalxq (mgr.14182) 34 : cephadm [INF] Marking host: smithi038 for OSDSpec preview refresh. 2023-11-30T22:56:34.621 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:56:34 smithi038 conmon[81956]: cephadm 2023-11-30T22:56:33.252786+0000 mgr.smithi038.ldalxq (mgr.14182) 35 : cephadm [INF] Marking host: smithi167 for OSDSpec preview refresh. 2023-11-30T22:56:34.621 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:56:34 smithi038 conmon[81956]: cephadm 2023-11-30T22:56:33.253102+0000 mgr.smithi038.ldalxq (mgr.14182) 36 : cephadm [INF] Saving service osd.all-available-devices spec with placement * 2023-11-30T22:56:34.652 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 22:56:34 smithi167 conmon[87022]: cephadm 2023-11-30T22:56:33.250328+0000 mgr.smithi038.ldalxq (mgr.14182) 31 2023-11-30T22:56:34.652 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 22:56:34 smithi167 conmon[87022]: : cephadm [INF] Updating smithi038:/etc/ceph/ceph.conf 2023-11-30T22:56:34.653 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 22:56:34 smithi167 conmon[87022]: audit 2023-11-30T22:56:33.250660+0000 mgr.smithi038.ldalxq (mgr.14182) 32 : audit [DBG] from='client.24101 -' entity='client.admin' cmd=[{"prefix": "orch apply osd", "all_available_devices": true, "target": ["mon-mgr", ""]}]: dispatch 2023-11-30T22:56:34.653 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 22:56:34 smithi167 conmon[87022]: cephadm 2023-11-30T22:56:33.250687+0000 mgr.smithi038.ldalxq (mgr.14182) 33 : cephadm [INF] Updating smithi167:/etc/ceph/ceph.conf 2023-11-30T22:56:34.653 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 22:56:34 smithi167 conmon[87022]: cephadm 2023-11-30T22:56:33.252684+0000 mgr.smithi038.ldalxq (mgr.14182) 34 : cephadm [INF] Marking host: smithi038 for OSDSpec preview refresh. 2023-11-30T22:56:34.653 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 22:56:34 smithi167 conmon[87022]: cephadm 2023-11-30T22:56:33.252786+0000 mgr.smithi038.ldalxq (mgr.14182) 35 : cephadm [INF] Marking host: smithi167 for OSDSpec preview refresh. 2023-11-30T22:56:34.653 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 22:56:34 smithi167 conmon[87022]: cephadm 2023-11-30T22:56:33.253102+0000 mgr.smithi038.ldalxq (mgr.14182) 36 : cephadm [INF] Saving service osd.all-available-devices spec with placement * 2023-11-30T22:56:35.524 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:56:35 smithi038 conmon[81956]: cluster 2023-11-30T22:56:34.189533+0000 mgr.smithi038.ldalxq ( 2023-11-30T22:56:35.524 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:56:35 smithi038 conmon[81956]: mgr.14182) 37 : cluster [DBG] pgmap v20: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2023-11-30T22:56:35.762 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 22:56:35 smithi167 conmon[87022]: cluster 2023-11-30T22:56:34.189533+0000 mgr.smithi038.ldalxq (mgr.14182) 37 : cluster [DBG] pgmap v20: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2023-11-30T22:56:35.899 INFO:teuthology.orchestra.run.smithi038.stdout: 2023-11-30T22:56:36.425 INFO:teuthology.orchestra.run.smithi038.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-11-30T22:56:36.774 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:56:36 smithi038 conmon[81956]: audit 2023-11-30T22:56:35.899703+0000 mon.smithi038 (mon.0) 217 : audit [DBG] from='client.? 172.21.15.38:0/3736069637' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2023-11-30T22:56:36.774 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:56:36 smithi038 conmon[81956]: audit 2023-11-30T22:56:36.018870+0000 mon.smithi167 (mon.1) 2 : audit [INF] from='client.? 172.21.15.167:0/2680591252' entity='client.bootstrap-osd' cmd=[{"prefix": "osd new", "uuid": "79c367f7-9a0b-487b-9b90-edbd237aaf4f"}]: dispatch 2023-11-30T22:56:36.774 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:56:36 smithi038 conmon[81956]: audit 2023-11-30T22:56:36.019488+0000 mon.smithi038 (mon.0) 218 : audit [INF] from='client.? ' entity='client.bootstrap-osd' cmd=[{"prefix": "osd new", "uuid": "79c367f7-9a0b-487b-9b90-edbd237aaf4f"}]: dispatch 2023-11-30T22:56:36.774 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:56:36 smithi038 conmon[81956]: audit 2023-11-30T22:56:36.027604+0000 mon.smithi038 (mon.0) 219 : audit [INF] from='client.? ' entity='client.bootstrap-osd' cmd='[{"prefix": "osd new", "uuid": "79c367f7-9a0b-487b-9b90-edbd237aaf4f"}]': finished 2023-11-30T22:56:36.774 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:56:36 smithi038 conmon[81956]: cluster 2023-11-30T22:56:36.027687+0000 mon.smithi038 (mon.0) 220 : cluster [DBG] osdmap e6: 1 total, 0 up, 1 in 2023-11-30T22:56:36.774 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:56:36 smithi038 conmon[81956]: audit 2023-11-30T22:56:36.027802+0000 mon.smithi038 (mon.0) 221 : audit [DBG] from='mgr.14182 172.21.15.38:0/2999689707' entity='mgr.smithi038.ldalxq' cmd=[{"prefix": "osd metadata", "id": 0}]: dispatch 2023-11-30T22:56:36.774 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:56:36 smithi038 conmon[81956]: cluster 2023-11-30T22:56:36.189789+0000 mgr.smithi038.ldalxq (mgr.14182) 38 : cluster [DBG] pgmap v22: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2023-11-30T22:56:36.774 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:56:36 smithi038 conmon[81956]: audit 2023-11-30T22:56:36.357334+0000 mon.smithi038 (mon.0) 222 : 2023-11-30T22:56:36.775 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:56:36 smithi038 conmon[81956]: audit [INF] from='client.? 172.21.15.38:0/3634419195' entity='client.bootstrap-osd' cmd=[{"prefix": "osd new", "uuid": "5ef29b01-28fc-48df-9975-2e960c2ab7af"}]: dispatch 2023-11-30T22:56:36.775 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:56:36 smithi038 conmon[81956]: audit 2023-11-30T22:56:36.361104+0000 mon.smithi038 (mon.0) 223 : audit [INF] from='client.? 172.21.15.38:0/3634419195' entity='client.bootstrap-osd' cmd='[{"prefix": "osd new", "uuid": "5ef29b01-28fc-48df-9975-2e960c2ab7af"}]': finished 2023-11-30T22:56:36.775 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:56:36 smithi038 conmon[81956]: cluster 2023-11-30T22:56:36.361164+0000 mon.smithi038 (mon.0) 224 : cluster [DBG] osdmap e7: 2 total, 0 up, 2 in 2023-11-30T22:56:36.775 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:56:36 smithi038 conmon[81956]: audit 2023-11-30T22:56:36.361261+0000 mon.smithi038 (mon.0) 225 : audit [DBG] from='mgr.14182 172.21.15.38:0/2999689707' entity='mgr.smithi038.ldalxq' cmd=[{"prefix": "osd metadata", "id": 0}]: dispatch 2023-11-30T22:56:36.775 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:56:36 smithi038 conmon[81956]: audit 2023-11-30T22:56:36.361514+0000 mon.smithi038 (mon.0) 226 : audit [DBG] from='mgr.14182 172.21.15.38:0/2999689707' entity='mgr.smithi038.ldalxq' cmd=[{"prefix": "osd metadata", "id": 1}]: dispatch 2023-11-30T22:56:37.012 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 22:56:36 smithi167 conmon[87022]: audit 2023-11-30T22:56:35.899703+0000 mon.smithi038 (mon.0) 217 : audit [DBG] from='client.? 172.21.15.38:0/3736069637' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2023-11-30T22:56:37.013 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 22:56:36 smithi167 conmon[87022]: audit 2023-11-30T22:56:36.018870+0000 mon.smithi167 (mon.1) 2 : audit [INF] from='client.? 172.21.15.167:0/2680591252' entity='client.bootstrap-osd' cmd=[{"prefix": "osd new", "uuid": "79c367f7-9a0b-487b-9b90-edbd237aaf4f"}]: dispatch 2023-11-30T22:56:37.013 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 22:56:36 smithi167 conmon[87022]: audit 2023-11-30T22:56:36.019488+0000 mon.smithi038 (mon.0) 218 : audit [INF] from='client.? ' entity='client.bootstrap-osd' cmd=[{"prefix": "osd new", "uuid": "79c367f7-9a0b-487b-9b90-edbd237aaf4f"}]: dispatch 2023-11-30T22:56:37.013 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 22:56:36 smithi167 conmon[87022]: audit 2023-11-30T22:56:36.027604+0000 mon.smithi038 (mon.0) 219 : audit [INF] from='client.? ' entity='client.bootstrap-osd' cmd='[{"prefix": "osd new", "uuid": "79c367f7-9a0b-487b-9b90-edbd237aaf4f"}]': finished 2023-11-30T22:56:37.013 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 22:56:36 smithi167 conmon[87022]: cluster 2023-11-30T22:56:36.027687+0000 mon.smithi038 (mon.0) 220 : cluster [DBG] osdmap e6: 1 total, 0 up, 1 in 2023-11-30T22:56:37.013 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 22:56:36 smithi167 conmon[87022]: audit 2023-11-30T22:56:36.027802+0000 mon.smithi038 (mon.0) 221 : audit [DBG] from='mgr.14182 172.21.15.38:0/2999689707' entity='mgr.smithi038.ldalxq' cmd=[{"prefix": "osd metadata", "id": 0}]: dispatch 2023-11-30T22:56:37.013 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 22:56:36 smithi167 conmon[87022]: cluster 2023-11-30T22:56:36.189789+0000 mgr.smithi038.ldalxq (mgr.14182) 38 : cluster [DBG] pgmap v22: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2023-11-30T22:56:37.013 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 22:56:36 smithi167 conmon[87022]: audit 2023-11-30T22:56:36.357334+0000 mon.smithi038 (mon.0) 222 : audit [INF] from='client.? 172.21.15.38:0/3634419195' entity='client.bootstrap-osd' cmd=[{"prefix": "osd new", "uuid": "5ef29b01-28fc-48df-9975-2e960c2ab7af"}]: dispatch 2023-11-30T22:56:37.013 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 22:56:36 smithi167 conmon[87022]: audit 2023-11-30T22:56:36.361104+0000 mon.smithi038 (mon.0) 223 : audit [INF] from='client.? 172.21.15.38:0/3634419195' entity='client.bootstrap-osd' cmd='[{"prefix": "osd new", "uuid": "5ef29b01-28fc-48df-9975-2e960c2ab7af"}]': finished 2023-11-30T22:56:37.013 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 22:56:36 smithi167 conmon[87022]: cluster 2023-11-30T22:56:36.361164+0000 mon.smithi038 (mon.0) 224 : cluster [DBG] osdmap e7: 2 total, 0 up, 2 in 2023-11-30T22:56:37.013 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 22:56:36 smithi167 conmon[87022]: audit 2023-11-30T22:56:36.361261+0000 mon.smithi038 (mon.0) 225 : audit [DBG] from='mgr.14182 172.21.15.38:0/2999689707' entity='mgr.smithi038.ldalxq' cmd=[{"prefix": "osd metadata", "id": 0}]: dispatch 2023-11-30T22:56:37.013 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 22:56:36 smithi167 conmon[87022]: audit 2023-11-30T22:56:36.361514+0000 mon.smithi038 (mon.0) 226 : audit [DBG] from='mgr.14182 172.21.15.38:0/2999689707' entity='mgr.smithi038.ldalxq' cmd=[{"prefix": "osd metadata", "id": 1}]: dispatch 2023-11-30T22:56:37.426 DEBUG:teuthology.orchestra.run.smithi038:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:0dc074ce0b0b3b4f393f56dd32ef36884ebf45a9 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 3faf8b00-8fd3-11ee-95a2-87774f69a715 -- ceph osd stat -f json 2023-11-30T22:56:38.274 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:56:38 smithi038 conmon[81956]: audit 2023-11-30T22:56:37.461886+0000 mon.smithi167 (mon.1) 3 : audit [DBG] from='client.? 172.21.15.167:0/1718447133' entity='client.bootstrap-osd' cmd=[{"prefix": "mon getmap"}]: dispatch 2023-11-30T22:56:38.275 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:56:38 smithi038 conmon[81956]: audit 2023-11-30T22:56:37.533469+0000 mon.smithi038 (mon.0) 227 : audit [DBG] from='client.? 172.21.15.38:0/1129842656' entity='client.bootstrap-osd' cmd=[{"prefix": "mon getmap"}]: dispatch 2023-11-30T22:56:38.512 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 22:56:38 smithi167 conmon[87022]: audit 2023-11-30T22:56:37.461886+0000 mon.smithi167 (mon.1) 3 : 2023-11-30T22:56:38.512 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 22:56:38 smithi167 conmon[87022]: audit [DBG] from='client.? 172.21.15.167:0/1718447133' entity='client.bootstrap-osd' cmd=[{"prefix": "mon getmap"}]: dispatch 2023-11-30T22:56:38.512 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 22:56:38 smithi167 conmon[87022]: audit 2023-11-30T22:56:37.533469+0000 mon.smithi038 (mon.0) 227 : audit [DBG] from='client.? 172.21.15.38:0/1129842656' entity='client.bootstrap-osd' cmd=[{"prefix": "mon getmap"}]: dispatch 2023-11-30T22:56:39.143 INFO:teuthology.orchestra.run.smithi038.stdout: 2023-11-30T22:56:39.315 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:56:39 smithi038 conmon[81956]: cluster 2023-11-30T22:56:38.190138+0000 2023-11-30T22:56:39.315 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:56:39 smithi038 conmon[81956]: mgr.smithi038.ldalxq (mgr.14182) 39 : cluster [DBG] pgmap v24: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2023-11-30T22:56:39.512 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 22:56:39 smithi167 conmon[87022]: cluster 2023-11-30T22:56:38.190138+0000 mgr.smithi038.ldalxq (mgr.14182) 39 : cluster [DBG] pgmap v24: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2023-11-30T22:56:39.574 INFO:teuthology.orchestra.run.smithi038.stdout:{"epoch":7,"num_osds":2,"num_up_osds":0,"osd_up_since":0,"num_in_osds":2,"osd_in_since":1701384996,"num_remapped_pgs":0} 2023-11-30T22:56:40.512 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 22:56:40 smithi167 conmon[87022]: audit 2023-11-30T22:56:39.142856+0000 mon.smithi038 (mon.0) 228 : audit [DBG] from='client.? 172.21.15.38:0/3893183673' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2023-11-30T22:56:40.512 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 22:56:40 smithi167 conmon[87022]: audit 2023-11-30T22: 2023-11-30T22:56:40.512 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 22:56:40 smithi167 conmon[87022]: 56:39.957934+0000 mon.smithi167 (mon.1) 4 : audit [INF] from='client.? 172.21.15.167:0/2544063895' entity='client.bootstrap-osd' cmd=[{"prefix": "osd new", "uuid": "edc6eee3-f74b-4b65-9018-f68330f9015d"}]: dispatch 2023-11-30T22:56:40.512 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 22:56:40 smithi167 conmon[87022]: audit 2023-11-30T22:56:39.958404+0000 mon.smithi038 (mon.0) 229 : audit [INF] from='client.? ' entity='client.bootstrap-osd' cmd=[{"prefix": "osd new", "uuid": "edc6eee3-f74b-4b65-9018-f68330f9015d"}]: dispatch 2023-11-30T22:56:40.512 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 22:56:40 smithi167 conmon[87022]: audit 2023-11-30T22:56:39.963952+0000 mon.smithi038 (mon.0) 230 : audit [INF] from='client.? ' entity='client.bootstrap-osd' cmd='[{"prefix": "osd new", "uuid": "edc6eee3-f74b-4b65-9018-f68330f9015d"}]': finished 2023-11-30T22:56:40.512 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 22:56:40 smithi167 conmon[87022]: cluster 2023-11-30T22:56:39.964012+0000 mon.smithi038 (mon.0) 231 : cluster [DBG] osdmap e8: 3 total, 0 up, 3 in 2023-11-30T22:56:40.512 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 22:56:40 smithi167 conmon[87022]: audit 2023-11-30T22:56:39.964147+0000 mon.smithi038 (mon.0) 232 : audit [DBG] from='mgr.14182 172.21.15.38:0/2999689707' entity='mgr.smithi038.ldalxq' cmd=[{"prefix": "osd metadata", "id": 0}]: dispatch 2023-11-30T22:56:40.512 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 22:56:40 smithi167 conmon[87022]: audit 2023-11-30T22:56:39.964578+0000 mon.smithi038 (mon.0) 233 : audit [DBG] from='mgr.14182 172.21.15.38:0/2999689707' entity='mgr.smithi038.ldalxq' cmd=[{"prefix": "osd metadata", "id": 1}]: dispatch 2023-11-30T22:56:40.512 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 22:56:40 smithi167 conmon[87022]: audit 2023-11-30T22:56:39.964831+0000 mon.smithi038 (mon.0) 234 : audit [DBG] from='mgr.14182 172.21.15.38:0/2999689707' entity='mgr.smithi038.ldalxq' cmd=[{"prefix": "osd metadata", "id": 2}]: dispatch 2023-11-30T22:56:40.524 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:56:40 smithi038 conmon[81956]: audit 2023-11-30T22:56:39.142856+0000 mon.smithi038 (mon.0) 228 : audit [DBG] from='client.? 172.21.15.38:0/3893183673' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2023-11-30T22:56:40.524 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:56:40 smithi038 conmon[81956]: audit 2023-11-30T22:56:39.957934+0000 mon.smithi167 (mon.1) 4 : audit [INF] from='client.? 172.21.15.167:0/2544063895' entity='client.bootstrap-osd' cmd=[{"prefix": "osd new", "uuid": "edc6eee3-f74b-4b65-9018-f68330f9015d"}]: dispatch 2023-11-30T22:56:40.524 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:56:40 smithi038 conmon[81956]: audit 2023-11-30T22:56:39.958404+0000 mon.smithi038 (mon.0) 229 : audit [INF] from='client.? ' entity='client.bootstrap-osd' cmd=[{"prefix": "osd new", "uuid": "edc6eee3-f74b-4b65-9018-f68330f9015d"}]: dispatch 2023-11-30T22:56:40.524 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:56:40 smithi038 conmon[81956]: audit 2023-11-30T22:56:39.963952+0000 mon.smithi038 (mon.0) 230 : audit [INF] from='client.? ' entity='client.bootstrap-osd' cmd='[{"prefix": "osd new", "uuid": "edc6eee3-f74b-4b65-9018-f68330f9015d"}]': finished 2023-11-30T22:56:40.524 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:56:40 smithi038 conmon[81956]: cluster 2023-11-30T22:56:39.964012+0000 mon.smithi038 (mon.0) 231 : cluster [DBG] osdmap e8: 3 total, 0 up, 3 in 2023-11-30T22:56:40.524 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:56:40 smithi038 conmon[81956]: audit 2023-11-30T22:56:39.964147+0000 mon.smithi038 (mon.0) 232 : audit [DBG] from='mgr.14182 172.21.15.38:0/2999689707' entity='mgr.smithi038.ldalxq' cmd=[{"prefix": "osd metadata", "id": 0}]: dispatch 2023-11-30T22:56:40.524 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:56:40 smithi038 conmon[81956]: audit 2023-11-30T 2023-11-30T22:56:40.524 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:56:40 smithi038 conmon[81956]: 22:56:39.964578+0000 mon.smithi038 (mon.0) 233 : audit [DBG] from='mgr.14182 172.21.15.38:0/2999689707' entity='mgr.smithi038.ldalxq' cmd=[{"prefix": "osd metadata", "id": 1}]: dispatch 2023-11-30T22:56:40.524 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:56:40 smithi038 conmon[81956]: audit 2023-11-30T22:56:39.964831+0000 mon.smithi038 (mon.0) 234 : audit [DBG] from='mgr.14182 172.21.15.38:0/2999689707' entity='mgr.smithi038.ldalxq' cmd=[{"prefix": "osd metadata", "id": 2}]: dispatch 2023-11-30T22:56:40.575 DEBUG:teuthology.orchestra.run.smithi038:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:0dc074ce0b0b3b4f393f56dd32ef36884ebf45a9 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 3faf8b00-8fd3-11ee-95a2-87774f69a715 -- ceph osd stat -f json 2023-11-30T22:56:41.284 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:56:41 smithi038 conmon[81956]: audit 2023-11-30T22:56:40.100053+0000 mon.smithi038 (mon.0) 235 : audit [INF] from='client.? 172.21.15.38:0/2271625021' entity='client.bootstrap-osd' cmd=[{"prefix": "osd new", "uuid": "3752cef2-4bce-4fc6-a8ba-65fea2d4ed1f"}]: dispatch 2023-11-30T22:56:41.284 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:56:41 smithi038 conmon[81956]: audit 2023-11-30T22:56:40.103721+0000 mon.smithi038 (mon.0) 236 : audit [INF] from='client.? 172.21.15.38:0/2271625021' entity='client.bootstrap-osd' cmd='[{"prefix": "osd new", "uuid": "3752cef2-4bce-4fc6-a8ba-65fea2d4ed1f"}]': finished 2023-11-30T22:56:41.284 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:56:41 smithi038 conmon[81956]: cluster 2023-11-30T22:56:40.103766+0000 mon.smithi038 (mon.0) 237 : cluster [DBG] osdmap e9: 4 total, 0 up, 4 in 2023-11-30T22:56:41.284 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:56:41 smithi038 conmon[81956]: audit 2023-11-30T22:56:40.103861+0000 mon.smithi038 (mon.0) 238 : audit [DBG] from='mgr.14182 172.21.15.38:0/2999689707' entity='mgr.smithi038.ldalxq' cmd=[{"prefix": "osd metadata", "id": 0}]: dispatch 2023-11-30T22:56:41.284 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:56:41 smithi038 conmon[81956]: audit 2023-11-30T22:56:40.104149+0000 mon.smithi038 (mon.0) 239 : audit [DBG] from='mgr.14182 172.21.15.38:0/2999689707' entity='mgr.smithi038.ldalxq' cmd=[{"prefix": "osd metadata", "id": 1}]: dispatch 2023-11-30T22:56:41.285 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:56:41 smithi038 conmon[81956]: audit 2023-11 2023-11-30T22:56:41.285 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:56:41 smithi038 conmon[81956]: -30T22:56:40.104353+0000 mon.smithi038 (mon.0) 240 : audit [DBG] from='mgr.14182 172.21.15.38:0/2999689707' entity='mgr.smithi038.ldalxq' cmd=[{"prefix": "osd metadata", "id": 2}]: dispatch 2023-11-30T22:56:41.285 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:56:41 smithi038 conmon[81956]: audit 2023-11-30T22:56:40.104564+0000 mon.smithi038 (mon.0) 241 : audit [DBG] from='mgr.14182 172.21.15.38:0/2999689707' entity='mgr.smithi038.ldalxq' cmd=[{"prefix": "osd metadata", "id": 3}]: dispatch 2023-11-30T22:56:41.285 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:56:41 smithi038 conmon[81956]: cluster 2023-11-30T22:56:40.190407+0000 mgr.smithi038.ldalxq (mgr.14182) 40 : cluster [DBG] pgmap v27: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2023-11-30T22:56:41.512 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 22:56:41 smithi167 conmon[87022]: audit 2023-11-30T22:56:40.100053+0000 mon.smithi038 (mon.0) 235 : audit [INF] from='client.? 172.21.15.38:0/2271625021' entity='client.bootstrap-osd' cmd=[{"prefix": "osd new", "uuid": "3752cef2-4bce-4fc6-a8ba-65fea2d4ed1f"}]: dispatch 2023-11-30T22:56:41.512 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 22:56:41 smithi167 conmon[87022]: audit 2023-11-30T22:56:40.103721+0000 mon.smithi038 (mon.0) 236 : audit [INF] from='client.? 172.21.15.38:0/2271625021' entity='client.bootstrap-osd' cmd='[{"prefix": "osd new", "uuid": "3752cef2-4bce-4fc6-a8ba-65fea2d4ed1f"}]': finished 2023-11-30T22:56:41.512 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 22:56:41 smithi167 conmon[87022]: cluster 2023-11-30T22:56:40.103766+0000 mon.smithi038 (mon.0) 237 : cluster [DBG] osdmap e9: 4 total, 0 up, 4 in 2023-11-30T22:56:41.512 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 22:56:41 smithi167 conmon[87022]: audit 2023-11-30T22:56:40.103861+0000 mon.smithi038 (mon.0) 238 : audit [DBG] from='mgr.14182 172.21.15.38:0/2999689707' entity='mgr.smithi038.ldalxq' cmd=[{"prefix": "osd metadata", "id": 0}]: dispatch 2023-11-30T22:56:41.512 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 22:56:41 smithi167 conmon[87022]: audit 2023-11-30T22:56:40.104149+0000 mon.smithi038 (mon.0) 239 : audit [DBG] from='mgr.14182 172.21.15.38:0/2999689707' entity='mgr.smithi038.ldalxq' cmd=[{"prefix": "osd metadata", "id": 1}]: dispatch 2023-11-30T22:56:41.512 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 22:56:41 smithi167 conmon[87022]: audit 2023-11-30T22:56:40.104353+0000 mon.smithi038 (mon.0) 240 2023-11-30T22:56:41.512 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 22:56:41 smithi167 conmon[87022]: : audit [DBG] from='mgr.14182 172.21.15.38:0/2999689707' entity='mgr.smithi038.ldalxq' cmd=[{"prefix": "osd metadata", "id": 2}]: dispatch 2023-11-30T22:56:41.512 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 22:56:41 smithi167 conmon[87022]: audit 2023-11-30T22:56:40.104564+0000 mon.smithi038 (mon.0) 241 2023-11-30T22:56:41.512 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 22:56:41 smithi167 conmon[87022]: : audit [DBG] from='mgr.14182 172.21.15.38:0/2999689707' entity='mgr.smithi038.ldalxq' cmd=[{"prefix": "osd metadata", "id": 3}]: dispatch 2023-11-30T22:56:41.512 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 22:56:41 smithi167 conmon[87022]: cluster 2023-11-30T22:56:41.513 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 22:56:41 smithi167 conmon[87022]: 2023-11-30T22:56:40.190407+0000 mgr.smithi038.ldalxq (mgr 2023-11-30T22:56:41.513 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 22:56:41 smithi167 conmon[87022]: .14182) 40 : cluster [DBG] pgmap v27: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2023-11-30T22:56:42.184 INFO:teuthology.orchestra.run.smithi038.stdout: 2023-11-30T22:56:42.382 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:56:42 smithi038 conmon[81956]: audit 2023-11-30T22:56:41.111533+0000 mon.smithi167 (mon.1) 5 : audit [DBG] from='client.? 172.21.15.167:0/3384478847' entity='client.bootstrap-osd' cmd=[{"prefix": "mon getmap"}]: dispatch 2023-11-30T22:56:42.382 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:56:42 smithi038 conmon[81956]: audit 2023-11-30T22:56:41.271880+0000 mon.smithi038 (mon.0) 242 : audit [DBG] from='client.? 172.21.15.38:0/3501949351' entity='client.bootstrap-osd' cmd=[{"prefix": "mon getmap"}]: dispatch 2023-11-30T22:56:42.512 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 22:56:42 smithi167 conmon[87022]: audit 2023-11-30T22:56:41.111533+0000 mon.smithi167 (mon.1) 5 2023-11-30T22:56:42.512 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 22:56:42 smithi167 conmon[87022]: : audit [DBG] from='client.? 172.21.15.167:0/3384478847' entity='client.bootstrap-osd' cmd=[{"prefix": "mon getmap"}]: dispatch 2023-11-30T22:56:42.512 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 22:56:42 smithi167 conmon[87022]: audit 2023-11-30T22:56:41.271880+0000 mon.smithi038 (mon.0) 242 : audit [DBG] from='client.? 172.21.15.38:0/3501949351' entity='client.bootstrap-osd' cmd=[{"prefix": "mon getmap"}]: dispatch 2023-11-30T22:56:42.617 INFO:teuthology.orchestra.run.smithi038.stdout:{"epoch":9,"num_osds":4,"num_up_osds":0,"osd_up_since":0,"num_in_osds":4,"osd_in_since":1701385000,"num_remapped_pgs":0} 2023-11-30T22:56:43.512 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 22:56:43 smithi167 conmon[87022]: audit 2023-11-30T22:56:42.183328+0000 mon.smithi038 (mon.0) 243 2023-11-30T22:56:43.512 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 22:56:43 smithi167 conmon[87022]: : audit [DBG] from='client.? 172.21.15.38:0/1853010999' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2023-11-30T22:56:43.512 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 22:56:43 smithi167 conmon[87022]: cluster 2023-11-30T22:56:42.190706+0000 mgr.smithi038.ldalxq (mgr.14182) 41 : cluster [DBG] pgmap v28: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2023-11-30T22:56:43.523 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:56:43 smithi038 conmon[81956]: audit 2023-11-30T22:56:42.183328+0000 mon.smithi038 2023-11-30T22:56:43.524 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:56:43 smithi038 conmon[81956]: (mon.0) 243 : audit [DBG] from='client.? 172.21.15.38:0/1853010999' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2023-11-30T22:56:43.524 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:56:43 smithi038 conmon[81956]: cluster 2023-11-30T22:56:42.190706+0000 mgr.smithi038.ldalxq (mgr.14182) 41 : cluster [DBG] pgmap v28: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2023-11-30T22:56:43.618 DEBUG:teuthology.orchestra.run.smithi038:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:0dc074ce0b0b3b4f393f56dd32ef36884ebf45a9 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 3faf8b00-8fd3-11ee-95a2-87774f69a715 -- ceph osd stat -f json 2023-11-30T22:56:44.253 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:56:44 smithi038 conmon[81956]: audit 2023-11-30T22:56:43.608317+0000 2023-11-30T22:56:44.253 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:56:44 smithi038 conmon[81956]: mon.smithi167 (mon.1) 6 : audit [INF] from='client.? 172.21.15.167:0/3030720958' entity='client.bootstrap-osd' cmd=[{"prefix": "osd new", "uuid": "e351328e-d914-457f-ab87-5f63b9915bed"}]: dispatch 2023-11-30T22:56:44.253 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:56:44 smithi038 conmon[81956]: audit 2023-11-30T22:56:43.608724+0000 mon.smithi038 (mon.0) 244 : audit [INF] from='client.? ' entity='client.bootstrap-osd' cmd=[{"prefix": "osd new", "uuid": "e351328e-d914-457f-ab87-5f63b9915bed"}]: dispatch 2023-11-30T22:56:44.253 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:56:44 smithi038 conmon[81956]: audit 2023-11-30T22:56:43.616674+0000 mon.smithi038 (mon.0) 245 : audit [INF] from='client.? ' entity='client.bootstrap-osd' cmd='[{"prefix": "osd new", "uuid": "e351328e-d914-457f-ab87-5f63b9915bed"}]': finished 2023-11-30T22:56:44.253 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:56:44 smithi038 conmon[81956]: cluster 2023-11-30T22:56:43.616726+0000 mon.smithi038 (mon.0) 246 : cluster [DBG] osdmap e10: 5 total, 0 up, 5 in 2023-11-30T22:56:44.254 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:56:44 smithi038 conmon[81956]: audit 2023-11-30T22:56:43.616836+0000 mon.smithi038 (mon.0) 247 : audit [DBG] from='mgr.14182 172.21.15.38:0/2999689707' entity='mgr.smithi038.ldalxq' cmd=[{"prefix": "osd metadata", "id": 0}]: dispatch 2023-11-30T22:56:44.254 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:56:44 smithi038 conmon[81956]: audit 2023-11-30T22:56:43.617086+0000 mon.smithi038 (mon.0) 248 : audit [DBG] from='mgr.14182 172.21.15.38:0/2999689707' entity='mgr.smithi038.ldalxq' cmd=[{"prefix": "osd metadata", "id": 1}]: dispatch 2023-11-30T22:56:44.254 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:56:44 smithi038 conmon[81956]: audit 2023-11-30T22:56:43.617255+0000 mon.smithi038 (mon.0) 249 : audit [DBG] from='mgr.14182 172.21.15.38:0/2999689707' entity='mgr.smithi038.ldalxq' cmd=[{"prefix": "osd metadata", "id": 2}]: dispatch 2023-11-30T22:56:44.254 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:56:44 smithi038 conmon[81956]: audit 2023-11-30T22:56:43.617400+0000 mon.smithi038 (mon.0) 250 : audit [DBG] from='mgr.14182 172.21.15.38:0/2999689707' entity='mgr.smithi038.ldalxq' cmd=[{"prefix": "osd metadata", "id": 3}]: dispatch 2023-11-30T22:56:44.254 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:56:44 smithi038 conmon[81956]: audit 2023-11-30T22:56:43.617578+0000 mon.smithi038 (mon.0) 251 : audit [DBG] from='mgr.14182 172.21.15.38:0/2999689707' entity='mgr.smithi038.ldalxq' cmd=[{"prefix": "osd metadata", "id": 4}]: dispatch 2023-11-30T22:56:44.254 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:56:44 smithi038 conmon[81956]: audit 2023-11-30T22:56:43.839925+0000 mon.smithi038 (mon.0) 252 : audit [INF] from='client.? 172.21.15.38:0/902102686' entity='client.bootstrap-osd' cmd=[{"prefix": "osd new", "uuid": "ffffbf3d-c0d6-4c78-a79e-0f157f158363"}]: dispatch 2023-11-30T22:56:44.255 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:56:44 smithi038 conmon[81956]: audit 2023-11-30T22:56:43.852973+0000 mon.smithi038 (mon.0) 253 : audit [INF] from='client.? 172.21.15.38:0/902102686' entity='client.bootstrap-osd' cmd='[{"prefix": "osd new", "uuid": "ffffbf3d-c0d6-4c78-a79e-0f157f158363"}]': finished 2023-11-30T22:56:44.255 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:56:44 smithi038 conmon[81956]: cluster 2023-11-30T22:56:43.853044+0000 mon.smithi038 (mon.0) 254 : cluster [DBG] osdmap e11: 6 total, 0 up, 6 in 2023-11-30T22:56:44.255 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:56:44 smithi038 conmon[81956]: audit 2023-11-30T22:56:43.853219+0000 mon.smithi038 (mon.0) 255 : audit [DBG] from='mgr.14182 172.21.15.38:0/2999689707' entity='mgr.smithi038.ldalxq' cmd=[{"prefix": "osd metadata", "id": 0}]: dispatch 2023-11-30T22:56:44.255 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:56:44 smithi038 conmon[81956]: audit 2023-11-30T22:56:43.853750+0000 mon.smithi038 (mon.0) 256 : audit [DBG] from='mgr.14182 172.21.15.38:0/2999689707' entity='mgr.smithi038.ldalxq' cmd=[{"prefix": "osd metadata", "id": 1}]: dispatch 2023-11-30T22:56:44.255 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:56:44 smithi038 conmon[81956]: audit 2023-11-30T22:56:43.854020+0000 mon.smithi038 (mon.0) 257 : audit [DBG] from='mgr.14182 172.21.15.38:0/2999689707' entity='mgr.smithi038.ldalxq' cmd=[{"prefix": "osd metadata", "id": 2}]: dispatch 2023-11-30T22:56:44.255 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:56:44 smithi038 conmon[81956]: audit 2023-11-30T22:56:43.854305+0000 mon.smithi038 (mon.0) 258 : audit [DBG] from='mgr.14182 172.21.15.38:0/2999689707' entity='mgr.smithi038.ldalxq' cmd=[{"prefix": "osd metadata", "id": 3}]: dispatch 2023-11-30T22:56:44.255 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:56:44 smithi038 conmon[81956]: audit 2023-11-30T22:56:43.854558+0000 mon.smithi038 (mon.0) 259 : audit [DBG] from='mgr.14182 172.21.15.38:0/2999689707' entity='mgr.smithi038.ldalxq' cmd=[{"prefix": "osd metadata", "id": 4}]: dispatch 2023-11-30T22:56:44.256 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:56:44 smithi038 conmon[81956]: audit 2023-11-30T22:56:43.854817+0000 mon.smithi038 (mon.0) 260 : audit [DBG] from='mgr.14182 172.21.15.38:0/2999689707' entity='mgr.smithi038.ldalxq' cmd=[{"prefix": "osd metadata", "id": 5}]: dispatch 2023-11-30T22:56:44.512 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 22:56:44 smithi167 conmon[87022]: audit 2023-11-30T22:56:43.608317+0000 mon.smithi167 (mon.1) 6 : audit [INF] from='client.? 172.21.15.167:0/3030720958' entity='client.bootstrap-osd' cmd=[{"prefix": "osd new", "uuid": "e351328e-d914-457f-ab87-5f63b9915bed"}]: dispatch 2023-11-30T22:56:44.512 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 22:56:44 smithi167 conmon[87022]: audit 2023-11-30T22:56:43.608724+0000 mon.smithi038 (mon.0) 244 : audit [INF] from='client.? ' entity='client.bootstrap-osd' cmd=[{"prefix": "osd new", "uuid": "e351328e-d914-457f-ab87-5f63b9915bed"}]: dispatch 2023-11-30T22:56:44.513 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 22:56:44 smithi167 conmon[87022]: audit 2023-11-30T22:56:44.513 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 22:56:44 smithi167 conmon[87022]: 2023-11-30T22:56:43.616674+0000 mon.smithi038 (mon. 2023-11-30T22:56:44.513 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 22:56:44 smithi167 conmon[87022]: 0) 245 : audit [INF] from='client.? ' entity='client.bootstrap-osd' cmd='[{"prefix": "osd new", "uuid": "e351328e-d914-457f-ab87-5f63b9915bed"}]': finished 2023-11-30T22:56:44.513 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 22:56:44 smithi167 conmon[87022]: cluster 2023-11 2023-11-30T22:56:44.513 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 22:56:44 smithi167 conmon[87022]: -30T22:56:43.616726+0000 2023-11-30T22:56:44.513 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 22:56:44 smithi167 conmon[87022]: mon.smithi038 (mon.0) 246 : cluster [DBG] 2023-11-30T22:56:44.513 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 22:56:44 smithi167 conmon[87022]: osdmap e10: 5 total, 0 up, 5 in 2023-11-30T22:56:44.513 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 22:56:44 smithi167 conmon[87022]: audit 2023-11-30T22:56:44.513 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 22:56:44 smithi167 conmon[87022]: 2023-11-30T22:56 2023-11-30T22:56:44.513 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 22:56:44 smithi167 conmon[87022]: :43.616836+0000 mon.smithi038 (mon 2023-11-30T22:56:44.513 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 22:56:44 smithi167 conmon[87022]: .0) 247 : audit [DBG] 2023-11-30T22:56:44.514 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 22:56:44 smithi167 conmon[87022]: from='mgr.14182 172.21.15.38:0/2999689707' entity='mgr.smithi038.ldalxq' cmd=[{"prefix": "osd metadata", "id": 0}]: dispatch 2023-11-30T22:56:44.514 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 22:56:44 smithi167 conmon[87022]: audit 2023-11 2023-11-30T22:56:44.514 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 22:56:44 smithi167 conmon[87022]: -30T22:56:43.617086 2023-11-30T22:56:44.514 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 22:56:44 smithi167 conmon[87022]: +0000 mon.smithi038 (mon.0) 248 2023-11-30T22:56:44.514 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 22:56:44 smithi167 conmon[87022]: : audit [DBG] from='mgr.14182 172.21.15.38:0/2999689707' entity='mgr.smithi038.ldalxq' cmd=[{"prefix": "osd metadata", "id": 1}]: dispatch 2023-11-30T22:56:44.514 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 22:56:44 smithi167 conmon[87022]: audit 2023 2023-11-30T22:56:44.514 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 22:56:44 smithi167 conmon[87022]: -11-30T22:56:43. 2023-11-30T22:56:44.514 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 22:56:44 smithi167 conmon[87022]: 617255+0000 mon.smithi038 (mon.0) 2023-11-30T22:56:44.514 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 22:56:44 smithi167 conmon[87022]: 249 : audit [DBG] from='mgr.14182 172.21.15.38:0/2999689707' entity='mgr.smithi038.ldalxq' cmd=[{"prefix": "osd metadata", "id": 2}]: dispatch 2023-11-30T22:56:44.514 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 22:56:44 smithi167 conmon[87022]: audit 2023 2023-11-30T22:56:44.514 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 22:56:44 smithi167 conmon[87022]: -11-30T22:56:43. 2023-11-30T22:56:44.514 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 22:56:44 smithi167 conmon[87022]: 617400+0000 mon.smithi038 (mon.0) 2023-11-30T22:56:44.515 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 22:56:44 smithi167 conmon[87022]: 250 : audit [DBG] from='mgr.14182 172.21.15.38:0/2999689707' entity='mgr.smithi038.ldalxq' cmd=[{"prefix": "osd metadata", "id": 3}]: dispatch 2023-11-30T22:56:44.515 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 22:56:44 smithi167 conmon[87022]: audit 2023 2023-11-30T22:56:44.515 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 22:56:44 smithi167 conmon[87022]: -11-30T22:56:43. 2023-11-30T22:56:44.515 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 22:56:44 smithi167 conmon[87022]: 617578+0000 mon.smithi038 (mon.0) 251 2023-11-30T22:56:44.515 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 22:56:44 smithi167 conmon[87022]: : audit [DBG] from='mgr.14182 172.21.15.38:0/2999689707' entity='mgr.smithi038.ldalxq' cmd=[{"prefix": "osd metadata", "id": 4}]: dispatch 2023-11-30T22:56:44.515 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 22:56:44 smithi167 conmon[87022]: audit 2023 2023-11-30T22:56:44.515 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 22:56:44 smithi167 conmon[87022]: -11-30T22:56:43 2023-11-30T22:56:44.515 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 22:56:44 smithi167 conmon[87022]: .839925+0000 mon.smithi038 (mon.0 2023-11-30T22:56:44.515 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 22:56:44 smithi167 conmon[87022]: ) 252 : audit [INF] from='client.? 172.21.15.38:0/902102686' entity='client.bootstrap-osd' cmd=[{"prefix": "osd new", "uuid": "ffffbf3d-c0d6-4c78-a79e-0f157f158363"}]: dispatch 2023-11-30T22:56:44.515 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 22:56:44 smithi167 conmon[87022]: audit 2023 2023-11-30T22:56:44.515 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 22:56:44 smithi167 conmon[87022]: -11-30T22:56:43.852973+0000 mon.smithi038 2023-11-30T22:56:44.515 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 22:56:44 smithi167 conmon[87022]: (mon.0) 253 : audit [INF] 2023-11-30T22:56:44.516 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 22:56:44 smithi167 conmon[87022]: from='client.? 172.21.15.38:0/902102686' entity='client.bootstrap-osd' cmd='[{"prefix": "osd new", "uuid": "ffffbf3d-c0d6-4c78-a79e-0f157f158363"}]': finished 2023-11-30T22:56:44.516 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 22:56:44 smithi167 conmon[87022]: cluster 2023-11-30T22:56:44.516 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 22:56:44 smithi167 conmon[87022]: 2023-11-30T22: 2023-11-30T22:56:44.516 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 22:56:44 smithi167 conmon[87022]: 56:43.853044+0000 mon.smithi038 ( 2023-11-30T22:56:44.516 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 22:56:44 smithi167 conmon[87022]: mon.0) 254 : cluster [DBG] 2023-11-30T22:56:44.516 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 22:56:44 smithi167 conmon[87022]: osdmap e11: 6 total, 0 up, 6 in 2023-11-30T22:56:44.516 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 22:56:44 smithi167 conmon[87022]: audit 2023-11-30T22:56:44.516 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 22:56:44 smithi167 conmon[87022]: 2023-11-30T22: 2023-11-30T22:56:44.516 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 22:56:44 smithi167 conmon[87022]: 56:43.853219+0000 mon.smithi038 ( 2023-11-30T22:56:44.516 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 22:56:44 smithi167 conmon[87022]: mon.0) 255 : audit [DBG] 2023-11-30T22:56:44.516 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 22:56:44 smithi167 conmon[87022]: from='mgr.14182 172.21.15.38:0/2999689707' entity='mgr.smithi038.ldalxq' cmd=[{"prefix": "osd metadata", "id": 0}]: dispatch 2023-11-30T22:56:44.516 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 22:56:44 smithi167 conmon[87022]: audit 2023-11-30T22:56:44.517 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 22:56:44 smithi167 conmon[87022]: 2023-11-30T22:56 2023-11-30T22:56:44.517 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 22:56:44 smithi167 conmon[87022]: :43.853750+0000 mon.smithi038 (mon 2023-11-30T22:56:44.517 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 22:56:44 smithi167 conmon[87022]: .0) 256 : audit [DBG] 2023-11-30T22:56:44.517 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 22:56:44 smithi167 conmon[87022]: from='mgr.14182 172.21.15.38:0/2999689707' entity='mgr.smithi038.ldalxq' cmd=[{"prefix": "osd metadata", "id": 1}]: dispatch 2023-11-30T22:56:44.517 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 22:56:44 smithi167 conmon[87022]: audit 2023-11-30T22:56:44.517 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 22:56:44 smithi167 conmon[87022]: 2023-11-30T22:56 2023-11-30T22:56:44.517 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 22:56:44 smithi167 conmon[87022]: :43.854020+0000 mon.smithi038 (mon 2023-11-30T22:56:44.517 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 22:56:44 smithi167 conmon[87022]: .0) 257 : audit [DBG] from='mgr.14182 172.21.15.38:0/2999689707' entity='mgr.smithi038.ldalxq' cmd=[{"prefix": "osd metadata", "id": 2}]: dispatch 2023-11-30T22:56:44.517 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 22:56:44 smithi167 conmon[87022]: 2023-11-30T22:56:44.517 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 22:56:44 smithi167 conmon[87022]: audit 2023-11-30T22:56:44.517 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 22:56:44 smithi167 conmon[87022]: 2023-11-30T22:56 2023-11-30T22:56:44.517 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 22:56:44 smithi167 conmon[87022]: :43.854305+0000 mon.smithi038 (mon 2023-11-30T22:56:44.517 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 22:56:44 smithi167 conmon[87022]: .0) 258 : audit [DBG] 2023-11-30T22:56:44.518 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 22:56:44 smithi167 conmon[87022]: from='mgr.14182 172.21.15.38:0/2999689707' entity='mgr.smithi038.ldalxq' cmd=[{"prefix": "osd metadata", "id": 3}]: dispatch 2023-11-30T22:56:44.518 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 22:56:44 smithi167 conmon[87022]: audit 2023 2023-11-30T22:56:44.518 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 22:56:44 smithi167 conmon[87022]: -11-30T22:56: 2023-11-30T22:56:44.518 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 22:56:44 smithi167 conmon[87022]: 43.854558+0000 mon.smithi038 (mon 2023-11-30T22:56:44.518 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 22:56:44 smithi167 conmon[87022]: .0) 259 : audit [DBG] 2023-11-30T22:56:44.518 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 22:56:44 smithi167 conmon[87022]: from='mgr.14182 172.21.15.38:0/2999689707' entity='mgr.smithi038.ldalxq' cmd=[{"prefix": "osd metadata", "id": 4}]: dispatch 2023-11-30T22:56:44.518 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 22:56:44 smithi167 conmon[87022]: audit 2023 2023-11-30T22:56:44.518 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 22:56:44 smithi167 conmon[87022]: -11-30T22:56:43 2023-11-30T22:56:44.518 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 22:56:44 smithi167 conmon[87022]: .854817+0000 mon.smithi038 (mon.0 2023-11-30T22:56:44.518 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 22:56:44 smithi167 conmon[87022]: ) 260 : audit [DBG] from='mgr.14182 172.21.15.38:0/2999689707' entity='mgr.smithi038.ldalxq' cmd=[{"prefix": "osd metadata", "id": 5}]: dispatch 2023-11-30T22:56:45.500 INFO:teuthology.orchestra.run.smithi038.stdout: 2023-11-30T22:56:45.512 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 22:56:45 smithi167 conmon[87022]: cluster 2023-11-30T22:56:44.190980+0000 mgr.smithi038.ldalxq (mgr.14182) 42 : cluster [DBG] pgmap v31: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2023-11-30T22:56:45.512 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 22:56:45 smithi167 conmon[87022]: audit 2023-11-30T22:56:44.838707+0000 mon.smithi167 (mon.1) 7 : audit [DBG] from='client.? 172.21.15.167:0/2343657501' entity='client.bootstrap-osd' cmd=[{"prefix": "mon getmap"}]: dispatch 2023-11-30T22:56:45.522 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:56:45 smithi038 conmon[81956]: cluster 2023-11-30T22:56:44.190980+0000 mgr.smithi038.ldalxq (mgr.14182) 42 : cluster [DBG] pgmap v31: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2023-11-30T22:56:45.522 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:56:45 smithi038 conmon[81956]: audit 2023-11-30T22:56:44.838707+0000 mon.smithi167 (mon.1) 7 : audit [DBG] from='client.? 172.21.15.167:0/2343657501' entity='client.bootstrap-osd' cmd=[{"prefix": "mon getmap"}]: dispatch 2023-11-30T22:56:45.875 INFO:teuthology.orchestra.run.smithi038.stdout:{"epoch":11,"num_osds":6,"num_up_osds":0,"osd_up_since":0,"num_in_osds":6,"osd_in_since":1701385003,"num_remapped_pgs":0} 2023-11-30T22:56:46.512 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 22:56:46 smithi167 conmon[87022]: audit 2023-11-30T22:56:45.192136+0000 mon.smithi038 (mon.0) 261 : audit [DBG] from='client.? 172.21.15.38:0/2486058625' entity='client.bootstrap-osd' cmd=[{"prefix": "mon getmap"}]: dispatch 2023-11-30T22:56:46.512 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 22:56:46 smithi167 conmon[87022]: audit 2023-11-30T22:56:45.500304+0000 mon.smithi038 (mon.0) 262 : audit [DBG] from='client.? 172.21.15.38:0/820491934' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2023-11-30T22:56:46.524 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:56:46 smithi038 conmon[81956]: audit 2023-11-30T22:56:45.192136+0000 mon.smithi038 ( 2023-11-30T22:56:46.524 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:56:46 smithi038 conmon[81956]: mon.0) 261 : audit [DBG] from='client.? 172.21.15.38:0/2486058625' entity='client.bootstrap-osd' cmd=[{"prefix": "mon getmap"}]: dispatch 2023-11-30T22:56:46.524 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:56:46 smithi038 conmon[81956]: audit 2023-11-30T22:56:45.500304+0000 mon.smithi038 (mon.0) 262 : audit [DBG] from='client.? 172.21.15.38:0/820491934' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2023-11-30T22:56:46.876 DEBUG:teuthology.orchestra.run.smithi038:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:0dc074ce0b0b3b4f393f56dd32ef36884ebf45a9 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 3faf8b00-8fd3-11ee-95a2-87774f69a715 -- ceph osd stat -f json 2023-11-30T22:56:47.273 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:56:47 smithi038 conmon[81956]: cluster 2023-11-30T22:56:46.191233+0000 mgr.smithi038.ldalxq (mgr.14182) 2023-11-30T22:56:47.274 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:56:47 smithi038 conmon[81956]: 43 : cluster [DBG] pgmap v32: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2023-11-30T22:56:47.467 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 22:56:47 smithi167 conmon[87022]: cluster 2023-11-30T22:56:46.191233+0000 mgr.smithi038.ldalxq (mgr.14182) 43 : cluster [DBG] pgmap v32: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2023-11-30T22:56:48.403 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:56:48 smithi038 conmon[81956]: audit 2023-11-30T22:56:47.356488+0000 mon.smithi167 (mon.1) 8 : audit [INF] from='client.? 172.21.15.167:0/143945876' entity='client.bootstrap-osd' cmd=[{"prefix": "osd new", "uuid": "d12fbc72-890a-496d-aae6-48a205a3f235"}]: dispatch 2023-11-30T22:56:48.404 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:56:48 smithi038 conmon[81956]: audit 2023-11-30T22:56:47.356967+0000 mon.smithi038 (mon.0) 263 : audit [INF] from='client.? ' entity='client.bootstrap-osd' cmd=[{"prefix": "osd new", "uuid": "d12fbc72-890a-496d-aae6-48a205a3f235"}]: dispatch 2023-11-30T22:56:48.404 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:56:48 smithi038 conmon[81956]: audit 2023-11-30T22:56:47.362980+0000 mon.smithi038 (mon.0) 264 : audit [INF] from='client.? ' entity='client.bootstrap-osd' cmd='[{"prefix": "osd new", "uuid": "d12fbc72-890a-496d-aae6-48a205a3f235"}]': finished 2023-11-30T22:56:48.404 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:56:48 smithi038 conmon[81956]: cluster 2023-11-30T22:56:47.363042+0000 mon.smithi038 (mon.0) 265 : cluster [DBG] osdmap e12: 7 total, 0 up, 7 in 2023-11-30T22:56:48.404 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:56:48 smithi038 conmon[81956]: audit 2023-11-30T22:56:47.363185+0000 mon.smithi038 (mon.0) 266 : audit [DBG] from='mgr.14182 172.21.15.38:0/2999689707' entity='mgr.smithi038.ldalxq' cmd=[{"prefix": "osd metadata", "id": 0}]: dispatch 2023-11-30T22:56:48.404 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:56:48 smithi038 conmon[81956]: audit 2023-11-30T22:56:47.363463+0000 mon.smithi038 (mon.0) 267 : audit [DBG] from='mgr.14182 172.21.15.38:0/2999689707' entity='mgr.smithi038.ldalxq' cmd=[{"prefix": "osd metadata", "id": 1}]: dispatch 2023-11-30T22:56:48.404 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:56:48 smithi038 conmon[81956]: audit 2023-11-30T22:56:47.363606+0000 mon.smithi038 (mon.0) 268 : audit [DBG] from='mgr.14182 172.21.15.38:0/2999689707' entity='mgr.smithi038.ldalxq' cmd=[{"prefix": "osd metadata", "id": 2}]: dispatch 2023-11-30T22:56:48.404 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:56:48 smithi038 conmon[81956]: audit 2023-11-30T22:56:47.363743+0000 mon.smithi038 (mon.0) 269 : audit [DBG] from='mgr.14182 172.21.15.38:0/2999689707' entity='mgr.smithi038.ldalxq' cmd=[{"prefix": "osd metadata", "id": 3}]: dispatch 2023-11-30T22:56:48.404 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:56:48 smithi038 conmon[81956]: audit 2023-11-30T22:56:47.363891+0000 mon.smithi038 (mon.0) 270 : audit [DBG] from='mgr.14182 172.21.15.38:0/2999689707' entity='mgr.smithi038.ldalxq' cmd=[{"prefix": "osd metadata", "id": 4}]: dispatch 2023-11-30T22:56:48.404 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:56:48 smithi038 conmon[81956]: audit 2023-11-30T22:56:47.364057+0000 mon.smithi038 (mon.0) 271 : audit [DBG] from='mgr.14182 172.21.15.38:0/2999689707' entity='mgr.smithi038.ldalxq' cmd=[{"prefix": "osd metadata", "id": 5}]: dispatch 2023-11-30T22:56:48.404 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:56:48 smithi038 conmon[81956]: audit 2023-11-30T22:56:47.364213+0000 mon.smithi038 (mon.0) 272 : audit [DBG] from='mgr.14182 172.21.15.38:0/2999689707' entity='mgr.smithi038.ldalxq' cmd=[{"prefix": "osd metadata", "id": 6}]: dispatch 2023-11-30T22:56:48.404 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:56:48 smithi038 conmon[81956]: audit 2023-11-30T22:56:47.742324+0000 mon.smithi038 (mon.0) 273 : audit [INF] from='client.? 172.21.15.38:0/4200376271' entity='client.bootstrap-osd' cmd=[{"prefix": "osd new", "uuid": "e2713078-6748-4b3c-9b03-c18369bb2b3d"}]: dispatch 2023-11-30T22:56:48.404 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:56:48 smithi038 conmon[81956]: audit 2023-11-30T22:56:47.747636+0000 mon.smithi038 (mon.0) 274 : audit [INF] from='client.? 172.21.15.38:0/4200376271' entity='client.bootstrap-osd' cmd='[{"prefix": "osd new", "uuid": "e2713078-6748-4b3c-9b03-c18369bb2b3d"}]': finished 2023-11-30T22:56:48.405 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:56:48 smithi038 conmon[81956]: cluster 2023-11-30T22:56:47.747711+0000 mon.smithi038 (mon.0) 275 : cluster [DBG] osdmap e13: 8 total, 0 up, 8 in 2023-11-30T22:56:48.405 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:56:48 smithi038 conmon[81956]: audit 2023-11-30T22:56:47.747864+0000 mon.smithi038 (mon.0) 276 : audit [DBG] from='mgr.14182 172.21.15.38:0/2999689707' entity='mgr.smithi038.ldalxq' cmd=[{"prefix": "osd metadata", "id": 0}]: dispatch 2023-11-30T22:56:48.405 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:56:48 smithi038 conmon[81956]: audit 2023-11-30T22:56:47.748184+0000 mon.smithi038 (mon.0) 277 : audit [DBG] from='mgr.14182 172.21.15.38:0/2999689707' entity='mgr.smithi038.ldalxq' cmd=[{"prefix": "osd metadata", "id": 1}]: dispatch 2023-11-30T22:56:48.405 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:56:48 smithi038 conmon[81956]: audit 2023-11-30T22:56:47.748381+0000 mon.smithi038 (mon.0) 278 : audit [DBG] from='mgr.14182 172.21.15.38:0/2999689707' entity='mgr.smithi038.ldalxq' cmd=[{"prefix": "osd metadata", "id": 2}]: dispatch 2023-11-30T22:56:48.405 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:56:48 smithi038 conmon[81956]: audit 2023-11-30T22:56:47.748547+0000 mon.smithi038 (mon.0) 279 : audit [DBG] from='mgr.14182 172.21.15.38:0/2999689707' entity='mgr.smithi038.ldalxq' cmd=[{"prefix": "osd metadata", "id": 3}]: dispatch 2023-11-30T22:56:48.405 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:56:48 smithi038 conmon[81956]: audit 2023-11-30T22:56:47.748726+0000 mon.smithi038 (mon.0) 280 : audit [DBG] from='mgr.14182 172.21.15.38:0/2999689707' entity='mgr.smithi038.ldalxq' cmd=[{"prefix": "osd metadata", "id": 4}]: dispatch 2023-11-30T22:56:48.405 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:56:48 smithi038 conmon[81956]: audit 2023-11-30T22:56:47.748892+0000 mon.smithi038 (mon.0) 281 : audit [DBG] from='mgr.14182 172.21.15.38:0/2999689707' entity='mgr.smithi038.ldalxq' cmd=[{"prefix": "osd metadata", "id": 5}]: dispatch 2023-11-30T22:56:48.405 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:56:48 smithi038 conmon[81956]: audit 2023-11-30T22:56:47.749068+0000 mon.smithi038 (mon.0) 282 : audit [DBG] from='mgr.14182 172.21.15.38:0/2999689707' entity='mgr.smithi038.ldalxq' cmd=[{"prefix": "osd metadata", "id": 6}]: dispatch 2023-11-30T22:56:48.405 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:56:48 smithi038 conmon[81956]: audit 2023-11-30T22:56:47.749253+0000 mon.smithi038 (mon.0) 283 : audit [DBG] from='mgr.14182 172.21.15.38:0/2999689707' entity='mgr.smithi038.ldalxq' cmd=[{"prefix": "osd metadata", "id": 7}]: dispatch 2023-11-30T22:56:48.512 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 22:56:48 smithi167 conmon[87022]: audit 2023-11-30T22:56:47.356488+0000 mon.smithi167 (mon. 2023-11-30T22:56:48.512 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 22:56:48 smithi167 conmon[87022]: 1) 8 : audit [INF] from='client.? 172.21.15.167:0/143945876' entity='client.bootstrap-osd' cmd=[{"prefix": "osd new", "uuid": "d12fbc72-890a-496d-aae6-48a205a3f235"}]: dispatch 2023-11-30T22:56:48.512 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 22:56:48 smithi167 conmon[87022]: audit 2023-11-30T22:56:47.356967+0000 mon.smithi038 (mon.0) 263 : audit [INF] from='client.? ' entity='client.bootstrap-osd' cmd=[{"prefix": "osd new", "uuid": "d12fbc72-890a-496d-aae6-48a205a3f235"}]: dispatch 2023-11-30T22:56:48.512 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 22:56:48 smithi167 conmon[87022]: audit 2023-11-30T22:56:47.362980+0000 mon.smithi038 (mon.0) 264 : audit [INF] from='client.? ' entity='client.bootstrap-osd' cmd='[{"prefix": "osd new", "uuid": "d12fbc72-890a-496d-aae6-48a205a3f235"}]': finished 2023-11-30T22:56:48.512 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 22:56:48 smithi167 conmon[87022]: cluster 2023-11-30T22:56:47.363042+0000 mon.smithi038 (mon.0) 265 : cluster [DBG] osdmap e12: 7 total, 0 up, 7 in 2023-11-30T22:56:48.513 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 22:56:48 smithi167 conmon[87022]: audit 2023-11-30T22:56:47.363185+0000 mon.smithi038 (mon.0) 266 : audit [DBG] from='mgr.14182 172.21.15.38:0/2999689707' entity='mgr.smithi038.ldalxq' cmd=[{"prefix": "osd metadata", "id": 0}]: dispatch 2023-11-30T22:56:48.513 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 22:56:48 smithi167 conmon[87022]: audit 2023-11-30T22:56:47.363463+0000 mon.smithi038 (mon.0) 267 : audit [DBG] from='mgr.14182 172.21.15.38:0/2999689707' entity='mgr.smithi038.ldalxq' cmd=[{"prefix": "osd metadata", "id": 1}]: dispatch 2023-11-30T22:56:48.513 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 22:56:48 smithi167 conmon[87022]: audit 2023-11-30T22:56:47.363606+0000 mon.smithi038 (mon.0) 268 : audit [DBG] from='mgr.14182 172.21.15.38:0/2999689707' entity='mgr.smithi038.ldalxq' cmd=[{"prefix": "osd metadata", "id": 2}]: dispatch 2023-11-30T22:56:48.513 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 22:56:48 smithi167 conmon[87022]: audit 2023-11-30T22:56:47.363743+0000 mon.smithi038 (mon.0) 269 : audit [DBG] from='mgr.14182 172.21.15.38:0/2999689707' entity='mgr.smithi038.ldalxq' cmd=[{"prefix": "osd metadata", "id": 3}]: dispatch 2023-11-30T22:56:48.513 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 22:56:48 smithi167 conmon[87022]: audit 2023-11-30T22:56:47.363891+0000 mon.smithi038 (mon.0) 270 : audit [DBG] from='mgr.14182 172.21.15.38:0/2999689707' entity='mgr.smithi038.ldalxq' cmd=[{"prefix": "osd metadata", "id": 4}]: dispatch 2023-11-30T22:56:48.513 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 22:56:48 smithi167 conmon[87022]: audit 2023-11-30T22:56:47.364057+0000 mon.smithi038 (mon.0) 271 : audit [DBG] from='mgr.14182 172.21.15.38:0/2999689707' entity='mgr.smithi038.ldalxq' cmd=[{"prefix": "osd metadata", "id": 5}]: dispatch 2023-11-30T22:56:48.513 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 22:56:48 smithi167 conmon[87022]: audit 2023-11-30T22:56:47.364213+0000 mon.smithi038 (mon.0) 272 : audit [DBG] 2023-11-30T22:56:48.513 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 22:56:48 smithi167 conmon[87022]: from='mgr.14182 172.21.15.38:0/2999689707' entity='mgr.smithi038.ldalxq' cmd=[{"prefix": "osd metadata", "id": 6}]: dispatch 2023-11-30T22:56:48.513 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 22:56:48 smithi167 conmon[87022]: audit 2023-11-30 2023-11-30T22:56:48.513 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 22:56:48 smithi167 conmon[87022]: T22:56:47.742324+0000 mon.smithi038 (mon.0) 273 : audit [INF] from='client.? 172.21.15.38:0/4200376271' entity='client.bootstrap-osd' cmd=[{"prefix": "osd new", "uuid": "e2713078-6748-4b3c-9b03-c18369bb2b3d"}]: dispatch 2023-11-30T22:56:48.513 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 22:56:48 smithi167 conmon[87022]: audit 2023-11-30T22:56:48.513 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 22:56:48 smithi167 conmon[87022]: 2023-11-30T22:56:47.747636+0000 mon.smithi038 (mon.0) 274 : audit [INF] from='client.? 172.21.15.38:0/4200376271' entity='client.bootstrap-osd' cmd='[{"prefix": "osd new", "uuid": "e2713078-6748-4b3c-9b03-c18369bb2b3d"}]': finished 2023-11-30T22:56:48.513 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 22:56:48 smithi167 conmon[87022]: 2023-11-30T22:56:48.513 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 22:56:48 smithi167 conmon[87022]: cluster 2023-11-30T 2023-11-30T22:56:48.514 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 22:56:48 smithi167 conmon[87022]: 22:56:47.747711+0000 mon.smithi038 (mon.0) 275 : cluster [DBG] osdmap e13: 8 total, 0 up, 8 in 2023-11-30T22:56:48.514 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 22:56:48 smithi167 conmon[87022]: audit 2023-11-30T22:56:47.747864 2023-11-30T22:56:48.514 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 22:56:48 smithi167 conmon[87022]: +0000 mon.smithi038 (mon.0) 276 : audit [DBG] from='mgr.14182 172.21.15.38:0/2999689707' entity='mgr.smithi038.ldalxq' cmd=[{"prefix": "osd metadata", "id": 0}]: dispatch 2023-11-30T22:56:48.514 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 22:56:48 smithi167 conmon[87022]: audit 2023-11-30T22:56:47.748184+0000 mon.smithi038 ( 2023-11-30T22:56:48.514 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 22:56:48 smithi167 conmon[87022]: mon.0) 277 : audit [DBG] from='mgr.14182 172.21.15.38:0/2999689707' entity='mgr.smithi038.ldalxq' cmd=[{"prefix": "osd metadata", "id": 1}]: dispatch 2023-11-30T22:56:48.514 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 22:56:48 smithi167 conmon[87022]: audit 2023-11-30T22:56:47.748381+0000 mon.smithi038 (mon.0) 278 2023-11-30T22:56:48.514 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 22:56:48 smithi167 conmon[87022]: : audit [DBG] from='mgr.14182 172.21.15.38:0/2999689707' entity='mgr.smithi038.ldalxq' cmd=[{"prefix": "osd metadata", "id": 2}]: dispatch 2023-11-30T22:56:48.514 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 22:56:48 smithi167 conmon[87022]: audit 2023-11-30T22:56:48.514 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 22:56:48 smithi167 conmon[87022]: 2023-11-30T22:56:47.748547+0000 mon.smithi038 (mon.0) 279 : audit [DBG] from='mgr.14182 172.21.15.38:0/2999689707' entity='mgr.smithi038.ldalxq' cmd=[{"prefix": "osd metadata", "id": 3}]: dispatch 2023-11-30T22:56:48.514 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 22:56:48 smithi167 conmon[87022]: audit 2023-11-30T22:56 2023-11-30T22:56:48.514 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 22:56:48 smithi167 conmon[87022]: :47.748726+0000 mon.smithi038 (mon.0) 280 : audit [DBG] from='mgr.14182 172.21.15.38:0/2999689707' entity='mgr.smithi038.ldalxq' cmd=[{"prefix": "osd metadata", "id": 4}]: dispatch 2023-11-30T22:56:48.514 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 22:56:48 smithi167 conmon[87022]: audit 2023-11-30T22:56 2023-11-30T22:56:48.514 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 22:56:48 smithi167 conmon[87022]: :47.748892+0000 mon.smithi038 (mon.0) 281 : audit [DBG] from='mgr.14182 172.21.15.38:0/2999689707' entity='mgr.smithi038.ldalxq' cmd=[{"prefix": "osd metadata", "id": 5}]: dispatch 2023-11-30T22:56:48.515 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 22:56:48 smithi167 conmon[87022]: audit 2023-11-30T22:56 2023-11-30T22:56:48.515 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 22:56:48 smithi167 conmon[87022]: :47.749068+0000 mon.smithi038 (mon.0) 282 : audit [DBG] from='mgr.14182 172.21.15.38:0/2999689707' entity='mgr.smithi038.ldalxq' cmd=[{"prefix": "osd metadata", "id": 6}]: dispatch 2023-11-30T22:56:48.515 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 22:56:48 smithi167 conmon[87022]: audit 2023-11-30T 2023-11-30T22:56:48.515 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 22:56:48 smithi167 conmon[87022]: 22:56:47.749253+0000 mon.smithi038 (mon.0) 283 : audit [DBG] from='mgr.14182 172.21.15.38:0/2999689707' entity='mgr.smithi038.ldalxq' cmd=[{"prefix": "osd metadata", "id": 7}]: dispatch 2023-11-30T22:56:48.773 INFO:teuthology.orchestra.run.smithi038.stdout: 2023-11-30T22:56:49.138 INFO:teuthology.orchestra.run.smithi038.stdout:{"epoch":13,"num_osds":8,"num_up_osds":0,"osd_up_since":0,"num_in_osds":8,"osd_in_since":1701385007,"num_remapped_pgs":0} 2023-11-30T22:56:49.512 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 22:56:49 smithi167 conmon[87022]: cluster 2023-11-30T22:56:48.191469+0000 mgr.smithi038.ldalxq (mgr.14182) 44 2023-11-30T22:56:49.512 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 22:56:49 smithi167 conmon[87022]: : cluster [DBG] pgmap v35: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2023-11-30T22:56:49.512 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 22:56:49 smithi167 conmon[87022]: audit 2023-11-30T22:56:48.522828+0000 mon.smithi167 (mon.1) 9 : audit [DBG] from='client.? 172.21.15.167:0/1016948855' entity='client.bootstrap-osd' cmd=[{"prefix": "mon getmap"}]: dispatch 2023-11-30T22:56:49.512 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 22:56:49 smithi167 conmon[87022]: audit 2023-11-30T22:56:48.772748+0000 mon.smithi038 2023-11-30T22:56:49.512 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 22:56:49 smithi167 conmon[87022]: (mon.0) 284 : audit [DBG] from='client.? 172.21.15.38:0/1031823567' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2023-11-30T22:56:49.512 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 22:56:49 smithi167 conmon[87022]: audit 2023-11-30T22:56:49.512 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 22:56:49 smithi167 conmon[87022]: 2023-11-30T22:56:49 2023-11-30T22:56:49.512 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 22:56:49 smithi167 conmon[87022]: .090023+0000 mon.smithi038 (mon.0 2023-11-30T22:56:49.512 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 22:56:49 smithi167 conmon[87022]: ) 285 : audit [DBG] from='client.? 172.21.15.38:0/2109663431' entity='client.bootstrap-osd' cmd=[{"prefix": "mon getmap"}]: dispatch 2023-11-30T22:56:49.524 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:56:49 smithi038 conmon[81956]: cluster 2023-11-30T22:56:48.191469+0000 mgr.smithi038.ldalxq (mgr.14182 2023-11-30T22:56:49.524 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:56:49 smithi038 conmon[81956]: ) 44 : cluster [DBG] pgmap v35: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2023-11-30T22:56:49.524 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:56:49 smithi038 conmon[81956]: audit 2023-11-30T22:56:48.522828+0000 mon.smithi167 (mon.1) 9 : audit [DBG] from='client.? 172.21.15.167:0/1016948855' entity='client.bootstrap-osd' cmd=[{"prefix": "mon getmap"}]: dispatch 2023-11-30T22:56:49.524 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:56:49 smithi038 conmon[81956]: audit 2023-11-30T22:56:48.772748+0000 mon.smithi038 (mon.0) 284 : audit [DBG] from='client.? 172.21.15.38:0/1031823567' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2023-11-30T22:56:49.524 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:56:49 smithi038 conmon[81956]: audit 2023-11-30T22:56:49.090023+0000 mon.smithi038 (mon.0) 285 : audit [DBG] from='client.? 172.21.15.38:0/2109663431' entity='client.bootstrap-osd' cmd=[{"prefix": "mon getmap"}]: dispatch 2023-11-30T22:56:50.139 DEBUG:teuthology.orchestra.run.smithi038:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:0dc074ce0b0b3b4f393f56dd32ef36884ebf45a9 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 3faf8b00-8fd3-11ee-95a2-87774f69a715 -- ceph osd stat -f json 2023-11-30T22:56:51.274 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:56:51 smithi038 conmon[81956]: cluster 2023-11-30T22:56:50.191704+0000 mgr.smithi038.ldalxq (mgr.14182 2023-11-30T22:56:51.274 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:56:51 smithi038 conmon[81956]: ) 45 : cluster [DBG] pgmap v36: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2023-11-30T22:56:51.512 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 22:56:51 smithi167 conmon[87022]: cluster 2023-11-30T22:56:50.191704+0000 mgr.smithi038.ldalxq (mgr.14182) 45 : cluster 2023-11-30T22:56:51.512 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 22:56:51 smithi167 conmon[87022]: [DBG] pgmap v36: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2023-11-30T22:56:52.047 INFO:teuthology.orchestra.run.smithi038.stdout: 2023-11-30T22:56:52.262 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 22:56:52 smithi167 conmon[87022]: audit 2023-11-30T22:56:52.047247+0000 mon.smithi038 (mon.0) 286 : audit [DBG] from='client.? 172.21.15.38:0/2154733405' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2023-11-30T22:56:52.444 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:56:52 smithi038 conmon[81956]: audit 2023-11-30T22:56:52.047247+0000 2023-11-30T22:56:52.445 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:56:52 smithi038 conmon[81956]: mon.smithi038 (mon.0) 286 : audit [DBG] from='client.? 172.21.15.38:0/2154733405' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2023-11-30T22:56:52.469 INFO:teuthology.orchestra.run.smithi038.stdout:{"epoch":13,"num_osds":8,"num_up_osds":0,"osd_up_since":0,"num_in_osds":8,"osd_in_since":1701385007,"num_remapped_pgs":0} 2023-11-30T22:56:53.470 DEBUG:teuthology.orchestra.run.smithi038:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:0dc074ce0b0b3b4f393f56dd32ef36884ebf45a9 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 3faf8b00-8fd3-11ee-95a2-87774f69a715 -- ceph osd stat -f json 2023-11-30T22:56:53.496 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:56:53 smithi038 conmon[81956]: cluster 2023-11-30T22:56:52.191949+0000 mgr.smithi038.ldalxq (mgr.14182) 46 : cluster [DBG] pgmap v37: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2023-11-30T22:56:53.512 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 22:56:53 smithi167 conmon[87022]: cluster 2023-11-30T22:56:52 2023-11-30T22:56:53.512 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 22:56:53 smithi167 conmon[87022]: .191949+0000 mgr.smithi038.ldalxq (mgr.14182) 46 : cluster [DBG] pgmap v37: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2023-11-30T22:56:54.312 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:56:54 smithi038 conmon[81956]: audit 2023-11-30T22:56:53.891757+0000 mon.smithi038 (mon.0) 287 : audit [INF] from='mgr.14182 172.21.15.38:0/2999689707' entity='mgr.smithi038.ldalxq' cmd=[{"prefix": "auth get", "entity": "osd.0"}]: dispatch 2023-11-30T22:56:54.312 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:56:54 smithi038 conmon[81956]: audit 2023-11-30T22:56:53.892462+0000 mon.smithi038 (mon.0) 288 : audit [DBG] from='mgr.14182 172.21.15.38:0/2999689707' entity='mgr.smithi038.ldalxq' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2023-11-30T22:56:54.524 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 22:56:54 smithi167 conmon[87022]: audit 2023-11-30T22:56:53.891757+0000 mon.smithi038 (mon.0) 287 : audit [INF] from='mgr.14182 172.21.15.38:0/2999689707' entity='mgr.smithi038.ldalxq' cmd=[{"prefix": "auth get", "entity": "osd.0"}]: dispatch 2023-11-30T22:56:54.524 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 22:56:54 smithi167 conmon[87022]: audit 2023-11-30T22:56:53.892462 2023-11-30T22:56:54.525 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 22:56:54 smithi167 conmon[87022]: +0000 mon.smithi038 (mon.0) 288 : audit [DBG] from='mgr.14182 172.21.15.38:0/2999689707' entity='mgr.smithi038.ldalxq' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2023-11-30T22:56:55.350 INFO:teuthology.orchestra.run.smithi038.stdout: 2023-11-30T22:56:55.458 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 22:56:55 smithi167 conmon[87022]: cephadm 2023-11-30T22:56:53.893087+0000 mgr.smithi038.ldalxq (mgr.14182) 47 : cephadm [INF] Deploying daemon osd.0 on smithi167 2023-11-30T22:56:55.458 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 22:56:55 smithi167 conmon[87022]: cluster 2023-11-30T22:56:54.192214+0000 mgr.smithi038.ldalxq (mgr.14182) 48 : cluster [DBG] pgmap v38: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2023-11-30T22:56:55.458 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 22:56:55 smithi167 conmon[87022]: audit 2023-11-30T22:56:54.903915+0000 mon.smithi038 (mon.0) 289 : audit [INF] from='mgr.14182 172.21.15.38:0/2999689707' entity='mgr.smithi038.ldalxq' cmd=[{"prefix": "auth get", "entity": "osd.1"}]: dispatch 2023-11-30T22:56:55.458 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 22:56:55 smithi167 conmon[87022]: audit 2023-11-30T22:56:54.904575+0000 mon.smithi038 (mon.0) 290 : audit [DBG] from='mgr.14182 172.21.15.38:0/2999689707' entity='mgr.smithi038.ldalxq' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2023-11-30T22:56:55.524 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:56:55 smithi038 conmon[81956]: cephadm 2023-11- 2023-11-30T22:56:55.524 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:56:55 smithi038 conmon[81956]: 30T22:56:53.893087+0000 mgr.smithi038.ldalxq (mgr.14182) 47 : cephadm [INF] Deploying daemon osd.0 on smithi167 2023-11-30T22:56:55.524 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:56:55 smithi038 conmon[81956]: cluster 2023-11-30T22:56:54.192214+0000 mgr.smithi038.ldalxq (mgr.14182) 48 : cluster [DBG] pgmap v38: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2023-11-30T22:56:55.524 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:56:55 smithi038 conmon[81956]: audit 2023-11-30T22:56:54.903915+0000 mon.smithi038 (mon.0) 289 : audit [INF] from='mgr.14182 172.21.15.38:0/2999689707' entity='mgr.smithi038.ldalxq' cmd=[{"prefix": "auth get", "entity": "osd.1"}]: dispatch 2023-11-30T22:56:55.524 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:56:55 smithi038 conmon[81956]: audit 2023-11-30T22:56:54.904575+0000 mon.smithi038 (mon.0) 290 : audit [DBG] from='mgr.14182 172.21.15.38:0/2999689707' entity='mgr.smithi038.ldalxq' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2023-11-30T22:56:55.924 INFO:teuthology.orchestra.run.smithi038.stdout:{"epoch":13,"num_osds":8,"num_up_osds":0,"osd_up_since":0,"num_in_osds":8,"osd_in_since":1701385007,"num_remapped_pgs":0} 2023-11-30T22:56:56.496 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 22:56:56 smithi167 conmon[87022]: cephadm 2023-11-30T22:56:54. 2023-11-30T22:56:56.497 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 22:56:56 smithi167 conmon[87022]: 905177+0000 mgr.smithi038.ldalxq (mgr.14182) 49 : cephadm [INF] Deploying daemon osd.1 on smithi038 2023-11-30T22:56:56.497 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 22:56:56 smithi167 conmon[87022]: audit 2023-11-30T22:56:55.349483+0000 mon.smithi038 (mon.0) 291 : audit [DBG] from='client.? 172.21.15.38:0/3660933639' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2023-11-30T22:56:56.524 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:56:56 smithi038 conmon[81956]: cephadm 2023-11-30T22:56:54.905177+0000 mgr.smithi038.ldalxq (mgr. 2023-11-30T22:56:56.524 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:56:56 smithi038 conmon[81956]: 14182) 49 : cephadm [INF] Deploying daemon osd.1 on smithi038 2023-11-30T22:56:56.524 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:56:56 smithi038 conmon[81956]: audit 2023-11-30T22:56:55.349483+0000 mon.smithi038 (mon.0) 291 : audit [DBG] from='client.? 172.21.15.38:0/3660933639' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2023-11-30T22:56:56.925 DEBUG:teuthology.orchestra.run.smithi038:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:0dc074ce0b0b3b4f393f56dd32ef36884ebf45a9 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 3faf8b00-8fd3-11ee-95a2-87774f69a715 -- ceph osd stat -f json 2023-11-30T22:56:57.524 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:56:57 smithi038 conmon[81956]: cluster 2023-11-30T22:56:56.192639+0000 mgr.smithi038.ldalxq (mgr. 2023-11-30T22:56:57.524 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:56:57 smithi038 conmon[81956]: 14182) 50 : cluster [DBG] pgmap v39: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2023-11-30T22:56:57.592 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 22:56:57 smithi167 conmon[87022]: cluster 2023-11-30T22:56:56.192639+0000 mgr.smithi038.ldalxq (mgr.14182 2023-11-30T22:56:57.592 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 22:56:57 smithi167 conmon[87022]: ) 50 : cluster [DBG] pgmap v39: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2023-11-30T22:56:58.895 INFO:teuthology.orchestra.run.smithi038.stdout: 2023-11-30T22:56:59.524 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:56:59 smithi038 conmon[81956]: cluster 2023-11-30T22:56:58.192856+0000 mgr.smithi038.ldalxq (mgr.14182) 51 2023-11-30T22:56:59.524 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:56:59 smithi038 conmon[81956]: : cluster [DBG] pgmap v40: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2023-11-30T22:56:59.524 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:56:59 smithi038 conmon[81956]: audit 2023-11-30T22:56:58.853791+0000 mon.smithi038 (mon.0) 292 : audit 2023-11-30T22:56:59.524 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:56:59 smithi038 conmon[81956]: [INF] from='mgr.14182 172.21.15.38:0/2999689707' entity='mgr.smithi038.ldalxq' 2023-11-30T22:56:59.524 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:56:59 smithi038 conmon[81956]: audit 2023-11-30T22:56:59.524 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:56:59 smithi038 conmon[81956]: 2023-11-30T22:56:58.854611+0000 mon.smithi038 (mon.0) 2023-11-30T22:56:59.524 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:56:59 smithi038 conmon[81956]: 293 : audit [INF] from='mgr.14182 172.21.15.38:0/2999689707' entity='mgr.smithi038.ldalxq' cmd=[{"prefix": "auth get", "entity": "osd.2"}]: dispatch 2023-11-30T22:56:59.524 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:56:59 smithi038 conmon[81956]: audit 2023-11-30T22 2023-11-30T22:56:59.524 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:56:59 smithi038 conmon[81956]: :56:58.855385+0000 mon.smithi038 (mon.0) 2023-11-30T22:56:59.524 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:56:59 smithi038 conmon[81956]: 294 : audit [DBG] from='mgr.14182 172.21.15.38:0/2999689707' entity='mgr.smithi038.ldalxq' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2023-11-30T22:56:59.524 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:56:59 smithi038 conmon[81956]: audit 2023-11 2023-11-30T22:56:59.525 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:56:59 smithi038 conmon[81956]: -30T22:56:58.894542+0000 mon.smithi038 (mon 2023-11-30T22:56:59.525 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:56:59 smithi038 conmon[81956]: .0) 295 : audit [DBG] from='client.? 172.21.15.38:0/3468491500' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2023-11-30T22:56:59.612 INFO:teuthology.orchestra.run.smithi038.stdout:{"epoch":13,"num_osds":8,"num_up_osds":0,"osd_up_since":0,"num_in_osds":8,"osd_in_since":1701385007,"num_remapped_pgs":0} 2023-11-30T22:56:59.649 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 22:56:59 smithi167 conmon[87022]: cluster 2023-11-30T22:56:58.192856+0000 mgr.smithi038.ldalxq (mgr.14182) 51 : cluster [DBG] pgmap v40: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2023-11-30T22:56:59.649 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 22:56:59 smithi167 conmon[87022]: audit 2023-11-30T22:56:58.853791+0000 mon.smithi038 (mon.0) 292 : audit [INF] from='mgr.14182 172.21.15.38:0/2999689707' entity='mgr.smithi038.ldalxq' 2023-11-30T22:56:59.649 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 22:56:59 smithi167 conmon[87022]: audit 2023-11-30T22:56:58.854611+0000 mon.smithi038 (mon.0) 293 : audit [INF] from='mgr.14182 172.21.15.38:0/2999689707' entity='mgr.smithi038.ldalxq' cmd=[{"prefix": "auth get", "entity": "osd.2"}]: dispatch 2023-11-30T22:56:59.649 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 22:56:59 smithi167 conmon[87022]: audit 2023-11-30T22:56:58.855385+0000 mon.smithi038 (mon.0) 294 : audit [DBG] from='mgr.14182 172.21.15.38:0/2999689707' entity='mgr.smithi038.ldalxq' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2023-11-30T22:56:59.649 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 22:56:59 smithi167 conmon[87022]: audit 2023-11-30T22:56:58.894542+0000 mon.smithi038 (mon.0) 295 : audit [DBG] from='client.? 172.21.15.38:0/3468491500' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2023-11-30T22:57:00.386 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 22:57:00 smithi167 conmon[87022]: cephadm 2023-11-30T22:56:58.856044+0000 mgr.smithi038.ldalxq (mgr 2023-11-30T22:57:00.386 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 22:57:00 smithi167 conmon[87022]: .14182) 52 : cephadm [INF] Deploying daemon osd.2 on smithi167 2023-11-30T22:57:00.524 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:57:00 smithi038 conmon[81956]: cephadm 2023-11-30T22:56:58.856044+0000 mgr.smithi038.ldalxq (mgr 2023-11-30T22:57:00.524 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:57:00 smithi038 conmon[81956]: .14182) 52 : cephadm [INF] Deploying daemon osd.2 on smithi167 2023-11-30T22:57:00.614 DEBUG:teuthology.orchestra.run.smithi038:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:0dc074ce0b0b3b4f393f56dd32ef36884ebf45a9 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 3faf8b00-8fd3-11ee-95a2-87774f69a715 -- ceph osd stat -f json 2023-11-30T22:57:01.472 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 22:57:01 smithi167 conmon[87022]: cluster 2023-11-30T22:57:00.193096+0000 mgr.smithi038.ldalxq (mgr.14182) 53 : cluster [DBG] pgmap v41: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2023-11-30T22:57:01.472 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 22:57:01 smithi167 conmon[87022]: audit 2023-11-30T22:57:00.316756+0000 mon.smithi038 (mon.0) 296 : audit [INF] from='mgr.14182 172.21.15.38:0/2999689707' entity='mgr.smithi038.ldalxq' 2023-11-30T22:57:01.472 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 22:57:01 smithi167 conmon[87022]: audit 2023-11-30T22:57:00.317473+0000 mon.smithi038 (mon.0) 297 : audit [INF] from='mgr.14182 172.21.15.38:0/2999689707' entity='mgr.smithi038.ldalxq' cmd=[{"prefix": "auth get", "entity": "osd.3"}]: dispatch 2023-11-30T22:57:01.472 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 22:57:01 smithi167 conmon[87022]: audit 2023-11-30T22:57:00.318084+0000 mon.smithi038 (mon.0) 298 : audit [DBG] from='mgr.14182 172.21.15.38:0/2999689707' entity='mgr.smithi038.ldalxq' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2023-11-30T22:57:01.472 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 22:57:01 smithi167 conmon[87022]: cephadm 2023-11-30T22:57:00.318612+0000 mgr.smithi038.ldalxq (mgr.14182) 54 : cephadm [INF] Deploying daemon osd.3 on smithi038 2023-11-30T22:57:01.524 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:57:01 smithi038 conmon[81956]: cluster 2023-11-30T22:57:00.193096+0000 mgr.smithi038.ldalxq (mgr.14182) 53 : cluster [DBG] pgmap v41: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2023-11-30T22:57:01.524 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:57:01 smithi038 conmon[81956]: audit 2023-11-30T22:57:00.316756+0000 mon.smithi038 (mon.0) 296 : audit [INF] from='mgr.14182 172.21.15.38:0/2999689707' entity='mgr.smithi038.ldalxq' 2023-11-30T22:57:01.524 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:57:01 smithi038 conmon[81956]: audit 2023-11-30T22:57:00.317473+0000 mon.smithi038 (mon.0) 297 : audit [INF] from='mgr.14182 172.21.15.38:0/2999689707' entity='mgr.smithi038.ldalxq' cmd=[{"prefix": "auth get", "entity": "osd.3"}]: dispatch 2023-11-30T22:57:01.524 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:57:01 smithi038 conmon[81956]: audit 2023-11-30T22:57:00.318084+0000 mon.smithi038 (mon.0) 298 : audit [DBG] from='mgr.14182 172.21.15.38:0/2999689707' entity='mgr.smithi038.ldalxq' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2023-11-30T22:57:01.524 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:57:01 smithi038 conmon[81956]: cephadm 2023-11-30T22:57:00.318612+0000 mgr.smithi038.ldalxq (mgr.14182) 54 : cephadm [INF] Deploying daemon osd.3 on smithi038 2023-11-30T22:57:02.709 INFO:teuthology.orchestra.run.smithi038.stdout: 2023-11-30T22:57:02.733 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:57:02 smithi038 conmon[81956]: audit 2023-11-30T22:57:02 2023-11-30T22:57:02.733 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:57:02 smithi038 conmon[81956]: .017840+0000 mon.smithi167 (mon.1) 10 : audit [INF] from='osd.0 [v2:172.21.15.167:6800/3313098133,v1:172.21.15.167:6801/3313098133]' entity='osd.0' cmd=[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["0"]}]: dispatch 2023-11-30T22:57:02.733 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:57:02 smithi038 conmon[81956]: audit 2023-11-30T22:57:02.018306+0000 mon.smithi038 (mon.0) 299 : audit [INF] from='osd.0 ' entity='osd.0' cmd=[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["0"]}]: dispatch 2023-11-30T22:57:02.762 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 22:57:02 smithi167 conmon[87022]: audit 2023-11-30T22:57:02.017840+0000 mon.smithi167 (mon.1) 10 : audit 2023-11-30T22:57:02.763 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 22:57:02 smithi167 conmon[87022]: [INF] from='osd.0 [v2:172.21.15.167:6800/3313098133,v1:172.21.15.167:6801/3313098133]' entity='osd.0' cmd=[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["0"]}]: dispatch 2023-11-30T22:57:02.763 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 22:57:02 smithi167 conmon[87022]: audit 2023-11-30T22:57:02.018306+0000 mon.smithi038 (mon.0) 299 : audit [INF] from='osd.0 ' entity='osd.0' cmd=[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["0"]}]: dispatch 2023-11-30T22:57:03.383 INFO:teuthology.orchestra.run.smithi038.stdout:{"epoch":14,"num_osds":8,"num_up_osds":0,"osd_up_since":0,"num_in_osds":8,"osd_in_since":1701385007,"num_remapped_pgs":0} 2023-11-30T22:57:03.493 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:57:03 smithi038 conmon[81956]: cluster 2023-11-30T22:57:02.193340+0000 mgr.smithi038.ldalxq (mgr.14182) 55 : cluster [DBG] pgmap v42: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2023-11-30T22:57:03.493 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:57:03 smithi038 conmon[81956]: 2023-11-30T22:57:03.494 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:57:03 smithi038 conmon[81956]: audit 2023-11-30T22:57:02.330349+0000 mon.smithi038 (mon.0) 300 : audit [INF] from='osd.0 ' entity='osd.0' cmd='[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["0"]}]': finished 2023-11-30T22:57:03.494 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:57:03 smithi038 conmon[81956]: cluster 2023-11-30T22:57:02.330417+0000 2023-11-30T22:57:03.494 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:57:03 smithi038 conmon[81956]: mon.smithi038 (mon.0) 301 : cluster [DBG] osdmap e14: 8 total, 0 up, 8 in 2023-11-30T22:57:03.494 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:57:03 smithi038 conmon[81956]: audit 2023-11-30T22: 2023-11-30T22:57:03.494 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:57:03 smithi038 conmon[81956]: 57:02.330544+0000 mon.smithi038 (mon.0) 302 : audit [DBG] 2023-11-30T22:57:03.494 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:57:03 smithi038 conmon[81956]: from='mgr.14182 172.21.15.38:0/2999689707' entity='mgr.smithi038.ldalxq' cmd=[{"prefix": "osd metadata", "id": 0}]: dispatch 2023-11-30T22:57:03.494 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:57:03 smithi038 conmon[81956]: audit 2023-11-30T22:57:03.495 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:57:03 smithi038 conmon[81956]: 2023-11-30T22:57:02.330835+0000 mon.smithi038 (mon.0) 303 : audit [DBG] 2023-11-30T22:57:03.495 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:57:03 smithi038 conmon[81956]: from='mgr.14182 172.21.15.38:0/2999689707' entity='mgr.smithi038.ldalxq' cmd=[{"prefix": "osd metadata", "id": 1}]: dispatch 2023-11-30T22:57:03.495 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:57:03 smithi038 conmon[81956]: audit 2023- 2023-11-30T22:57:03.495 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:57:03 smithi038 conmon[81956]: 11-30T22:57:02.330993+0000 mon.smithi167 (mon.1) 11 : audit [INF] 2023-11-30T22:57:03.495 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:57:03 smithi038 conmon[81956]: from='osd.0 [v2:172.21.15.167:6800/3313098133,v1:172.21.15.167:6801/3313098133]' entity='osd.0' cmd=[{"prefix": "osd crush create-or-move", "id": 0, "weight":0.0873, "args": ["host=smithi167", "root=default"]}]: dispatch 2023-11-30T22:57:03.495 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:57:03 smithi038 conmon[81956]: audit 2023- 2023-11-30T22:57:03.495 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:57:03 smithi038 conmon[81956]: 11-30T22:57:02.331012+0000 mon.smithi038 (mon.0) 304 : audit [DBG] 2023-11-30T22:57:03.495 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:57:03 smithi038 conmon[81956]: from='mgr.14182 172.21.15.38:0/2999689707' entity='mgr.smithi038.ldalxq' cmd=[{"prefix": "osd metadata", "id": 2}]: dispatch 2023-11-30T22:57:03.495 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:57:03 smithi038 conmon[81956]: audit 2023-11-30T22:57:03.496 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:57:03 smithi038 conmon[81956]: 2023-11-30T22:57:02.331234+0000 mon.smithi038 (mon.0) 305 : audit [DBG] from='mgr.14182 172.21.15.38:0/2999689707' entity='mgr.smithi038.ldalxq' cmd=[{"prefix": "osd metadata", "id": 3}]: dispatch 2023-11-30T22:57:03.496 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:57:03 smithi038 conmon[81956]: audit 2023-11- 2023-11-30T22:57:03.496 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:57:03 smithi038 conmon[81956]: 30T22:57:02.331439+0000 mon.smithi038 (mon.0) 306 : 2023-11-30T22:57:03.496 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:57:03 smithi038 conmon[81956]: audit [DBG] from='mgr.14182 172.21.15.38:0/2999689707' entity='mgr.smithi038.ldalxq' cmd=[{"prefix": "osd metadata", "id": 4}]: dispatch 2023-11-30T22:57:03.496 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:57:03 smithi038 conmon[81956]: audit 2023-11-30T22:57:03.496 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:57:03 smithi038 conmon[81956]: 2023-11-30T22:57:02.331673+0000 mon.smithi038 (mon.0) 307 : 2023-11-30T22:57:03.496 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:57:03 smithi038 conmon[81956]: audit [INF] from='osd.0 ' entity='osd.0' cmd=[{"prefix": "osd crush create-or-move", "id": 0, "weight":0.0873, "args": ["host=smithi167", "root=default"]}]: dispatch 2023-11-30T22:57:03.496 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:57:03 smithi038 conmon[81956]: audit 2023- 2023-11-30T22:57:03.496 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:57:03 smithi038 conmon[81956]: 11-30T22:57:02.331883+0000 mon.smithi038 (mon.0) 308 : audit [DBG] from='mgr.14182 172.21.15.38:0/2999689707' entity='mgr.smithi038.ldalxq' cmd=[{"prefix": "osd metadata", "id": 5}]: dispatch 2023-11-30T22:57:03.496 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:57:03 smithi038 conmon[81956]: 2023-11-30T22:57:03.496 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:57:03 smithi038 conmon[81956]: audit 2023-11-30T22:57 2023-11-30T22:57:03.496 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:57:03 smithi038 conmon[81956]: :02.332054+0000 mon.smithi038 (mon.0) 309 : audit [DBG] from='mgr.14182 172.21.15.38:0/2999689707' entity='mgr.smithi038.ldalxq' cmd=[{"prefix": "osd metadata", "id": 6}]: dispatch 2023-11-30T22:57:03.497 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:57:03 smithi038 conmon[81956]: audit 2023-11-30T22:57:02.332232+0000 mon.smithi038 (mon. 2023-11-30T22:57:03.497 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:57:03 smithi038 conmon[81956]: 0) 310 : audit [DBG] from='mgr.14182 172.21.15.38:0/2999689707' entity='mgr.smithi038.ldalxq' cmd=[{"prefix": "osd metadata", "id": 7}]: dispatch 2023-11-30T22:57:03.497 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:57:03 smithi038 conmon[81956]: audit 2023-11-30T22:57:02 2023-11-30T22:57:03.497 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:57:03 smithi038 conmon[81956]: .709239+0000 mon.smithi038 (mon.0) 311 : audit [DBG] from='client.? 172.21.15.38:0/2946409900' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2023-11-30T22:57:03.497 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:57:03 smithi038 conmon[81956]: 2023-11-30T22:57:03.497 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:57:03 smithi038 conmon[81956]: audit 2023 2023-11-30T22:57:03.497 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:57:03 smithi038 conmon[81956]: -11-30T22:57:03.202706+0000 mon.smithi038 (mon.0) 312 : audit [INF] 2023-11-30T22:57:03.498 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:57:03 smithi038 conmon[81956]: from='osd.1 [v2:172.21.15.38:6802/2856563043,v1:172.21.15.38:6803/2856563043]' entity='osd.1' cmd=[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["1"]}]: dispatch 2023-11-30T22:57:03.635 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 22:57:03 smithi167 conmon[87022]: cluster 2023-11-30T22:57:02.193340+0000 2023-11-30T22:57:03.635 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 22:57:03 smithi167 conmon[87022]: mgr.smithi038.ldalxq (mgr.14182) 55 : cluster [DBG] pgmap v42: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2023-11-30T22:57:03.635 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 22:57:03 smithi167 conmon[87022]: audit 2023-11-30T 2023-11-30T22:57:03.635 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 22:57:03 smithi167 conmon[87022]: 22:57:02.330349+0000 mon.smithi038 (mon.0) 300 : audit [INF] from='osd.0 ' entity='osd.0' cmd='[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["0"]}]': finished 2023-11-30T22:57:03.635 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 22:57:03 smithi167 conmon[87022]: cluster 2023-11-30T22:57:03.635 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 22:57:03 smithi167 conmon[87022]: 2023-11-30T22:57: 2023-11-30T22:57:03.635 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 22:57:03 smithi167 conmon[87022]: 02.330417+0000 mon.smithi038 (mon.0) 301 : cluster 2023-11-30T22:57:03.636 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 22:57:03 smithi167 conmon[87022]: [DBG] osdmap e14: 8 total, 0 up, 8 in 2023-11-30T22:57:03.636 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 22:57:03 smithi167 conmon[87022]: audit 2023-11-30T 2023-11-30T22:57:03.636 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 22:57:03 smithi167 conmon[87022]: 22:57:02.330544+0000 mon.smithi038 (mon.0 2023-11-30T22:57:03.636 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 22:57:03 smithi167 conmon[87022]: ) 302 : audit [DBG] from='mgr.14182 172.21.15.38:0/2999689707' entity='mgr.smithi038.ldalxq' cmd=[{"prefix": "osd metadata", "id": 0}]: dispatch 2023-11-30T22:57:03.636 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 22:57:03 smithi167 conmon[87022]: audit 2023-11-30T22 2023-11-30T22:57:03.636 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 22:57:03 smithi167 conmon[87022]: :57:02.330835+0000 mon.smithi038 (mon.0) 2023-11-30T22:57:03.636 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 22:57:03 smithi167 conmon[87022]: 303 : audit [DBG] from='mgr.14182 172.21.15.38:0/2999689707' entity='mgr.smithi038.ldalxq' cmd=[{"prefix": "osd metadata", "id": 1}]: dispatch 2023-11-30T22:57:03.636 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 22:57:03 smithi167 conmon[87022]: audit 2023-11-30T22:57:03.636 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 22:57:03 smithi167 conmon[87022]: 2023-11-30T22:57:02.330993+0000 2023-11-30T22:57:03.636 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 22:57:03 smithi167 conmon[87022]: mon.smithi167 (mon.1) 11 : audit [INF] from='osd.0 [v2:172.21.15.167:6800/3313098133,v1:172.21.15.167:6801/3313098133]' entity='osd.0' cmd=[{"prefix": "osd crush create-or-move", "id": 0, "weight":0.0873, "args": ["host=smithi167", "root=default"]}]: dispatch 2023-11-30T22:57:03.636 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 22:57:03 smithi167 conmon[87022]: 2023-11-30T22:57:03.636 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 22:57:03 smithi167 conmon[87022]: audit 2023-11-30T22:57:03.637 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 22:57:03 smithi167 conmon[87022]: 2023-11-30T22:57:02. 2023-11-30T22:57:03.637 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 22:57:03 smithi167 conmon[87022]: 331012+0000 mon.smithi038 (mon.0) 304 : audit [DBG] 2023-11-30T22:57:03.637 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 22:57:03 smithi167 conmon[87022]: from='mgr.14182 172.21.15.38:0/2999689707' entity='mgr.smithi038.ldalxq' cmd=[{"prefix": "osd metadata", "id": 2}]: dispatch 2023-11-30T22:57:03.637 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 22:57:03 smithi167 conmon[87022]: audit 2023-11-30T22:57: 2023-11-30T22:57:03.637 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 22:57:03 smithi167 conmon[87022]: 02.331234+0000 mon.smithi038 (mon.0) 305 : 2023-11-30T22:57:03.637 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 22:57:03 smithi167 conmon[87022]: audit [DBG] from='mgr.14182 172.21.15.38:0/2999689707' entity='mgr.smithi038.ldalxq' cmd=[{"prefix": "osd metadata", "id": 3}]: dispatch 2023-11-30T22:57:03.637 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 22:57:03 smithi167 conmon[87022]: audit 2023-11-30T22:57 2023-11-30T22:57:03.637 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 22:57:03 smithi167 conmon[87022]: :02.331439+0000 mon.smithi038 (mon.0) 306 : 2023-11-30T22:57:03.637 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 22:57:03 smithi167 conmon[87022]: audit [DBG] from='mgr.14182 172.21.15.38:0/2999689707' entity='mgr.smithi038.ldalxq' cmd=[{"prefix": "osd metadata", "id": 4}]: dispatch 2023-11-30T22:57:03.637 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 22:57:03 smithi167 conmon[87022]: audit 2023-11-30T 2023-11-30T22:57:03.637 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 22:57:03 smithi167 conmon[87022]: 22:57:02.331673+0000 mon.smithi038 (mon.0) 2023-11-30T22:57:03.637 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 22:57:03 smithi167 conmon[87022]: 307 : audit [INF] from='osd.0 ' entity='osd.0' cmd=[{"prefix": "osd crush create-or-move", "id": 0, "weight":0.0873, "args": ["host=smithi167", "root=default"]}]: dispatch 2023-11-30T22:57:03.638 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 22:57:03 smithi167 conmon[87022]: audit 2023-11 2023-11-30T22:57:03.638 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 22:57:03 smithi167 conmon[87022]: -30T22:57:02.331883+0000 mon.smithi038 (mon 2023-11-30T22:57:03.638 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 22:57:03 smithi167 conmon[87022]: .0) 308 : audit [DBG] from='mgr.14182 172.21.15.38:0/2999689707' entity='mgr.smithi038.ldalxq' cmd=[{"prefix": "osd metadata", "id": 5}]: dispatch 2023-11-30T22:57:03.638 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 22:57:03 smithi167 conmon[87022]: audit 2023-11-30T22:57:03.638 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 22:57:03 smithi167 conmon[87022]: 2023-11-30T22:57:02.332054+0000 2023-11-30T22:57:03.638 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 22:57:03 smithi167 conmon[87022]: mon.smithi038 (mon.0) 309 : audit [DBG] from='mgr.14182 172.21.15.38:0/2999689707' entity='mgr.smithi038.ldalxq' cmd=[{"prefix": "osd metadata", "id": 6}]: dispatch 2023-11-30T22:57:03.638 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 22:57:03 smithi167 conmon[87022]: 2023-11-30T22:57:03.638 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 22:57:03 smithi167 conmon[87022]: audit 2023-11-30T 2023-11-30T22:57:03.638 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 22:57:03 smithi167 conmon[87022]: 22:57:02.332232+0000 mon.smithi038 (mon.0) 2023-11-30T22:57:03.638 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 22:57:03 smithi167 conmon[87022]: 310 : audit [DBG] from='mgr.14182 172.21.15.38:0/2999689707' entity='mgr.smithi038.ldalxq' cmd=[{"prefix": "osd metadata", "id": 7}]: dispatch 2023-11-30T22:57:03.638 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 22:57:03 smithi167 conmon[87022]: audit 2023-11- 2023-11-30T22:57:03.638 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 22:57:03 smithi167 conmon[87022]: 30T22:57:02.709239+0000 mon.smithi038 (mon 2023-11-30T22:57:03.639 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 22:57:03 smithi167 conmon[87022]: .0) 311 : audit [DBG] from='client.? 172.21.15.38:0/2946409900' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2023-11-30T22:57:03.639 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 22:57:03 smithi167 conmon[87022]: audit 2023- 2023-11-30T22:57:03.639 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 22:57:03 smithi167 conmon[87022]: 11-30T22:57:03.202706+0000 mon.smithi038 ( 2023-11-30T22:57:03.639 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 22:57:03 smithi167 conmon[87022]: mon.0) 312 : audit [INF] from='osd.1 [v2:172.21.15.38:6802/2856563043,v1:172.21.15.38:6803/2856563043]' entity='osd.1' cmd=[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["1"]}]: dispatch 2023-11-30T22:57:04.385 DEBUG:teuthology.orchestra.run.smithi038:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:0dc074ce0b0b3b4f393f56dd32ef36884ebf45a9 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 3faf8b00-8fd3-11ee-95a2-87774f69a715 -- ceph osd stat -f json 2023-11-30T22:57:04.511 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 22:57:04 smithi167 conmon[87022]: audit 2023-11-30T22:57:03.335739+0000 mon.smithi038 (mon.0 2023-11-30T22:57:04.511 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 22:57:04 smithi167 conmon[87022]: ) 313 : audit [INF] from='osd.0 ' entity='osd.0' cmd='[{"prefix": "osd crush create-or-move", "id": 0, "weight":0.0873, "args": ["host=smithi167", "root=default"]}]': finished 2023-11-30T22:57:04.511 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 22:57:04 smithi167 conmon[87022]: audit 2023-11-30T22:57:03.335822+0000 mon.smithi038 (mon.0) 314 : audit [INF] from='osd.1 [v2:172.21.15.38:6802/2856563043,v1:172.21.15.38:6803/2856563043]' entity='osd.1' cmd='[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["1"]}]': finished 2023-11-30T22:57:04.511 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 22:57:04 smithi167 conmon[87022]: cluster 2023-11-30T22:57:03.335888+0000 2023-11-30T22:57:04.511 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 22:57:04 smithi167 conmon[87022]: mon.smithi038 (mon.0) 315 : cluster [DBG] osdmap e15: 8 total, 0 up, 8 in 2023-11-30T22:57:04.511 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 22:57:04 smithi167 conmon[87022]: audit 2023-11-30T 2023-11-30T22:57:04.511 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 22:57:04 smithi167 conmon[87022]: 22:57:03.338753+0000 mon.smithi038 (mon.0) 316 : 2023-11-30T22:57:04.511 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 22:57:04 smithi167 conmon[87022]: audit [DBG] from='mgr.14182 172.21.15.38:0/2999689707' entity='mgr.smithi038.ldalxq' cmd=[{"prefix": "osd metadata", "id": 0}]: dispatch 2023-11-30T22:57:04.512 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 22:57:04 smithi167 conmon[87022]: audit 2023- 2023-11-30T22:57:04.512 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 22:57:04 smithi167 conmon[87022]: 11-30T22:57:03.339139+0000 mon.smithi038 2023-11-30T22:57:04.512 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 22:57:04 smithi167 conmon[87022]: (mon.0) 317 : audit [DBG] from='mgr.14182 172.21.15.38:0/2999689707' entity='mgr.smithi038.ldalxq' cmd=[{"prefix": "osd metadata", "id": 1}]: dispatch 2023-11-30T22:57:04.512 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 22:57:04 smithi167 conmon[87022]: audit 2023-11-30T22:57:04.512 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 22:57:04 smithi167 conmon[87022]: 2023-11-30T22:57:03.339429+0000 2023-11-30T22:57:04.512 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 22:57:04 smithi167 conmon[87022]: mon.smithi038 (mon.0) 318 : audit [INF] from='osd.1 [v2:172.21.15.38:6802/2856563043,v1:172.21.15.38:6803/2856563043]' entity='osd.1' cmd=[{"prefix": "osd crush create-or-move", "id": 1, "weight":0.0873, "args": ["host=smithi038", "root=default"]}]: dispatch 2023-11-30T22:57:04.512 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 22:57:04 smithi167 conmon[87022]: 2023-11-30T22:57:04.512 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 22:57:04 smithi167 conmon[87022]: audit 2023-11-30T22:57:04.512 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 22:57:04 smithi167 conmon[87022]: 2023-11-30T22:57:03.342322+0000 mon.smithi038 (mon 2023-11-30T22:57:04.512 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 22:57:04 smithi167 conmon[87022]: .0) 319 : audit [DBG] from='mgr.14182 172.21.15.38:0/2999689707' entity='mgr.smithi038.ldalxq' cmd=[{"prefix": "osd metadata", "id": 2}]: dispatch 2023-11-30T22:57:04.512 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 22:57:04 smithi167 conmon[87022]: audit 2023- 2023-11-30T22:57:04.512 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 22:57:04 smithi167 conmon[87022]: 11-30T22:57:03.342587+0000 mon.smithi038 ( 2023-11-30T22:57:04.512 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 22:57:04 smithi167 conmon[87022]: mon.0) 320 : audit [DBG] from='mgr.14182 172.21.15.38:0/2999689707' entity='mgr.smithi038.ldalxq' cmd=[{"prefix": "osd metadata", "id": 3}]: dispatch 2023-11-30T22:57:04.513 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 22:57:04 smithi167 conmon[87022]: audit 2023-11-30T22:57:04.513 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 22:57:04 smithi167 conmon[87022]: 2023-11-30T22: 2023-11-30T22:57:04.513 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 22:57:04 smithi167 conmon[87022]: 57:03.342814+0000 mon.smithi038 (mon.0) 2023-11-30T22:57:04.513 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 22:57:04 smithi167 conmon[87022]: 321 : audit [DBG] from='mgr.14182 172.21.15.38:0/2999689707' entity='mgr.smithi038.ldalxq' cmd=[{"prefix": "osd metadata", "id": 4}]: dispatch 2023-11-30T22:57:04.513 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 22:57:04 smithi167 conmon[87022]: audit 2023-11 2023-11-30T22:57:04.513 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 22:57:04 smithi167 conmon[87022]: -30T22:57:03.343070+0000 mon.smithi038 ( 2023-11-30T22:57:04.513 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 22:57:04 smithi167 conmon[87022]: mon.0) 322 : audit [DBG] from='mgr.14182 172.21.15.38:0/2999689707' entity='mgr.smithi038.ldalxq' cmd=[{"prefix": "osd metadata", "id": 5}]: dispatch 2023-11-30T22:57:04.513 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 22:57:04 smithi167 conmon[87022]: audit 2023 2023-11-30T22:57:04.513 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 22:57:04 smithi167 conmon[87022]: -11-30T22:57:03.343304+0000 mon.smithi038 (mon.0) 2023-11-30T22:57:04.513 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 22:57:04 smithi167 conmon[87022]: 323 : audit [DBG] from='mgr.14182 172.21.15.38:0/2999689707' entity='mgr.smithi038.ldalxq' cmd=[{"prefix": "osd metadata", "id": 6}]: dispatch 2023-11-30T22:57:04.513 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 22:57:04 smithi167 conmon[87022]: audit 2023-11-30T22: 2023-11-30T22:57:04.513 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 22:57:04 smithi167 conmon[87022]: 57:03.343533+0000 mon.smithi038 (mon.0) 2023-11-30T22:57:04.514 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 22:57:04 smithi167 conmon[87022]: 324 : audit [DBG] from='mgr.14182 172.21.15.38:0/2999689707' entity='mgr.smithi038.ldalxq' cmd=[{"prefix": "osd metadata", "id": 7}]: dispatch 2023-11-30T22:57:04.514 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 22:57:04 smithi167 conmon[87022]: audit 2023-11-30 2023-11-30T22:57:04.514 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 22:57:04 smithi167 conmon[87022]: T22:57:03.343826+0000 mon.smithi038 (mon. 2023-11-30T22:57:04.514 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 22:57:04 smithi167 conmon[87022]: 0) 325 : audit [DBG] from='mgr.14182 172.21.15.38:0/2999689707' entity='mgr.smithi038.ldalxq' cmd=[{"prefix": "osd metadata", "id": 0}]: dispatch 2023-11-30T22:57:04.514 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 22:57:04 smithi167 conmon[87022]: audit 2023-11-30T22:57:04.514 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 22:57:04 smithi167 conmon[87022]: 2023-11-30T22:57:03 2023-11-30T22:57:04.514 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 22:57:04 smithi167 conmon[87022]: .831952+0000 mon.smithi038 (mon.0) 326 : audit 2023-11-30T22:57:04.514 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 22:57:04 smithi167 conmon[87022]: [INF] from='mgr.14182 172.21.15.38:0/2999689707' entity='mgr.smithi038.ldalxq' 2023-11-30T22:57:04.514 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 22:57:04 smithi167 conmon[87022]: audit 2023- 2023-11-30T22:57:04.514 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 22:57:04 smithi167 conmon[87022]: 11-30T22:57:03.832929+0000 mon.smithi038 2023-11-30T22:57:04.514 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 22:57:04 smithi167 conmon[87022]: (mon.0) 327 : audit [INF] from='mgr.14182 172.21.15.38:0/2999689707' entity='mgr.smithi038.ldalxq' cmd=[{"prefix": "auth get", "entity": "osd.4"}]: dispatch 2023-11-30T22:57:04.514 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 22:57:04 smithi167 conmon[87022]: audit 2023-11-30T22:57:04.514 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 22:57:04 smithi167 conmon[87022]: 2023-11-30T22:57:03.833770+0000 mon.smithi038 2023-11-30T22:57:04.515 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 22:57:04 smithi167 conmon[87022]: (mon.0) 328 : audit [DBG] from='mgr.14182 172.21.15.38:0/2999689707' entity='mgr.smithi038.ldalxq' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2023-11-30T22:57:04.515 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 22:57:04 smithi167 conmon[87022]: audit 2023-11-30T22:57:04.515 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 22:57:04 smithi167 conmon[87022]: 2023-11-30T22:57:04 2023-11-30T22:57:04.515 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 22:57:04 smithi167 conmon[87022]: .337206+0000 mon.smithi038 (mon.0) 329 : audit 2023-11-30T22:57:04.515 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 22:57:04 smithi167 conmon[87022]: [INF] from='osd.1 [v2:172.21.15.38:6802/2856563043,v1:172.21.15.38:6803/2856563043]' entity='osd.1' cmd='[{"prefix": "osd crush create-or-move", "id": 1, "weight":0.0873, "args": ["host=smithi038", "root=default"]}]': finished 2023-11-30T22:57:04.515 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 22:57:04 smithi167 conmon[87022]: cluster 2023-11-30T22:57: 2023-11-30T22:57:04.515 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 22:57:04 smithi167 conmon[87022]: 04.337293+0000 mon.smithi038 (mon.0) 330 : 2023-11-30T22:57:04.515 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 22:57:04 smithi167 conmon[87022]: cluster [INF] osd.0 [v2:172.21.15.167:6800/3313098133,v1:172.21.15.167:6801/3313098133] boot 2023-11-30T22:57:04.515 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 22:57:04 smithi167 conmon[87022]: cluster 2023-11-30T22:57:04.515 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 22:57:04 smithi167 conmon[87022]: 2023-11-30T22:57:04.337336+0000 2023-11-30T22:57:04.515 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 22:57:04 smithi167 conmon[87022]: mon.smithi038 (mon.0) 331 : cluster [DBG] osdmap e16: 8 total, 1 up, 8 in 2023-11-30T22:57:04.515 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 22:57:04 smithi167 conmon[87022]: 2023-11-30T22:57:04.516 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 22:57:04 smithi167 conmon[87022]: audit 2023-11-30T22:57:04.516 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 22:57:04 smithi167 conmon[87022]: 2023-11-30T22:57:04.337464+0000 mon.smithi038 ( 2023-11-30T22:57:04.516 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 22:57:04 smithi167 conmon[87022]: mon.0) 332 : audit [DBG] from='mgr.14182 172.21.15.38:0/2999689707' entity='mgr.smithi038.ldalxq' cmd=[{"prefix": "osd metadata", "id": 0}]: dispatch 2023-11-30T22:57:04.516 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 22:57:04 smithi167 conmon[87022]: audit 2023-11-30T22:57:04.516 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 22:57:04 smithi167 conmon[87022]: 2023-11-30T22:57:04. 2023-11-30T22:57:04.516 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 22:57:04 smithi167 conmon[87022]: 337956+0000 mon.smithi038 (mon.0) 333 : audit [DBG] 2023-11-30T22:57:04.516 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 22:57:04 smithi167 conmon[87022]: from='mgr.14182 172.21.15.38:0/2999689707' entity='mgr.smithi038.ldalxq' cmd=[{"prefix": "osd metadata", "id": 1}]: dispatch 2023-11-30T22:57:04.516 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 22:57:04 smithi167 conmon[87022]: audit 2023-11-30T22:57: 2023-11-30T22:57:04.516 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 22:57:04 smithi167 conmon[87022]: 04.338518+0000 mon.smithi038 (mon.0) 334 : audit 2023-11-30T22:57:04.516 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 22:57:04 smithi167 conmon[87022]: [DBG] from='mgr.14182 172.21.15.38:0/2999689707' entity='mgr.smithi038.ldalxq' cmd=[{"prefix": "osd metadata", "id": 2}]: dispatch 2023-11-30T22:57:04.516 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 22:57:04 smithi167 conmon[87022]: audit 2023-11 2023-11-30T22:57:04.516 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 22:57:04 smithi167 conmon[87022]: -30T22:57:04.338694+0000 mon.smithi038 (mon 2023-11-30T22:57:04.516 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 22:57:04 smithi167 conmon[87022]: .0) 335 : audit [DBG] from='mgr.14182 172.21.15.38:0/2999689707' entity='mgr.smithi038.ldalxq' cmd=[{"prefix": "osd metadata", "id": 3}]: dispatch 2023-11-30T22:57:04.517 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 22:57:04 smithi167 conmon[87022]: audit 2023-11-30T22:57:04.517 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 22:57:04 smithi167 conmon[87022]: 2023-11-30T22:57:04.338846+0000 2023-11-30T22:57:04.517 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 22:57:04 smithi167 conmon[87022]: mon.smithi038 (mon.0) 336 : audit [DBG] from='mgr.14182 172.21.15.38:0/2999689707' entity='mgr.smithi038.ldalxq' cmd=[{"prefix": "osd metadata", "id": 4}]: dispatch 2023-11-30T22:57:04.517 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 22:57:04 smithi167 conmon[87022]: audit 2023-11-30T22:57:04.517 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 22:57:04 smithi167 conmon[87022]: 2023-11-30T22:57: 2023-11-30T22:57:04.517 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 22:57:04 smithi167 conmon[87022]: 04.338987+0000 mon.smithi038 (mon.0) 337 : 2023-11-30T22:57:04.517 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 22:57:04 smithi167 conmon[87022]: audit [DBG] from='mgr.14182 172.21.15.38:0/2999689707' entity='mgr.smithi038.ldalxq' cmd=[{"prefix": "osd metadata", "id": 5}]: dispatch 2023-11-30T22:57:04.517 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 22:57:04 smithi167 conmon[87022]: audit 2023-11-30T22: 2023-11-30T22:57:04.517 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 22:57:04 smithi167 conmon[87022]: 57:04.339197+0000 mon.smithi038 (mon.0) 338 2023-11-30T22:57:04.517 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 22:57:04 smithi167 conmon[87022]: : audit [DBG] from='mgr.14182 172.21.15.38:0/2999689707' entity='mgr.smithi038.ldalxq' cmd=[{"prefix": "osd metadata", "id": 6}]: dispatch 2023-11-30T22:57:04.517 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 22:57:04 smithi167 conmon[87022]: audit 2023-11-30T22 2023-11-30T22:57:04.517 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 22:57:04 smithi167 conmon[87022]: :57:04.339340+0000 mon.smithi038 (mon.0) 2023-11-30T22:57:04.518 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 22:57:04 smithi167 conmon[87022]: 339 : audit [DBG] from='mgr.14182 172.21.15.38:0/2999689707' entity='mgr.smithi038.ldalxq' cmd=[{"prefix": "osd metadata", "id": 7}]: dispatch 2023-11-30T22:57:04.524 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:57:04 smithi038 conmon[81956]: audit 2023-11-30T22:57:03.335739+0000 2023-11-30T22:57:04.524 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:57:04 smithi038 conmon[81956]: mon.smithi038 (mon.0) 313 : audit [INF] from='osd.0 ' entity='osd.0' cmd='[{"prefix": "osd crush create-or-move", "id": 0, "weight":0.0873, "args": ["host=smithi167", "root=default"]}]': finished 2023-11-30T22:57:04.524 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:57:04 smithi038 conmon[81956]: audit 2023-11-30T22:57:03. 2023-11-30T22:57:04.524 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:57:04 smithi038 conmon[81956]: 335822+0000 mon.smithi038 (mon.0) 314 : audit [INF] from='osd.1 [v2:172.21.15.38:6802/2856563043,v1:172.21.15.38:6803/2856563043]' entity='osd.1' cmd='[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["1"]}]': finished 2023-11-30T22:57:04.525 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:57:04 smithi038 conmon[81956]: cluster 2023 2023-11-30T22:57:04.525 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:57:04 smithi038 conmon[81956]: -11-30T22:57:03. 2023-11-30T22:57:04.525 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:57:04 smithi038 conmon[81956]: 335888+0000 mon.smithi038 (mon.0) 2023-11-30T22:57:04.525 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:57:04 smithi038 conmon[81956]: 315 : cluster [DBG] osdmap e15: 8 total, 0 up, 8 in 2023-11-30T22:57:04.525 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:57:04 smithi038 conmon[81956]: audit 2023-11-30T22 2023-11-30T22:57:04.525 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:57:04 smithi038 conmon[81956]: :57:03.338753+0000 mon.smithi038 (mon.0 2023-11-30T22:57:04.525 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:57:04 smithi038 conmon[81956]: ) 316 : audit [DBG] from='mgr.14182 172.21.15.38:0/2999689707' entity='mgr.smithi038.ldalxq' cmd=[{"prefix": "osd metadata", "id": 0}]: dispatch 2023-11-30T22:57:04.525 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:57:04 smithi038 conmon[81956]: audit 2023 2023-11-30T22:57:04.525 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:57:04 smithi038 conmon[81956]: -11-30T22:57:03 2023-11-30T22:57:04.525 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:57:04 smithi038 conmon[81956]: .339139+0000 mon.smithi038 (mon. 2023-11-30T22:57:04.525 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:57:04 smithi038 conmon[81956]: 0) 317 : audit [DBG] from='mgr.14182 172.21.15.38:0/2999689707' entity='mgr.smithi038.ldalxq' cmd=[{"prefix": "osd metadata", "id": 1}]: dispatch 2023-11-30T22:57:04.525 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:57:04 smithi038 conmon[81956]: 2023-11-30T22:57:04.525 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:57:04 smithi038 conmon[81956]: audit 2023 2023-11-30T22:57:04.526 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:57:04 smithi038 conmon[81956]: -11-30T22:57:03.339429+0000 mon.smithi038 2023-11-30T22:57:04.526 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:57:04 smithi038 conmon[81956]: (mon.0) 318 : audit [INF] from='osd.1 [v2:172.21.15.38:6802/2856563043,v1:172.21.15.38:6803/2856563043]' entity='osd.1' cmd=[{"prefix": "osd crush create-or-move", "id": 1, "weight":0.0873, "args": ["host=smithi038", "root=default"]}]: dispatch 2023-11-30T22:57:04.526 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:57:04 smithi038 conmon[81956]: audit 2023- 2023-11-30T22:57:04.526 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:57:04 smithi038 conmon[81956]: 11-30T22:57:03.342322+0000 mon.smithi038 (mon. 2023-11-30T22:57:04.526 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:57:04 smithi038 conmon[81956]: 0) 319 : audit [DBG] from='mgr.14182 172.21.15.38:0/2999689707' entity='mgr.smithi038.ldalxq' cmd=[{"prefix": "osd metadata", "id": 2}]: dispatch 2023-11-30T22:57:04.526 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:57:04 smithi038 conmon[81956]: audit 2023- 2023-11-30T22:57:04.526 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:57:04 smithi038 conmon[81956]: 11-30T22:57:03.342587+0000 mon.smithi038 (mon 2023-11-30T22:57:04.526 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:57:04 smithi038 conmon[81956]: .0) 320 : audit [DBG] from='mgr.14182 172.21.15.38:0/2999689707' entity='mgr.smithi038.ldalxq' cmd=[{"prefix": "osd metadata", "id": 3}]: dispatch 2023-11-30T22:57:04.526 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:57:04 smithi038 conmon[81956]: 2023-11-30T22:57:04.526 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:57:04 smithi038 conmon[81956]: audit 2023-11-30T22: 2023-11-30T22:57:04.526 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:57:04 smithi038 conmon[81956]: 57:03.342814+0000 mon.smithi038 (mon.0) 2023-11-30T22:57:04.526 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:57:04 smithi038 conmon[81956]: 321 : audit [DBG] from='mgr.14182 172.21.15.38:0/2999689707' entity='mgr.smithi038.ldalxq' cmd=[{"prefix": "osd metadata", "id": 4}]: dispatch 2023-11-30T22:57:04.527 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:57:04 smithi038 conmon[81956]: audit 2023- 2023-11-30T22:57:04.527 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:57:04 smithi038 conmon[81956]: 11-30T22:57:03.343070+0000 mon.smithi038 2023-11-30T22:57:04.527 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:57:04 smithi038 conmon[81956]: (mon.0) 322 : audit 2023-11-30T22:57:04.527 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:57:04 smithi038 conmon[81956]: [DBG] from='mgr.14182 172.21.15.38:0/2999689707' entity='mgr.smithi038.ldalxq' cmd=[{"prefix": "osd metadata", "id": 5}]: dispatch 2023-11-30T22:57:04.527 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:57:04 smithi038 conmon[81956]: audit 2023-11-30T22:57:04.527 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:57:04 smithi038 conmon[81956]: 2023-11-30T 2023-11-30T22:57:04.527 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:57:04 smithi038 conmon[81956]: 22:57:03.343304+0000 2023-11-30T22:57:04.527 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:57:04 smithi038 conmon[81956]: mon.smithi038 (mon.0) 323 : audit 2023-11-30T22:57:04.527 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:57:04 smithi038 conmon[81956]: [DBG] from='mgr.14182 172.21.15.38:0/2999689707' entity='mgr.smithi038.ldalxq' cmd=[{"prefix": "osd metadata", "id": 6}]: dispatch 2023-11-30T22:57:04.527 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:57:04 smithi038 conmon[81956]: audit 2023-11 2023-11-30T22:57:04.527 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:57:04 smithi038 conmon[81956]: -30T22:57:03.343533+0000 mon.smithi038 (mon 2023-11-30T22:57:04.528 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:57:04 smithi038 conmon[81956]: .0) 324 : audit [DBG] 2023-11-30T22:57:04.528 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:57:04 smithi038 conmon[81956]: from='mgr.14182 172.21.15.38:0/2999689707' entity='mgr.smithi038.ldalxq' cmd=[{"prefix": "osd metadata", "id": 7}]: dispatch 2023-11-30T22:57:04.528 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:57:04 smithi038 conmon[81956]: audit 2023-11-30T22:57:04.528 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:57:04 smithi038 conmon[81956]: 2023-11-30T22: 2023-11-30T22:57:04.528 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:57:04 smithi038 conmon[81956]: 57:03.343826+0000 mon.smithi038 (mon 2023-11-30T22:57:04.528 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:57:04 smithi038 conmon[81956]: .0) 325 : audit [DBG] 2023-11-30T22:57:04.528 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:57:04 smithi038 conmon[81956]: from='mgr.14182 172.21.15.38:0/2999689707' entity='mgr.smithi038.ldalxq' cmd=[{"prefix": "osd metadata", "id": 0}]: dispatch 2023-11-30T22:57:04.528 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:57:04 smithi038 conmon[81956]: audit 2023-11-30T22:57:04.529 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:57:04 smithi038 conmon[81956]: 2023-11-30T22:57 2023-11-30T22:57:04.529 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:57:04 smithi038 conmon[81956]: :03.831952+0000 mon.smithi038 ( 2023-11-30T22:57:04.529 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:57:04 smithi038 conmon[81956]: mon.0) 326 : audit 2023-11-30T22:57:04.529 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:57:04 smithi038 conmon[81956]: [INF] from='mgr.14182 172.21.15.38:0/2999689707' entity='mgr.smithi038.ldalxq' 2023-11-30T22:57:04.529 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:57:04 smithi038 conmon[81956]: audit 2023- 2023-11-30T22:57:04.529 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:57:04 smithi038 conmon[81956]: 11-30T22:57:03.832929+0000 mon.smithi038 2023-11-30T22:57:04.529 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:57:04 smithi038 conmon[81956]: (mon.0) 327 : audit [INF] from='mgr.14182 172.21.15.38:0/2999689707' entity='mgr.smithi038.ldalxq' cmd=[{"prefix": "auth get", "entity": "osd.4"}]: dispatch 2023-11-30T22:57:04.529 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:57:04 smithi038 conmon[81956]: 2023-11-30T22:57:04.529 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:57:04 smithi038 conmon[81956]: audit 2023-11-30T22:57:04.529 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:57:04 smithi038 conmon[81956]: 2023-11-30T22:57:03.833770 2023-11-30T22:57:04.529 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:57:04 smithi038 conmon[81956]: +0000 mon.smithi038 (mon.0) 328 2023-11-30T22:57:04.529 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:57:04 smithi038 conmon[81956]: : audit [DBG] from='mgr.14182 172.21.15.38:0/2999689707' entity='mgr.smithi038.ldalxq' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2023-11-30T22:57:04.529 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:57:04 smithi038 conmon[81956]: audit 2023 2023-11-30T22:57:04.530 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:57:04 smithi038 conmon[81956]: -11-30T22:57:04.337206+0000 mon.smithi038 2023-11-30T22:57:04.530 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:57:04 smithi038 conmon[81956]: (mon.0) 329 : audit 2023-11-30T22:57:04.530 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:57:04 smithi038 conmon[81956]: [INF] from='osd.1 [v2:172.21.15.38:6802/2856563043,v1:172.21.15.38:6803/2856563043]' entity='osd.1' cmd='[{"prefix": "osd crush create-or-move", "id": 1, "weight":0.0873, "args": ["host=smithi038", "root=default"]}]': finished 2023-11-30T22:57:04.530 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:57:04 smithi038 conmon[81956]: cluster 2023-11-30T22:57:04.530 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:57:04 smithi038 conmon[81956]: 2023-11-30T22 2023-11-30T22:57:04.530 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:57:04 smithi038 conmon[81956]: :57:04.337293+0000 mon.smithi038 (mon.0 2023-11-30T22:57:04.530 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:57:04 smithi038 conmon[81956]: ) 330 : cluster [INF] osd.0 [v2:172.21.15.167:6800/3313098133,v1:172.21.15.167:6801/3313098133] boot 2023-11-30T22:57:04.530 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:57:04 smithi038 conmon[81956]: cluster 2023-11-30T22:57:04.530 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:57:04 smithi038 conmon[81956]: 2023-11-30T22:57:04.337336+0000 2023-11-30T22:57:04.530 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:57:04 smithi038 conmon[81956]: mon.smithi038 (mon.0) 331 : cluster [DBG] osdmap e16: 8 total, 1 up, 8 in 2023-11-30T22:57:04.530 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:57:04 smithi038 conmon[81956]: 2023-11-30T22:57:04.531 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:57:04 smithi038 conmon[81956]: audit 2023-11-30T22:57:04.531 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:57:04 smithi038 conmon[81956]: 2023-11-30T22:57:04 2023-11-30T22:57:04.531 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:57:04 smithi038 conmon[81956]: .337464+0000 mon.smithi038 (mon.0) 332 2023-11-30T22:57:04.531 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:57:04 smithi038 conmon[81956]: : audit [DBG] from='mgr.14182 172.21.15.38:0/2999689707' entity='mgr.smithi038.ldalxq' cmd=[{"prefix": "osd metadata", "id": 0}]: dispatch 2023-11-30T22:57:04.531 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:57:04 smithi038 conmon[81956]: audit 2023- 2023-11-30T22:57:04.531 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:57:04 smithi038 conmon[81956]: 11-30T22:57:04.337956+0000 mon.smithi038 2023-11-30T22:57:04.531 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:57:04 smithi038 conmon[81956]: (mon.0) 333 : audit 2023-11-30T22:57:04.531 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:57:04 smithi038 conmon[81956]: [DBG] from='mgr.14182 172.21.15.38:0/2999689707' entity='mgr.smithi038.ldalxq' cmd=[{"prefix": "osd metadata", "id": 1}]: dispatch 2023-11-30T22:57:04.531 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:57:04 smithi038 conmon[81956]: audit 2023-11-30T22:57:04.531 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:57:04 smithi038 conmon[81956]: 2023-11-30T22 2023-11-30T22:57:04.531 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:57:04 smithi038 conmon[81956]: :57:04.338518+0000 mon.smithi038 2023-11-30T22:57:04.531 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:57:04 smithi038 conmon[81956]: (mon.0) 334 : audit 2023-11-30T22:57:04.532 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:57:04 smithi038 conmon[81956]: [DBG] from='mgr.14182 172.21.15.38:0/2999689707' entity='mgr.smithi038.ldalxq' cmd=[{"prefix": "osd metadata", "id": 2}]: dispatch 2023-11-30T22:57:04.532 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:57:04 smithi038 conmon[81956]: audit 2023- 2023-11-30T22:57:04.532 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:57:04 smithi038 conmon[81956]: 11-30T22:57:04.338694+0000 mon.smithi038 ( 2023-11-30T22:57:04.532 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:57:04 smithi038 conmon[81956]: mon.0) 335 : audit [DBG] 2023-11-30T22:57:04.532 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:57:04 smithi038 conmon[81956]: from='mgr.14182 172.21.15.38:0/2999689707' entity='mgr.smithi038.ldalxq' cmd=[{"prefix": "osd metadata", "id": 3}]: dispatch 2023-11-30T22:57:04.532 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:57:04 smithi038 conmon[81956]: audit 2023-11-30T22:57:04.532 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:57:04 smithi038 conmon[81956]: 2023-11-30T22 2023-11-30T22:57:04.532 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:57:04 smithi038 conmon[81956]: :57:04.338846+0000 mon.smithi038 2023-11-30T22:57:04.532 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:57:04 smithi038 conmon[81956]: (mon.0) 336 : audit 2023-11-30T22:57:04.532 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:57:04 smithi038 conmon[81956]: [DBG] from='mgr.14182 172.21.15.38:0/2999689707' entity='mgr.smithi038.ldalxq' cmd=[{"prefix": "osd metadata", "id": 4}]: dispatch 2023-11-30T22:57:04.532 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:57:04 smithi038 conmon[81956]: audit 2023 2023-11-30T22:57:04.532 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:57:04 smithi038 conmon[81956]: -11-30T22:57:04.338987+0000 2023-11-30T22:57:04.532 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:57:04 smithi038 conmon[81956]: mon.smithi038 (mon. 2023-11-30T22:57:04.533 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:57:04 smithi038 conmon[81956]: 0) 337 : audit [DBG] 2023-11-30T22:57:04.533 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:57:04 smithi038 conmon[81956]: from='mgr.14182 172.21.15.38:0/2999689707' entity='mgr.smithi038.ldalxq' cmd=[{"prefix": "osd metadata", "id": 5}]: dispatch 2023-11-30T22:57:04.533 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:57:04 smithi038 conmon[81956]: audit 2023-11-30T22:57:04.533 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:57:04 smithi038 conmon[81956]: 2023-11-30T22:57: 2023-11-30T22:57:04.533 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:57:04 smithi038 conmon[81956]: 04.339197+0000 mon.smithi038 (mon. 2023-11-30T22:57:04.533 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:57:04 smithi038 conmon[81956]: 0) 338 : audit [DBG] 2023-11-30T22:57:04.533 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:57:04 smithi038 conmon[81956]: from='mgr.14182 172.21.15.38:0/2999689707' entity='mgr.smithi038.ldalxq' cmd=[{"prefix": "osd metadata", "id": 6}]: dispatch 2023-11-30T22:57:04.533 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:57:04 smithi038 conmon[81956]: audit 2023-11-30T22:57:04.533 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:57:04 smithi038 conmon[81956]: 2023-11-30T22:57: 2023-11-30T22:57:04.533 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:57:04 smithi038 conmon[81956]: 04.339340+0000 mon.smithi038 (mon. 2023-11-30T22:57:04.533 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:57:04 smithi038 conmon[81956]: 0) 339 : audit [DBG] from='mgr.14182 172.21.15.38:0/2999689707' entity='mgr.smithi038.ldalxq' cmd=[{"prefix": "osd metadata", "id": 7}]: dispatch 2023-11-30T22:57:04.533 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:57:04 smithi038 conmon[81956]: 2023-11-30T22:57:05.524 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:57:05 smithi038 conmon[81956]: cluster 2023-11-30T22:57:03.006855+0000 2023-11-30T22:57:05.525 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:57:05 smithi038 conmon[81956]: osd.0 (osd.0) 1 : cluster [DBG] purged_snaps scrub starts 2023-11-30T22:57:05.525 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:57:05 smithi038 conmon[81956]: cluster 2023-11-30T22:57:03.006935+0000 osd.0 (osd.0) 2 : cluster [DBG] purged_snaps scrub ok 2023-11-30T22:57:05.525 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:57:05 smithi038 conmon[81956]: cephadm 2023-11-30T22:57:03.834427+0000 mgr.smithi038.ldalxq (mgr.14182) 56 : cephadm [INF] Deploying daemon osd.4 on smithi167 2023-11-30T22:57:05.525 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:57:05 smithi038 conmon[81956]: cluster 2023-11-30T22:57:04.193561+0000 mgr.smithi038.ldalxq (mgr.14182) 57 : cluster [DBG] pgmap v45: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2023-11-30T22:57:05.525 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:57:05 smithi038 conmon[81956]: audit 2023-11-30T22:57:04.341377+0000 mon.smithi038 (mon.0) 340 : audit [DBG] from='mgr.14182 172.21.15.38:0/2999689707' entity='mgr.smithi038.ldalxq' cmd=[{"prefix": "osd metadata", "id": 1}]: dispatch 2023-11-30T22:57:05.525 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:57:05 smithi038 conmon[81956]: audit 2023-11-30T22:57:05.341212+0000 mon.smithi038 (mon.0) 341 : audit [DBG] from='mgr.14182 172.21.15.38:0/2999689707' entity='mgr.smithi038.ldalxq' cmd=[{"prefix": "osd metadata", "id": 1}]: dispatch 2023-11-30T22:57:05.711 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 22:57:05 smithi167 conmon[87022]: cluster 2023-11-30T22:57:03.006855+0000 osd.0 (osd 2023-11-30T22:57:05.712 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 22:57:05 smithi167 conmon[87022]: .0) 1 : cluster [DBG] purged_snaps scrub starts 2023-11-30T22:57:05.712 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 22:57:05 smithi167 conmon[87022]: cluster 2023-11-30T22:57:03.006935+0000 osd.0 (osd.0) 2 : cluster [DBG] purged_snaps scrub ok 2023-11-30T22:57:05.712 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 22:57:05 smithi167 conmon[87022]: cephadm 2023-11-30T22:57:03.834427+0000 mgr.smithi038.ldalxq (mgr.14182) 56 : cephadm [INF] Deploying daemon osd.4 on smithi167 2023-11-30T22:57:05.712 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 22:57:05 smithi167 conmon[87022]: cluster 2023-11-30T22:57:04.193561+0000 mgr.smithi038.ldalxq (mgr.14182) 57 : cluster [DBG] pgmap v45: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2023-11-30T22:57:05.712 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 22:57:05 smithi167 conmon[87022]: audit 2023-11-30T22:57:04.341377+0000 mon.smithi038 (mon.0) 340 : audit [DBG] from='mgr.14182 172.21.15.38:0/2999689707' entity='mgr.smithi038.ldalxq' cmd=[{"prefix": "osd metadata", "id": 1}]: dispatch 2023-11-30T22:57:05.712 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 22:57:05 smithi167 conmon[87022]: audit 2023-11-30T22:57:05.341212+0000 mon.smithi038 (mon.0) 341 : audit [DBG] from='mgr.14182 172.21.15.38:0/2999689707' entity='mgr.smithi038.ldalxq' cmd=[{"prefix": "osd metadata", "id": 1}]: dispatch 2023-11-30T22:57:06.449 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 22:57:06 smithi167 conmon[87022]: cluster 2023-11-30T22:57:04.162402+0000 osd.1 (osd.1) 1 : cluster [DBG] purged_snaps scrub starts 2023-11-30T22:57:06.449 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 22:57:06 smithi167 conmon[87022]: cluster 2023-11-30T22:57:04.162449+0000 osd.1 (osd.1) 2 : cluster [DBG] purged_snaps scrub ok 2023-11-30T22:57:06.449 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 22:57:06 smithi167 conmon[87022]: cluster 2023-11-30T22:57:05.348245+0000 mon.smithi038 (mon.0) 342 : cluster [INF] osd.1 [v2:172.21.15.38:6802/2856563043,v1:172.21.15.38:6803/2856563043] boot 2023-11-30T22:57:06.450 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 22:57:06 smithi167 conmon[87022]: cluster 2023-11-30T22:57:05.348276+0000 mon.smithi038 (mon.0) 343 : cluster [DBG] osdmap e17: 8 total, 2 up, 8 in 2023-11-30T22:57:06.450 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 22:57:06 smithi167 conmon[87022]: audit 2023-11-30T22:57:05.348570+0000 mon.smithi038 (mon.0) 344 : audit [DBG] from='mgr.14182 172.21.15.38:0/2999689707' entity='mgr.smithi038.ldalxq' cmd=[{"prefix": "osd metadata", "id": 1}]: dispatch 2023-11-30T22:57:06.450 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 22:57:06 smithi167 conmon[87022]: audit 2023-11-30T22:57:05.348870+0000 mon.smithi038 (mon. 2023-11-30T22:57:06.450 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 22:57:06 smithi167 conmon[87022]: 0) 345 : audit [DBG] from='mgr.14182 172.21.15.38:0/2999689707' entity='mgr.smithi038.ldalxq' cmd=[{"prefix": "osd metadata", "id": 2}]: dispatch 2023-11-30T22:57:06.450 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 22:57:06 smithi167 conmon[87022]: audit 2023-11-30T22:57:05.349058+0000 mon.smithi038 (mon.0) 346 : audit [DBG] from='mgr.14182 172.21.15.38:0/2999689707' entity='mgr.smithi038.ldalxq' cmd=[{"prefix": "osd metadata", "id": 3}]: dispatch 2023-11-30T22:57:06.450 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 22:57:06 smithi167 conmon[87022]: audit 2023-11-30T22:57:05.349213+0000 mon.smithi038 (mon.0) 347 : audit [DBG] from='mgr.14182 172.21.15.38:0/2999689707' entity='mgr.smithi038.ldalxq' cmd=[{"prefix": "osd metadata", "id": 4}]: dispatch 2023-11-30T22:57:06.450 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 22:57:06 smithi167 conmon[87022]: audit 2023-11-30T22:57:05.349372+0000 mon.smithi038 (mon.0) 348 : audit [DBG] from='mgr.14182 172.21.15.38:0/2999689707' entity='mgr.smithi038.ldalxq' cmd=[{"prefix": "osd metadata", "id": 5}]: dispatch 2023-11-30T22:57:06.450 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 22:57:06 smithi167 conmon[87022]: audit 2023-11-30T22:57:05.349531+0000 mon.smithi038 (mon.0) 349 : audit [DBG] from='mgr.14182 172.21.15.38:0/2999689707' entity='mgr.smithi038.ldalxq' cmd=[{"prefix": "osd metadata", "id": 6}]: dispatch 2023-11-30T22:57:06.450 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 22:57:06 smithi167 conmon[87022]: audit 2023-11-30T22:57:05.349664+0000 mon.smithi038 (mon.0) 350 : audit [DBG] from='mgr.14182 172.21.15.38:0/2999689707' entity='mgr.smithi038.ldalxq' cmd=[{"prefix": "osd metadata", "id": 7}]: dispatch 2023-11-30T22:57:06.482 INFO:teuthology.orchestra.run.smithi038.stdout: 2023-11-30T22:57:06.774 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:57:06 smithi038 conmon[81956]: cluster 2023-11-30T22:57:04.162402+0000 osd.1 2023-11-30T22:57:06.774 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:57:06 smithi038 conmon[81956]: (osd.1) 1 : cluster [DBG] purged_snaps scrub starts 2023-11-30T22:57:06.774 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:57:06 smithi038 conmon[81956]: cluster 2023-11-30T22:57:04.162449+0000 osd.1 (osd.1) 2 : cluster [DBG] purged_snaps scrub ok 2023-11-30T22:57:06.774 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:57:06 smithi038 conmon[81956]: cluster 2023-11-30T22:57:05.348245+0000 mon.smithi038 2023-11-30T22:57:06.774 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:57:06 smithi038 conmon[81956]: (mon.0) 342 : cluster [INF] osd.1 [v2:172.21.15.38:6802/2856563043,v1:172.21.15.38:6803/2856563043] boot 2023-11-30T22:57:06.774 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:57:06 smithi038 conmon[81956]: cluster 2023-11-30 2023-11-30T22:57:06.774 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:57:06 smithi038 conmon[81956]: T22:57:05.348276+0000 mon.smithi038 (mon.0) 343 : 2023-11-30T22:57:06.774 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:57:06 smithi038 conmon[81956]: cluster [DBG] osdmap e17: 8 total, 2 up, 8 in 2023-11-30T22:57:06.774 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:57:06 smithi038 conmon[81956]: audit 2023-11-30T22:57: 2023-11-30T22:57:06.775 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:57:06 smithi038 conmon[81956]: 05.348570+0000 mon.smithi038 (mon.0) 344 : audit [DBG] 2023-11-30T22:57:06.775 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:57:06 smithi038 conmon[81956]: from='mgr.14182 172.21.15.38:0/2999689707' entity='mgr.smithi038.ldalxq' cmd=[{"prefix": "osd metadata", "id": 1}]: dispatch 2023-11-30T22:57:06.775 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:57:06 smithi038 conmon[81956]: audit 2023 2023-11-30T22:57:06.775 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:57:06 smithi038 conmon[81956]: -11-30T22:57:05.348870+0000 mon.smithi038 (mon.0) 345 : 2023-11-30T22:57:06.775 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:57:06 smithi038 conmon[81956]: audit [DBG] from='mgr.14182 172.21.15.38:0/2999689707' entity='mgr.smithi038.ldalxq' cmd=[{"prefix": "osd metadata", "id": 2}]: dispatch 2023-11-30T22:57:06.775 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:57:06 smithi038 conmon[81956]: audit 2023-11-30T22:57:06.775 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:57:06 smithi038 conmon[81956]: 2023-11-30T22:57:05.349058+0000 mon.smithi038 (mon.0) 2023-11-30T22:57:06.775 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:57:06 smithi038 conmon[81956]: 346 : audit [DBG] from='mgr.14182 172.21.15.38:0/2999689707' entity='mgr.smithi038.ldalxq' cmd=[{"prefix": "osd metadata", "id": 3}]: dispatch 2023-11-30T22:57:06.775 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:57:06 smithi038 conmon[81956]: audit 2023-11-30 2023-11-30T22:57:06.775 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:57:06 smithi038 conmon[81956]: T22:57:05.349213+0000 mon.smithi038 (mon.0) 347 2023-11-30T22:57:06.775 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:57:06 smithi038 conmon[81956]: : audit [DBG] from='mgr.14182 172.21.15.38:0/2999689707' entity='mgr.smithi038.ldalxq' cmd=[{"prefix": "osd metadata", "id": 4}]: dispatch 2023-11-30T22:57:06.775 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:57:06 smithi038 conmon[81956]: audit 2023-11-30 2023-11-30T22:57:06.776 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:57:06 smithi038 conmon[81956]: T22:57:05.349372+0000 mon.smithi038 (mon.0) 348 2023-11-30T22:57:06.776 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:57:06 smithi038 conmon[81956]: : audit [DBG] from='mgr.14182 172.21.15.38:0/2999689707' entity='mgr.smithi038.ldalxq' cmd=[{"prefix": "osd metadata", "id": 5}]: dispatch 2023-11-30T22:57:06.776 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:57:06 smithi038 conmon[81956]: audit 2023-11-30T22:57:05.349531+0000 2023-11-30T22:57:06.776 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:57:06 smithi038 conmon[81956]: mon.smithi038 (mon.0) 349 : audit [DBG] from='mgr.14182 172.21.15.38:0/2999689707' entity='mgr.smithi038.ldalxq' cmd=[{"prefix": "osd metadata", "id": 6}]: dispatch 2023-11-30T22:57:06.776 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:57:06 smithi038 conmon[81956]: audit 2023-11-30T22:57 2023-11-30T22:57:06.776 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:57:06 smithi038 conmon[81956]: :05.349664+0000 mon.smithi038 (mon.0) 350 : audit [DBG] 2023-11-30T22:57:06.776 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:57:06 smithi038 conmon[81956]: from='mgr.14182 172.21.15.38:0/2999689707' entity='mgr.smithi038.ldalxq' cmd=[{"prefix": "osd metadata", "id": 7}]: dispatch 2023-11-30T22:57:06.944 INFO:teuthology.orchestra.run.smithi038.stdout:{"epoch":17,"num_osds":8,"num_up_osds":2,"osd_up_since":1701385025,"num_in_osds":8,"osd_in_since":1701385007,"num_remapped_pgs":0} 2023-11-30T22:57:07.629 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:57:07 smithi038 conmon[81956]: cluster 2023-11-30T22:57:06.193835+0000 mgr.smithi038.ldalxq (mgr.14182) 58 : cluster [DBG] pgmap v48: 0 pgs: ; 0 B data, 290 MiB used, 89 GiB / 89 GiB avail 2023-11-30T22:57:07.629 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:57:07 smithi038 conmon[81956]: audit 2023-11-30T22:57:06.481408+0000 mon.smithi038 (mon.0) 351 : audit [DBG] from='client.? 172.21.15.38:0/873874322' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2023-11-30T22:57:07.629 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:57:07 smithi038 conmon[81956]: audit 2023-11-30T22:57:06.604859+0000 mon.smithi038 (mon.0) 352 : audit [INF] from='mgr.14182 172.21.15.38:0/2999689707' entity='mgr.smithi038.ldalxq' 2023-11-30T22:57:07.629 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:57:07 smithi038 conmon[81956]: audit 2023-11-30T22:57:06.605583+0000 mon.smithi038 (mon.0) 353 : audit [INF] from='mgr.14182 172.21.15.38:0/2999689707' entity='mgr.smithi038.ldalxq' cmd=[{"prefix": "auth get", "entity": "osd.5"}]: dispatch 2023-11-30T22:57:07.629 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:57:07 smithi038 conmon[81956]: audit 2023-11-30T22:57:06.606274+0000 mon.smithi038 (mon.0) 354 : audit [DBG] from='mgr.14182 172.21.15.38:0/2999689707' entity='mgr.smithi038.ldalxq' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2023-11-30T22:57:07.629 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:57:07 smithi038 conmon[81956]: cluster 2023-11-30T22:57:06.759996+0000 mon.smithi038 (mon.0) 355 : cluster [DBG] osdmap e18: 8 total, 2 up, 8 in 2023-11-30T22:57:07.629 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:57:07 smithi038 conmon[81956]: audit 2023-11-30T22:57:06.760172+0000 mon.smithi038 (mon.0) 356 : audit [DBG] from='mgr.14182 172.21.15.38:0/2999689707' entity='mgr.smithi038.ldalxq' cmd=[{"prefix": "osd metadata", "id": 2}]: dispatch 2023-11-30T22:57:07.630 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:57:07 smithi038 conmon[81956]: audit 2023-11-30T22:57:06.760536+0000 mon.smithi038 (mon.0) 357 : audit [DBG] from='mgr.14182 172.21.15.38:0/2999689707' entity='mgr.smithi038.ldalxq' cmd=[{"prefix": "osd metadata", "id": 3}]: dispatch 2023-11-30T22:57:07.630 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:57:07 smithi038 conmon[81956]: audit 2023-11-30T22:57:07.630 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:57:07 smithi038 conmon[81956]: 2023-11-30T22:57:06.760805+0000 mon.smithi038 (mon.0) 358 : 2023-11-30T22:57:07.630 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:57:07 smithi038 conmon[81956]: audit [DBG] from='mgr.14182 172.21.15.38:0/2999689707' entity='mgr.smithi038.ldalxq' cmd=[{"prefix": "osd metadata", "id": 4}]: dispatch 2023-11-30T22:57:07.630 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:57:07 smithi038 conmon[81956]: audit 2023-11-30T22 2023-11-30T22:57:07.630 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:57:07 smithi038 conmon[81956]: :57:06.761088+0000 mon.smithi038 (mon.0) 359 2023-11-30T22:57:07.630 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:57:07 smithi038 conmon[81956]: : audit [DBG] from='mgr.14182 172.21.15.38:0/2999689707' entity='mgr.smithi038.ldalxq' cmd=[{"prefix": "osd metadata", "id": 5}]: dispatch 2023-11-30T22:57:07.630 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:57:07 smithi038 conmon[81956]: audit 2023-11-30 2023-11-30T22:57:07.630 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:57:07 smithi038 conmon[81956]: T22:57:06.761365+0000 mon.smithi038 ( 2023-11-30T22:57:07.630 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:57:07 smithi038 conmon[81956]: mon.0) 360 : audit [DBG] from='mgr.14182 172.21.15.38:0/2999689707' entity='mgr.smithi038.ldalxq' cmd=[{"prefix": "osd metadata", "id": 6}]: dispatch 2023-11-30T22:57:07.630 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:57:07 smithi038 conmon[81956]: audit 2023-11-30T22:57:07.630 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:57:07 smithi038 conmon[81956]: 2023-11-30T22:57: 2023-11-30T22:57:07.631 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:57:07 smithi038 conmon[81956]: 06.761651+0000 mon.smithi038 (mon.0) 361 : audit 2023-11-30T22:57:07.631 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:57:07 smithi038 conmon[81956]: [DBG] from='mgr.14182 172.21.15.38:0/2999689707' entity='mgr.smithi038.ldalxq' cmd=[{"prefix": "osd metadata", "id": 7}]: dispatch 2023-11-30T22:57:07.631 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:57:07 smithi038 conmon[81956]: audit 2023-11-30T22:57 2023-11-30T22:57:07.631 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:57:07 smithi038 conmon[81956]: :06.968136+0000 mon.smithi167 (mon.1) 2023-11-30T22:57:07.631 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:57:07 smithi038 conmon[81956]: 12 : audit [INF] from='osd.2 [v2:172.21.15.167:6808/1490848185,v1:172.21.15.167:6809/1490848185]' entity='osd.2' cmd=[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["2"]}]: dispatch 2023-11-30T22:57:07.631 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:57:07 smithi038 conmon[81956]: audit 2023 2023-11-30T22:57:07.631 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:57:07 smithi038 conmon[81956]: -11-30T22:57:06.968500 2023-11-30T22:57:07.631 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:57:07 smithi038 conmon[81956]: +0000 mon.smithi038 (mon.0) 362 : audit 2023-11-30T22:57:07.631 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:57:07 smithi038 conmon[81956]: [INF] from='osd.2 ' entity='osd.2' cmd=[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["2"]}]: dispatch 2023-11-30T22:57:07.762 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 22:57:07 smithi167 conmon[87022]: cluster 2023-11-30T22:57:06.193835+0000 mgr.smithi038.ldalxq (mgr.14182) 58 : cluster [DBG] pgmap v48: 0 pgs: ; 0 B data, 290 MiB used, 89 GiB / 89 GiB avail 2023-11-30T22:57:07.763 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 22:57:07 smithi167 conmon[87022]: audit 2023-11-30T22:57:06.481408+0000 mon.smithi038 (mon.0) 351 : audit [DBG] from='client.? 172.21.15.38:0/873874322' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2023-11-30T22:57:07.763 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 22:57:07 smithi167 conmon[87022]: audit 2023-11-30T22:57:06.604859+0000 mon.smithi038 (mon.0) 352 : audit [INF] from='mgr.14182 172.21.15.38:0/2999689707' entity='mgr.smithi038.ldalxq' 2023-11-30T22:57:07.763 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 22:57:07 smithi167 conmon[87022]: audit 2023-11-30T22:57:06.605583+0000 mon.smithi038 (mon.0) 353 : audit [INF] from='mgr.14182 172.21.15.38:0/2999689707' entity='mgr.smithi038.ldalxq' cmd=[{"prefix": "auth get", "entity": "osd.5"}]: dispatch 2023-11-30T22:57:07.763 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 22:57:07 smithi167 conmon[87022]: audit 2023-11-30 2023-11-30T22:57:07.763 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 22:57:07 smithi167 conmon[87022]: T22:57:06.606274+0000 2023-11-30T22:57:07.763 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 22:57:07 smithi167 conmon[87022]: mon.smithi038 (mon.0) 354 : audit 2023-11-30T22:57:07.763 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 22:57:07 smithi167 conmon[87022]: [DBG] from='mgr.14182 172.21.15.38:0/2999689707' entity='mgr.smithi038.ldalxq' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2023-11-30T22:57:07.763 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 22:57:07 smithi167 conmon[87022]: cluster 2023-11-30T22:57:07.763 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 22:57:07 smithi167 conmon[87022]: 2023-11-30T22:57: 2023-11-30T22:57:07.763 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 22:57:07 smithi167 conmon[87022]: 06.759996+0000 mon.smithi038 (mon 2023-11-30T22:57:07.763 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 22:57:07 smithi167 conmon[87022]: .0) 355 : cluster [DBG] 2023-11-30T22:57:07.763 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 22:57:07 smithi167 conmon[87022]: osdmap e18: 8 total, 2 up, 8 in 2023-11-30T22:57:07.764 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 22:57:07 smithi167 conmon[87022]: audit 2023- 2023-11-30T22:57:07.764 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 22:57:07 smithi167 conmon[87022]: 11-30T22:57:06. 2023-11-30T22:57:07.764 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 22:57:07 smithi167 conmon[87022]: 760172+0000 mon.smithi038 (mon.0) 2023-11-30T22:57:07.764 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 22:57:07 smithi167 conmon[87022]: 356 : audit [DBG] from='mgr.14182 172.21.15.38:0/2999689707' entity='mgr.smithi038.ldalxq' cmd=[{"prefix": "osd metadata", "id": 2}]: dispatch 2023-11-30T22:57:07.764 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 22:57:07 smithi167 conmon[87022]: audit 2023-11-30 2023-11-30T22:57:07.764 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 22:57:07 smithi167 conmon[87022]: T22:57:06.760536+0000 mon.smithi038 2023-11-30T22:57:07.764 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 22:57:07 smithi167 conmon[87022]: (mon.0) 357 : audit 2023-11-30T22:57:07.764 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 22:57:07 smithi167 conmon[87022]: [DBG] from='mgr.14182 172.21.15.38:0/2999689707' entity='mgr.smithi038.ldalxq' cmd=[{"prefix": "osd metadata", "id": 3}]: dispatch 2023-11-30T22:57:07.764 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 22:57:07 smithi167 conmon[87022]: audit 2023 2023-11-30T22:57:07.764 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 22:57:07 smithi167 conmon[87022]: -11-30T22:57: 2023-11-30T22:57:07.764 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 22:57:07 smithi167 conmon[87022]: 06.760805+0000 mon.smithi038 (mon. 2023-11-30T22:57:07.764 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 22:57:07 smithi167 conmon[87022]: 0) 358 : audit [DBG] from='mgr.14182 172.21.15.38:0/2999689707' entity='mgr.smithi038.ldalxq' cmd=[{"prefix": "osd metadata", "id": 4}]: dispatch 2023-11-30T22:57:07.764 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 22:57:07 smithi167 conmon[87022]: audit 2023- 2023-11-30T22:57:07.765 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 22:57:07 smithi167 conmon[87022]: 11-30T22:57:06.761088 2023-11-30T22:57:07.765 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 22:57:07 smithi167 conmon[87022]: +0000 mon.smithi038 (mon.0) 359 2023-11-30T22:57:07.765 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 22:57:07 smithi167 conmon[87022]: : audit [DBG] from='mgr.14182 172.21.15.38:0/2999689707' entity='mgr.smithi038.ldalxq' cmd=[{"prefix": "osd metadata", "id": 5}]: dispatch 2023-11-30T22:57:07.765 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 22:57:07 smithi167 conmon[87022]: audit 2023-11-30T22:57:07.765 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 22:57:07 smithi167 conmon[87022]: 2023-11-30T22:57 2023-11-30T22:57:07.765 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 22:57:07 smithi167 conmon[87022]: :06.761365+0000 mon.smithi038 (mon 2023-11-30T22:57:07.765 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 22:57:07 smithi167 conmon[87022]: .0) 360 : audit [DBG] from='mgr.14182 172.21.15.38:0/2999689707' entity='mgr.smithi038.ldalxq' cmd=[{"prefix": "osd metadata", "id": 6}]: dispatch 2023-11-30T22:57:07.765 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 22:57:07 smithi167 conmon[87022]: 2023-11-30T22:57:07.765 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 22:57:07 smithi167 conmon[87022]: audit 2023-11 2023-11-30T22:57:07.765 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 22:57:07 smithi167 conmon[87022]: -30T22:57:06. 2023-11-30T22:57:07.765 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 22:57:07 smithi167 conmon[87022]: 761651+0000 mon.smithi038 (mon.0) 2023-11-30T22:57:07.765 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 22:57:07 smithi167 conmon[87022]: 361 : audit [DBG] from='mgr.14182 172.21.15.38:0/2999689707' entity='mgr.smithi038.ldalxq' cmd=[{"prefix": "osd metadata", "id": 7}]: dispatch 2023-11-30T22:57:07.766 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 22:57:07 smithi167 conmon[87022]: audit 2023- 2023-11-30T22:57:07.766 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 22:57:07 smithi167 conmon[87022]: 11-30T22:57:06.968136+0000 mon.smithi167 (mon 2023-11-30T22:57:07.766 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 22:57:07 smithi167 conmon[87022]: .1) 12 : audit [INF] from='osd.2 [v2:172.21.15.167:6808/1490848185,v1:172.21.15.167:6809/1490848185]' entity='osd.2' cmd=[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["2"]}]: dispatch 2023-11-30T22:57:07.766 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 22:57:07 smithi167 conmon[87022]: audit 2023-11 2023-11-30T22:57:07.766 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 22:57:07 smithi167 conmon[87022]: -30T22:57:06. 2023-11-30T22:57:07.766 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 22:57:07 smithi167 conmon[87022]: 968500+0000 mon.smithi038 (mon.0) 2023-11-30T22:57:07.766 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 22:57:07 smithi167 conmon[87022]: 362 : audit [INF] from='osd.2 ' entity='osd.2' cmd=[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["2"]}]: dispatch 2023-11-30T22:57:07.945 DEBUG:teuthology.orchestra.run.smithi038:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:0dc074ce0b0b3b4f393f56dd32ef36884ebf45a9 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 3faf8b00-8fd3-11ee-95a2-87774f69a715 -- ceph osd stat -f json 2023-11-30T22:57:08.625 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:57:08 smithi038 conmon[81956]: cephadm 2023-11-30T22:57:06.606841+0000 mgr.smithi038.ldalxq (mgr.14182) 59 : cephadm [INF] Deploying daemon osd.5 on smithi038 2023-11-30T22:57:08.625 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:57:08 smithi038 conmon[81956]: audit 2023-11-30T22:57:07.765510+0000 mon.smithi038 (mon.0) 363 : audit [INF] from='osd.2 ' entity='osd.2' cmd='[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["2"]}]': finished 2023-11-30T22:57:08.625 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:57:08 smithi038 conmon[81956]: cluster 2023-11-30T22:57:07.765581+0000 mon.smithi038 (mon.0) 364 : cluster [DBG] osdmap e19: 8 total, 2 up, 8 in 2023-11-30T22:57:08.625 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:57:08 smithi038 conmon[81956]: audit 2023-11-30T22:57:07.765708+0000 mon.smithi038 (mon.0) 365 : audit [DBG] from='mgr.14182 172.21.15.38:0/2999689707' entity='mgr.smithi038.ldalxq' cmd=[{"prefix": "osd metadata", "id": 2}]: dispatch 2023-11-30T22:57:08.626 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:57:08 smithi038 conmon[81956]: audit 2023-11-30T22:57:07.766020+0000 mon.smithi038 (mon.0) 366 : audit [DBG] from='mgr.14182 172.21.15.38:0/2999689707' entity='mgr.smithi038.ldalxq' cmd=[{"prefix": "osd metadata", "id": 3}]: dispatch 2023-11-30T22:57:08.626 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:57:08 smithi038 conmon[81956]: audit 2023-11-30T22:57:07.766189+0000 mon.smithi167 (mon.1) 13 : audit [INF] from='osd.2 [v2:172.21.15.167:6808/1490848185,v1:172.21.15.167:6809/1490848185]' entity='osd.2' cmd=[{"prefix": "osd crush create-or-move", "id": 2, "weight":0.0873, "args": ["host=smithi167", "root=default"]}]: dispatch 2023-11-30T22:57:08.626 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:57:08 smithi038 conmon[81956]: audit 2023-11-30T22:57:07.766214+0000 mon.smithi038 (mon.0) 367 : audit [DBG] from='mgr.14182 172.21.15.38:0/2999689707' entity='mgr.smithi038.ldalxq' cmd=[{"prefix": "osd metadata", "id": 4}]: dispatch 2023-11-30T22:57:08.626 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:57:08 smithi038 conmon[81956]: audit 2023-11-30T22:57:07.766417+0000 mon.smithi038 (mon.0) 368 : audit [DBG] from='mgr.14182 172.21.15.38:0/2999689707' entity='mgr.smithi038.ldalxq' cmd=[{"prefix": "osd metadata", "id": 5}]: dispatch 2023-11-30T22:57:08.626 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:57:08 smithi038 conmon[81956]: audit 2023-11-30T22:57:07.766664+0000 mon.smithi038 (mon.0) 369 : audit [DBG] from='mgr.14182 172.21.15.38:0/2999689707' entity='mgr.smithi038.ldalxq' cmd=[{"prefix": "osd metadata", "id": 6}]: dispatch 2023-11-30T22:57:08.626 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:57:08 smithi038 conmon[81956]: audit 2023-11-30T22:57:07.766910+0000 mon.smithi038 (mon.0) 370 : audit [INF] from='osd.2 ' entity='osd.2' cmd=[{"prefix": "osd crush create-or-move", "id": 2, "weight":0.0873, "args": ["host=smithi167", "root=default"]}]: dispatch 2023-11-30T22:57:08.626 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:57:08 smithi038 conmon[81956]: audit 2023-11-30T22:57:07.767121+0000 mon.smithi038 (mon.0) 371 : audit [DBG] from='mgr.14182 172.21.15.38:0/2999689707' entity='mgr.smithi038.ldalxq' cmd=[{"prefix": "osd metadata", "id": 7}]: dispatch 2023-11-30T22:57:08.762 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 22:57:08 smithi167 conmon[87022]: cephadm 2023-11-30T22:57:06.606841+0000 mgr.smithi038.ldalxq (mgr.14182) 2023-11-30T22:57:08.762 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 22:57:08 smithi167 conmon[87022]: 59 : cephadm [INF] Deploying daemon osd.5 on smithi038 2023-11-30T22:57:08.762 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 22:57:08 smithi167 conmon[87022]: audit 2023-11-30T22:57:07.765510+0000 mon.smithi038 (mon.0) 363 : audit [INF] from='osd.2 ' entity='osd.2' cmd='[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["2"]}]': finished 2023-11-30T22:57:08.762 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 22:57:08 smithi167 conmon[87022]: cluster 2023-11-30T22:57:07.765581+0000 mon.smithi038 ( 2023-11-30T22:57:08.762 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 22:57:08 smithi167 conmon[87022]: mon.0) 364 : cluster [DBG] osdmap e19: 8 total, 2 up, 8 in 2023-11-30T22:57:08.762 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 22:57:08 smithi167 conmon[87022]: audit 2023- 2023-11-30T22:57:08.763 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 22:57:08 smithi167 conmon[87022]: 11-30T22:57:07.765708+0000 mon.smithi038 ( 2023-11-30T22:57:08.763 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 22:57:08 smithi167 conmon[87022]: mon.0) 365 : audit [DBG] from='mgr.14182 172.21.15.38:0/2999689707' entity='mgr.smithi038.ldalxq' cmd=[{"prefix": "osd metadata", "id": 2}]: dispatch 2023-11-30T22:57:08.763 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 22:57:08 smithi167 conmon[87022]: audit 2023- 2023-11-30T22:57:08.763 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 22:57:08 smithi167 conmon[87022]: 11-30T22:57:07.766020+0000 2023-11-30T22:57:08.763 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 22:57:08 smithi167 conmon[87022]: mon.smithi038 (mon.0) 366 : audit [DBG] from='mgr.14182 172.21.15.38:0/2999689707' entity='mgr.smithi038.ldalxq' cmd=[{"prefix": "osd metadata", "id": 3}]: dispatch 2023-11-30T22:57:08.763 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 22:57:08 smithi167 conmon[87022]: audit 2023-11-30T22:57:08.763 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 22:57:08 smithi167 conmon[87022]: 2023-11- 2023-11-30T22:57:08.763 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 22:57:08 smithi167 conmon[87022]: 30T22:57:07.766189+0000 mon.smithi167 ( 2023-11-30T22:57:08.763 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 22:57:08 smithi167 conmon[87022]: mon.1) 13 : audit [INF] from='osd.2 [v2:172.21.15.167:6808/1490848185,v1:172.21.15.167:6809/1490848185]' entity='osd.2' cmd=[{"prefix": "osd crush create-or-move", "id": 2, "weight":0.0873, "args": ["host=smithi167", "root=default"]}]: dispatch 2023-11-30T22:57:08.763 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 22:57:08 smithi167 conmon[87022]: audit 2023-11 2023-11-30T22:57:08.763 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 22:57:08 smithi167 conmon[87022]: -30T22:57:07.766214+0000 mon.smithi038 ( 2023-11-30T22:57:08.763 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 22:57:08 smithi167 conmon[87022]: mon.0) 367 : audit [DBG] from='mgr.14182 172.21.15.38:0/2999689707' entity='mgr.smithi038.ldalxq' cmd=[{"prefix": "osd metadata", "id": 4}]: dispatch 2023-11-30T22:57:08.763 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 22:57:08 smithi167 conmon[87022]: audit 2023-11 2023-11-30T22:57:08.764 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 22:57:08 smithi167 conmon[87022]: -30T22:57:07.766417+0000 mon.smithi038 ( 2023-11-30T22:57:08.764 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 22:57:08 smithi167 conmon[87022]: mon.0) 368 : audit [DBG] from='mgr.14182 172.21.15.38:0/2999689707' entity='mgr.smithi038.ldalxq' cmd=[{"prefix": "osd metadata", "id": 5}]: dispatch 2023-11-30T22:57:08.764 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 22:57:08 smithi167 conmon[87022]: audit 2023-11 2023-11-30T22:57:08.764 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 22:57:08 smithi167 conmon[87022]: -30T22:57:07.766664+0000 mon.smithi038 2023-11-30T22:57:08.764 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 22:57:08 smithi167 conmon[87022]: (mon.0) 369 : audit [DBG] from='mgr.14182 172.21.15.38:0/2999689707' entity='mgr.smithi038.ldalxq' cmd=[{"prefix": "osd metadata", "id": 6}]: dispatch 2023-11-30T22:57:08.764 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 22:57:08 smithi167 conmon[87022]: audit 2023-11 2023-11-30T22:57:08.764 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 22:57:08 smithi167 conmon[87022]: -30T22:57:07.766910+0000 mon.smithi038 2023-11-30T22:57:08.764 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 22:57:08 smithi167 conmon[87022]: (mon.0) 370 : audit [INF] from='osd.2 ' entity='osd.2' cmd=[{"prefix": "osd crush create-or-move", "id": 2, "weight":0.0873, "args": ["host=smithi167", "root=default"]}]: dispatch 2023-11-30T22:57:08.764 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 22:57:08 smithi167 conmon[87022]: audit 2023-11-30T22:57:07.767121 2023-11-30T22:57:08.764 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 22:57:08 smithi167 conmon[87022]: +0000 mon.smithi038 (mon.0) 371 : audit [DBG] from='mgr.14182 172.21.15.38:0/2999689707' entity='mgr.smithi038.ldalxq' cmd=[{"prefix": "osd metadata", "id": 7}]: dispatch 2023-11-30T22:57:09.512 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 22:57:09 smithi167 conmon[87022]: cluster 2023-11-30T22:57:08.194229+0000 mgr.smithi038.ldalxq (mgr 2023-11-30T22:57:09.512 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 22:57:09 smithi167 conmon[87022]: .14182) 60 : cluster [DBG] pgmap v51: 0 pgs: ; 0 B data, 581 MiB used, 178 GiB / 179 GiB avail 2023-11-30T22:57:09.512 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 22:57:09 smithi167 conmon[87022]: audit 2023-11-30T22:57:08.610747+0000 mon.smithi038 (mon.0) 372 : audit [INF] from='mgr.14182 172.21.15.38:0/2999689707' entity='mgr.smithi038.ldalxq' 2023-11-30T22:57:09.512 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 22:57:09 smithi167 conmon[87022]: audit 2023-11-30T22:57:08.611508+0000 mon.smithi038 (mon.0) 373 : audit [INF] from='mgr.14182 172.21.15.38:0/2999689707' entity='mgr.smithi038.ldalxq' cmd=[{"prefix": "auth get", "entity": "osd.6"}]: dispatch 2023-11-30T22:57:09.512 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 22:57:09 smithi167 conmon[87022]: audit 2023-11-30T22:57:08.612124+0000 mon.smithi038 (mon.0) 374 : audit [DBG] from='mgr.14182 172.21.15.38:0/2999689707' entity='mgr.smithi038.ldalxq' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2023-11-30T22:57:09.512 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 22:57:09 smithi167 conmon[87022]: audit 2023-11-30T22:57:08.766464+0000 mon.smithi038 (mon.0) 375 : audit [INF] from='osd.2 ' entity='osd.2' cmd='[{"prefix": "osd crush create-or-move", "id": 2, "weight":0.0873, "args": ["host=smithi167", "root=default"]}]': finished 2023-11-30T22:57:09.513 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 22:57:09 smithi167 conmon[87022]: cluster 2023-11-30T22:57:08.766539+0000 mon.smithi038 (mon.0) 376 : cluster [DBG] osdmap e20: 8 total, 2 up, 8 in 2023-11-30T22:57:09.513 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 22:57:09 smithi167 conmon[87022]: audit 2023-11-30T22:57:08.766942+0000 mon.smithi038 (mon.0) 377 : audit [DBG] from='mgr.14182 172.21.15.38:0/2999689707' entity='mgr.smithi038.ldalxq' cmd=[{"prefix": "osd metadata", "id": 2}]: dispatch 2023-11-30T22:57:09.513 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 22:57:09 smithi167 conmon[87022]: audit 2023-11-30T22:57:08.767225+0000 mon.smithi038 (mon.0) 378 : audit [DBG] from='mgr.14182 172.21.15.38:0/2999689707' entity='mgr.smithi038.ldalxq' cmd=[{"prefix": "osd metadata", "id": 3}]: dispatch 2023-11-30T22:57:09.513 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 22:57:09 smithi167 conmon[87022]: audit 2023-11-30T22:57:08.767420+0000 mon.smithi038 (mon.0) 379 : audit [DBG] from='mgr.14182 172.21.15.38:0/2999689707' entity='mgr.smithi038.ldalxq' cmd=[{"prefix": "osd metadata", "id": 4}]: dispatch 2023-11-30T22:57:09.513 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 22:57:09 smithi167 conmon[87022]: audit 2023-11-30T22:57:08.767614+0000 mon.smithi038 (mon.0) 380 : audit [DBG] from='mgr.14182 172.21.15.38:0/2999689707' entity='mgr.smithi038.ldalxq' cmd=[{"prefix": "osd metadata", "id": 5}]: dispatch 2023-11-30T22:57:09.513 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 22:57:09 smithi167 conmon[87022]: audit 2023-11-30T22:57:08.767814+0000 mon.smithi038 (mon.0) 381 : audit [DBG] from='mgr.14182 172.21.15.38:0/2999689707' entity='mgr.smithi038.ldalxq' cmd=[{"prefix": "osd metadata", "id": 6}]: dispatch 2023-11-30T22:57:09.513 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 22:57:09 smithi167 conmon[87022]: audit 2023-11-30T22:57:08.767983+0000 mon.smithi038 (mon.0) 382 : audit [DBG] from='mgr.14182 172.21.15.38:0/2999689707' entity='mgr.smithi038.ldalxq' cmd=[{"prefix": "osd metadata", "id": 7}]: dispatch 2023-11-30T22:57:09.513 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 22:57:09 smithi167 conmon[87022]: audit 2023-11-30T22:57:08.770876+0000 mon.smithi038 (mon.0) 383 : audit [DBG] from='mgr.14182 172.21.15.38:0/2999689707' entity='mgr.smithi038.ldalxq' cmd=[{"prefix": "osd metadata", "id": 2}]: dispatch 2023-11-30T22:57:09.653 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:57:09 smithi038 conmon[81956]: cluster 2023-11-30T22:57:08.194229 2023-11-30T22:57:09.654 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:57:09 smithi038 conmon[81956]: +0000 mgr.smithi038.ldalxq (mgr.14182) 60 : cluster [DBG] pgmap v51: 0 pgs: ; 0 B data, 581 MiB used, 178 GiB / 179 GiB avail 2023-11-30T22:57:09.654 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:57:09 smithi038 conmon[81956]: audit 2023-11-30T22:57:08.610747+0000 mon.smithi038 (mon.0) 372 : audit [INF] from='mgr.14182 172.21.15.38:0/2999689707' entity='mgr.smithi038.ldalxq' 2023-11-30T22:57:09.654 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:57:09 smithi038 conmon[81956]: audit 2023-11-30T22:57:08.611508+0000 mon.smithi038 (mon.0) 373 : audit [INF] from='mgr.14182 172.21.15.38:0/2999689707' entity='mgr.smithi038.ldalxq' cmd=[{"prefix": "auth get", "entity": "osd.6"}]: dispatch 2023-11-30T22:57:09.654 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:57:09 smithi038 conmon[81956]: audit 2023-11-30T22:57:08.612124+0000 mon.smithi038 (mon.0) 374 : audit [DBG] from='mgr.14182 172.21.15.38:0/2999689707' entity='mgr.smithi038.ldalxq' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2023-11-30T22:57:09.654 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:57:09 smithi038 conmon[81956]: audit 2023-11-30T22:57:08.766464+0000 mon.smithi038 (mon.0) 375 : audit [INF] from='osd.2 ' entity='osd.2' cmd='[{"prefix": "osd crush create-or-move", "id": 2, "weight":0.0873, "args": ["host=smithi167", "root=default"]}]': finished 2023-11-30T22:57:09.655 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:57:09 smithi038 conmon[81956]: cluster 2023-11-30T22:57:08.766539+0000 mon.smithi038 (mon.0) 376 : cluster [DBG] osdmap e20: 8 total, 2 up, 8 in 2023-11-30T22:57:09.655 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:57:09 smithi038 conmon[81956]: audit 2023-11-30T22:57:08.766942+0000 mon.smithi038 (mon.0) 377 : audit 2023-11-30T22:57:09.655 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:57:09 smithi038 conmon[81956]: [DBG] from='mgr.14182 172.21.15.38:0/2999689707' entity='mgr.smithi038.ldalxq' cmd=[{"prefix": "osd metadata", "id": 2}]: dispatch 2023-11-30T22:57:09.655 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:57:09 smithi038 conmon[81956]: audit 2023-11-30T22:57:08 2023-11-30T22:57:09.655 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:57:09 smithi038 conmon[81956]: .767225+0000 mon.smithi038 (mon.0) 378 : audit 2023-11-30T22:57:09.655 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:57:09 smithi038 conmon[81956]: [DBG] from='mgr.14182 172.21.15.38:0/2999689707' entity='mgr.smithi038.ldalxq' cmd=[{"prefix": "osd metadata", "id": 3}]: dispatch 2023-11-30T22:57:09.656 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:57:09 smithi038 conmon[81956]: audit 2023-11 2023-11-30T22:57:09.656 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:57:09 smithi038 conmon[81956]: -30T22:57:08.767420+0000 mon.smithi038 2023-11-30T22:57:09.656 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:57:09 smithi038 conmon[81956]: (mon.0) 379 : audit [DBG] from='mgr.14182 172.21.15.38:0/2999689707' entity='mgr.smithi038.ldalxq' cmd=[{"prefix": "osd metadata", "id": 4}]: dispatch 2023-11-30T22:57:09.656 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:57:09 smithi038 conmon[81956]: audit 2023-11-30T22:57:09.656 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:57:09 smithi038 conmon[81956]: 2023-11-30T22:57 2023-11-30T22:57:09.657 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:57:09 smithi038 conmon[81956]: :08.767614+0000 mon.smithi038 (mon.0) 380 2023-11-30T22:57:09.657 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:57:09 smithi038 conmon[81956]: : audit [DBG] from='mgr.14182 172.21.15.38:0/2999689707' entity='mgr.smithi038.ldalxq' cmd=[{"prefix": "osd metadata", "id": 5}]: dispatch 2023-11-30T22:57:09.657 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:57:09 smithi038 conmon[81956]: audit 2023-11-30T 2023-11-30T22:57:09.657 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:57:09 smithi038 conmon[81956]: 22:57:08.767814+0000 mon.smithi038 (mon 2023-11-30T22:57:09.657 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:57:09 smithi038 conmon[81956]: .0) 381 : audit [DBG] from='mgr.14182 172.21.15.38:0/2999689707' entity='mgr.smithi038.ldalxq' cmd=[{"prefix": "osd metadata", "id": 6}]: dispatch 2023-11-30T22:57:09.657 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:57:09 smithi038 conmon[81956]: audit 2023-11- 2023-11-30T22:57:09.658 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:57:09 smithi038 conmon[81956]: 30T22:57:08.767983+0000 mon.smithi038 ( 2023-11-30T22:57:09.658 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:57:09 smithi038 conmon[81956]: mon.0) 382 : audit [DBG] from='mgr.14182 172.21.15.38:0/2999689707' entity='mgr.smithi038.ldalxq' cmd=[{"prefix": "osd metadata", "id": 7}]: dispatch 2023-11-30T22:57:09.658 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:57:09 smithi038 conmon[81956]: audit 2023-11-30T 2023-11-30T22:57:09.658 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:57:09 smithi038 conmon[81956]: 22:57:08.770876+0000 mon.smithi038 (mon. 2023-11-30T22:57:09.658 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:57:09 smithi038 conmon[81956]: 0) 383 : audit [DBG] from='mgr.14182 172.21.15.38:0/2999689707' entity='mgr.smithi038.ldalxq' cmd=[{"prefix": "osd metadata", "id": 2}]: dispatch 2023-11-30T22:57:10.116 INFO:teuthology.orchestra.run.smithi038.stdout: 2023-11-30T22:57:10.512 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 22:57:10 smithi167 conmon[87022]: cluster 2023-11-30T22:57:08.008101+0000 osd.2 (osd.2) 1 : cluster [DBG] purged_snaps scrub starts 2023-11-30T22:57:10.512 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 22:57:10 smithi167 conmon[87022]: cluster 2023-11-30T22:57:08.008153+0000 osd.2 (osd.2) 2 : cluster [DBG] purged_snaps scrub ok 2023-11-30T22:57:10.512 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 22:57:10 smithi167 conmon[87022]: cephadm 2023-11-30T22:57:08.612732+0000 mgr.smithi038.ldalxq (mgr.14182) 61 : cephadm [INF] Deploying daemon osd.6 on smithi167 2023-11-30T22:57:10.512 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 22:57:10 smithi167 conmon[87022]: audit 2023-11-30T22:57:09.752992+0000 mon.smithi038 (mon.0) 384 : audit [INF] from='osd.3 [v2:172.21.15.38:6810/913475055,v1:172.21.15.38:6811/913475055]' entity='osd.3' cmd=[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["3"]}]: dispatch 2023-11-30T22:57:10.512 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 22:57:10 smithi167 conmon[87022]: cluster 2023-11-30T22:57:09.773825+0000 mon.smithi038 (mon.0) 385 : cluster [INF] osd.2 [v2:172.21.15.167:6808/1490848185,v1:172.21.15.167:6809/1490848185] boot 2023-11-30T22:57:10.513 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 22:57:10 smithi167 conmon[87022]: audit 2023-11-30T22:57:09.773875+0000 mon.smithi038 (mon.0) 386 : audit [INF] from='osd.3 [v2:172.21.15.38:6810/913475055,v1:172.21.15.38:6811/913475055]' entity='osd.3' cmd='[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["3"]}]': finished 2023-11-30T22:57:10.513 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 22:57:10 smithi167 conmon[87022]: cluster 2023-11-30T22:57:09.773920+0000 mon.smithi038 (mon.0) 387 : cluster [DBG] osdmap e21: 8 total, 3 up, 8 in 2023-11-30T22:57:10.513 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 22:57:10 smithi167 conmon[87022]: audit 2023-11-30T22:57:09.774038+0000 mon.smithi038 (mon.0) 388 : audit [DBG] from='mgr.14182 172.21.15.38:0/2999689707' entity='mgr.smithi038.ldalxq' cmd=[{"prefix": "osd metadata", "id": 2}]: dispatch 2023-11-30T22:57:10.513 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 22:57:10 smithi167 conmon[87022]: audit 2023-11-30T22:57:09.774423+0000 mon.smithi038 (mon.0) 389 : audit [DBG] from='mgr.14182 172.21.15.38:0/2999689707' entity='mgr.smithi038.ldalxq' cmd=[{"prefix": "osd metadata", "id": 3}]: dispatch 2023-11-30T22:57:10.513 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 22:57:10 smithi167 conmon[87022]: audit 2023-11-30T22:57:09.774618+0000 mon.smithi038 ( 2023-11-30T22:57:10.513 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 22:57:10 smithi167 conmon[87022]: mon.0) 390 : audit [INF] from='osd.3 [v2:172.21.15.38:6810/913475055,v1:172.21.15.38:6811/913475055]' entity='osd.3' cmd=[{"prefix": "osd crush create-or-move", "id": 3, "weight":0.0873, "args": ["host=smithi038", "root=default"]}]: dispatch 2023-11-30T22:57:10.513 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 22:57:10 smithi167 conmon[87022]: audit 2023-11-30T22:57:09.774830+0000 mon.smithi038 (mon.0) 391 : audit [DBG] from='mgr.14182 172.21.15.38:0/2999689707' entity='mgr.smithi038.ldalxq' cmd=[{"prefix": "osd metadata", "id": 4}]: dispatch 2023-11-30T22:57:10.513 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 22:57:10 smithi167 conmon[87022]: audit 2023-11-30T22:57:09.774996+0000 mon.smithi038 (mon.0) 392 : audit [DBG] from='mgr.14182 172.21.15.38:0/2999689707' entity='mgr.smithi038.ldalxq' cmd=[{"prefix": "osd metadata", "id": 5}]: dispatch 2023-11-30T22:57:10.513 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 22:57:10 smithi167 conmon[87022]: audit 2023-11-30T22:57:09.775172+0000 mon.smithi038 (mon.0) 393 : audit [DBG] from='mgr.14182 172.21.15.38:0/2999689707' entity='mgr.smithi038.ldalxq' cmd=[{"prefix": "osd metadata", "id": 6}]: dispatch 2023-11-30T22:57:10.513 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 22:57:10 smithi167 conmon[87022]: audit 2023-11-30T22:57:09.775341+0000 mon.smithi038 (mon.0) 394 : audit [DBG] from='mgr.14182 172.21.15.38:0/2999689707' entity='mgr.smithi038.ldalxq' cmd=[{"prefix": "osd metadata", "id": 7}]: dispatch 2023-11-30T22:57:10.513 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 22:57:10 smithi167 conmon[87022]: audit 2023-11-30T22:57:09.775531+0000 mon.smithi038 (mon.0) 395 : audit [INF] from='mgr.14182 172.21.15.38:0/2999689707' entity='mgr.smithi038.ldalxq' cmd=[{"prefix": "osd pool create", "format": "json", "pool": "device_health_metrics", "pg_num": 1, "pg_num_min": 1, "pg_num_max": 32}]: dispatch 2023-11-30T22:57:10.513 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 22:57:10 smithi167 conmon[87022]: audit 2023-11-30T22:57:10.115142+0000 mon.smithi167 (mon.1) 14 : audit [DBG] from='client.? 172.21.15.38:0/3803264082' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2023-11-30T22:57:10.524 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:57:10 smithi038 conmon[81956]: cluster 2023-11-30T22:57:08 2023-11-30T22:57:10.524 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:57:10 smithi038 conmon[81956]: .008101+0000 osd.2 (osd.2) 1 : cluster [DBG] purged_snaps scrub starts 2023-11-30T22:57:10.524 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:57:10 smithi038 conmon[81956]: cluster 2023-11-30T22:57:08.008153+0000 osd.2 2023-11-30T22:57:10.524 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:57:10 smithi038 conmon[81956]: (osd.2) 2 : cluster [DBG] purged_snaps scrub ok 2023-11-30T22:57:10.525 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:57:10 smithi038 conmon[81956]: cephadm 2023-11-30T22:57:10.525 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:57:10 smithi038 conmon[81956]: 2023-11-30T22:57:08.612732+0000 mgr.smithi038.ldalxq (mgr.14182) 61 : 2023-11-30T22:57:10.525 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:57:10 smithi038 conmon[81956]: cephadm [INF] Deploying daemon osd.6 on smithi167 2023-11-30T22:57:10.525 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:57:10 smithi038 conmon[81956]: audit 2023-11-30T22:57:10.525 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:57:10 smithi038 conmon[81956]: 2023-11-30T22:57:09.752992+0000 mon.smithi038 (mon. 2023-11-30T22:57:10.525 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:57:10 smithi038 conmon[81956]: 0) 384 : audit [INF] from='osd.3 [v2:172.21.15.38:6810/913475055,v1:172.21.15.38:6811/913475055]' entity='osd.3' cmd=[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["3"]}]: dispatch 2023-11-30T22:57:10.525 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:57:10 smithi038 conmon[81956]: cluster 2023-11 2023-11-30T22:57:10.525 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:57:10 smithi038 conmon[81956]: -30T22:57:09.773825+0000 mon.smithi038 (mon.0 2023-11-30T22:57:10.525 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:57:10 smithi038 conmon[81956]: ) 385 : cluster [INF] osd.2 [v2:172.21.15.167:6808/1490848185,v1:172.21.15.167:6809/1490848185] boot 2023-11-30T22:57:10.525 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:57:10 smithi038 conmon[81956]: audit 2023-11-30T22:57 2023-11-30T22:57:10.525 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:57:10 smithi038 conmon[81956]: :09.773875+0000 mon.smithi038 (mon.0) 386 : audit [INF] 2023-11-30T22:57:10.525 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:57:10 smithi038 conmon[81956]: from='osd.3 [v2:172.21.15.38:6810/913475055,v1:172.21.15.38:6811/913475055]' entity='osd.3' cmd='[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["3"]}]': finished 2023-11-30T22:57:10.525 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:57:10 smithi038 conmon[81956]: cluster 2023-11-30T22:57:10.526 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:57:10 smithi038 conmon[81956]: 2023-11-30T22:57:09.773920+0000 mon.smithi038 ( 2023-11-30T22:57:10.526 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:57:10 smithi038 conmon[81956]: mon.0) 387 : cluster [DBG] osdmap e21: 8 total, 3 up, 8 in 2023-11-30T22:57:10.526 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:57:10 smithi038 conmon[81956]: audit 2023-11-30T22 2023-11-30T22:57:10.526 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:57:10 smithi038 conmon[81956]: :57:09.774038+0000 mon.smithi038 (mon.0) 388 : audit [DBG] 2023-11-30T22:57:10.526 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:57:10 smithi038 conmon[81956]: from='mgr.14182 172.21.15.38:0/2999689707' entity='mgr.smithi038.ldalxq' cmd=[{"prefix": "osd metadata", "id": 2}]: dispatch 2023-11-30T22:57:10.526 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:57:10 smithi038 conmon[81956]: audit 2023-11 2023-11-30T22:57:10.526 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:57:10 smithi038 conmon[81956]: -30T22:57:09.774423+0000 mon.smithi038 (mon.0) 389 : audit [DBG] 2023-11-30T22:57:10.526 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:57:10 smithi038 conmon[81956]: from='mgr.14182 172.21.15.38:0/2999689707' entity='mgr.smithi038.ldalxq' cmd=[{"prefix": "osd metadata", "id": 3}]: dispatch 2023-11-30T22:57:10.526 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:57:10 smithi038 conmon[81956]: audit 2023-11-30T22:57:10.526 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:57:10 smithi038 conmon[81956]: 2023-11-30T22:57:09.774618+0000 mon.smithi038 (mon.0) 2023-11-30T22:57:10.526 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:57:10 smithi038 conmon[81956]: 390 : audit [INF] from='osd.3 [v2:172.21.15.38:6810/913475055,v1:172.21.15.38:6811/913475055]' entity='osd.3' cmd=[{"prefix": "osd crush create-or-move", "id": 3, "weight":0.0873, "args": ["host=smithi038", "root=default"]}]: dispatch 2023-11-30T22:57:10.526 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:57:10 smithi038 conmon[81956]: audit 2023- 2023-11-30T22:57:10.526 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:57:10 smithi038 conmon[81956]: 11-30T22:57:09.774830+0000 mon.smithi038 ( 2023-11-30T22:57:10.527 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:57:10 smithi038 conmon[81956]: mon.0) 391 : audit [DBG] from='mgr.14182 172.21.15.38:0/2999689707' entity='mgr.smithi038.ldalxq' cmd=[{"prefix": "osd metadata", "id": 4}]: dispatch 2023-11-30T22:57:10.527 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:57:10 smithi038 conmon[81956]: audit 2023-11-30T22:57:09. 2023-11-30T22:57:10.527 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:57:10 smithi038 conmon[81956]: 774996+0000 mon.smithi038 (mon.0) 392 : audit [DBG] from='mgr.14182 172.21.15.38:0/2999689707' entity='mgr.smithi038.ldalxq' cmd=[{"prefix": "osd metadata", "id": 5}]: dispatch 2023-11-30T22:57:10.527 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:57:10 smithi038 conmon[81956]: audit 2023 2023-11-30T22:57:10.527 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:57:10 smithi038 conmon[81956]: -11-30T22:57:09.775172+0000 mon.smithi038 (mon. 2023-11-30T22:57:10.527 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:57:10 smithi038 conmon[81956]: 0) 393 : audit [DBG] from='mgr.14182 172.21.15.38:0/2999689707' entity='mgr.smithi038.ldalxq' cmd=[{"prefix": "osd metadata", "id": 6}]: dispatch 2023-11-30T22:57:10.527 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:57:10 smithi038 conmon[81956]: audit 2023-11-30T22:57:09.775341+0000 mon.smithi038 (mon 2023-11-30T22:57:10.527 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:57:10 smithi038 conmon[81956]: .0) 394 : audit [DBG] from='mgr.14182 172.21.15.38:0/2999689707' entity='mgr.smithi038.ldalxq' cmd=[{"prefix": "osd metadata", "id": 7}]: dispatch 2023-11-30T22:57:10.527 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:57:10 smithi038 conmon[81956]: audit 2023-11-30 2023-11-30T22:57:10.527 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:57:10 smithi038 conmon[81956]: T22:57:09.775531+0000 mon.smithi038 (mon. 2023-11-30T22:57:10.527 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:57:10 smithi038 conmon[81956]: 0) 395 : audit [INF] from='mgr.14182 172.21.15.38:0/2999689707' entity='mgr.smithi038.ldalxq' cmd=[{"prefix": "osd pool create", "format": "json", "pool": "device_health_metrics", "pg_num": 1, "pg_num_min": 1, "pg_num_max": 32}]: dispatch 2023-11-30T22:57:10.527 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:57:10 smithi038 conmon[81956]: audit 2023-11-30T22:57:10.115142+0000 mon.smithi167 2023-11-30T22:57:10.527 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:57:10 smithi038 conmon[81956]: (mon.1) 14 : audit [DBG] from='client.? 172.21.15.38:0/3803264082' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2023-11-30T22:57:10.624 INFO:teuthology.orchestra.run.smithi038.stdout:{"epoch":21,"num_osds":8,"num_up_osds":3,"osd_up_since":1701385029,"num_in_osds":8,"osd_in_since":1701385007,"num_remapped_pgs":0} 2023-11-30T22:57:11.512 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 22:57:11 smithi167 conmon[87022]: cluster 2023-11-30T22:57:10.194621 2023-11-30T22:57:11.513 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 22:57:11 smithi167 conmon[87022]: +0000 mgr.smithi038.ldalxq (mgr.14182) 62 : cluster [DBG] pgmap v54: 0 pgs: ; 0 B data, 581 MiB used, 178 GiB / 179 GiB avail 2023-11-30T22:57:11.513 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 22:57:11 smithi167 conmon[87022]: audit 2023-11-30T22:57:10.774791+0000 mon.smithi038 (mon.0) 396 : audit [INF] from='osd.3 [v2:172.21.15.38:6810/913475055,v1:172.21.15.38:6811/913475055]' entity='osd.3' cmd='[{"prefix": "osd crush create-or-move", "id": 3, "weight":0.0873, "args": ["host=smithi038", "root=default"]}]': finished 2023-11-30T22:57:11.513 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 22:57:11 smithi167 conmon[87022]: audit 2023-11-30T22:57:10.774865+0000 mon.smithi038 (mon.0) 397 : audit [INF] from='mgr.14182 172.21.15.38:0/2999689707' entity='mgr.smithi038.ldalxq' cmd='[{"prefix": "osd pool create", "format": "json", "pool": "device_health_metrics", "pg_num": 1, "pg_num_min": 1, "pg_num_max": 32}]': finished 2023-11-30T22:57:11.513 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 22:57:11 smithi167 conmon[87022]: cluster 2023-11-30T22:57:10.774928+0000 mon.smithi038 (mon.0) 398 : cluster [DBG] osdmap e22: 8 total, 3 up, 8 in 2023-11-30T22:57:11.513 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 22:57:11 smithi167 conmon[87022]: audit 2023-11-30T22:57:10.775404+0000 mon.smithi038 (mon.0) 399 : audit [DBG] from='mgr.14182 172.21.15.38:0/2999689707' entity='mgr.smithi038.ldalxq' cmd=[{"prefix": "osd metadata", "id": 3}]: dispatch 2023-11-30T22:57:11.513 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 22:57:11 smithi167 conmon[87022]: audit 2023-11-30T22:57:10.775865+0000 mon.smithi038 (mon.0) 400 : audit [DBG] from='mgr.14182 172.21.15.38:0/2999689707' entity='mgr.smithi038.ldalxq' cmd=[{"prefix": "osd metadata", "id": 4}]: dispatch 2023-11-30T22:57:11.513 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 22:57:11 smithi167 conmon[87022]: audit 2023-11-30T22:57:10.776532+0000 mon.smithi038 (mon.0) 401 : audit [DBG] from='mgr.14182 172.21.15.38:0/2999689707' entity='mgr.smithi038.ldalxq' cmd=[{"prefix": "osd metadata", "id": 5}]: dispatch 2023-11-30T22:57:11.513 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 22:57:11 smithi167 conmon[87022]: audit 2023-11-30T22:57:10.776864+0000 mon.smithi038 (mon.0) 402 : audit [DBG] from='mgr.14182 172.21.15.38:0/2999689707' entity='mgr.smithi038.ldalxq' cmd=[{"prefix": "osd metadata", "id": 6}]: dispatch 2023-11-30T22:57:11.513 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 22:57:11 smithi167 conmon[87022]: audit 2023-11-30T22:57:10.777070+0000 mon.smithi038 (mon.0) 403 : audit [DBG] from='mgr.14182 172.21.15.38:0/2999689707' entity='mgr.smithi038.ldalxq' cmd=[{"prefix": "osd metadata", "id": 7}]: dispatch 2023-11-30T22:57:11.513 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 22:57:11 smithi167 conmon[87022]: audit 2023-11-30T22:57:10.779503+0000 mon.smithi038 (mon.0) 404 : audit [DBG] from='mgr.14182 172.21.15.38:0/2999689707' entity='mgr.smithi038.ldalxq' cmd=[{"prefix": "osd metadata", "id": 3}]: dispatch 2023-11-30T22:57:11.513 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 22:57:11 smithi167 conmon[87022]: audit 2023-11-30T22:57:10.779959+0000 mon.smithi038 (mon.0) 405 : audit [INF] from='mgr.14182 172.21.15.38:0/2999689707' entity='mgr.smithi038.ldalxq' cmd=[{"prefix": "osd pool application enable", "format": "json", "pool": "device_health_metrics", "app": "mgr_devicehealth"}]: dispatch 2023-11-30T22:57:11.625 DEBUG:teuthology.orchestra.run.smithi038:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:0dc074ce0b0b3b4f393f56dd32ef36884ebf45a9 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 3faf8b00-8fd3-11ee-95a2-87774f69a715 -- ceph osd stat -f json 2023-11-30T22:57:11.654 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:57:11 smithi038 conmon[81956]: cluster 2023-11-30T22:57:10.194621+0000 mgr.smithi038.ldalxq (mgr.14182) 62 : cluster [DBG] 2023-11-30T22:57:11.654 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:57:11 smithi038 conmon[81956]: pgmap v54: 0 pgs: ; 0 B data, 581 MiB used, 178 GiB / 179 GiB avail 2023-11-30T22:57:11.654 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:57:11 smithi038 conmon[81956]: audit 2023-11-30T22:57:10.774791+0000 mon.smithi038 (mon.0) 396 : audit [INF] from='osd.3 [v2:172.21.15.38:6810/913475055,v1:172.21.15.38:6811/913475055]' entity='osd.3' cmd='[{"prefix": "osd crush create-or-move", "id": 3, "weight":0.0873, "args": ["host=smithi038", "root=default"]}]': finished 2023-11-30T22:57:11.654 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:57:11 smithi038 conmon[81956]: audit 2023-11-30T22:57:10.774865+0000 mon.smithi038 (mon.0) 397 : audit [INF] from='mgr.14182 172.21.15.38:0/2999689707' entity='mgr.smithi038.ldalxq' cmd='[{"prefix": "osd pool create", "format": "json", "pool": "device_health_metrics", "pg_num": 1, "pg_num_min": 1, "pg_num_max": 32}]': finished 2023-11-30T22:57:11.654 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:57:11 smithi038 conmon[81956]: cluster 2023-11-30T22:57:10.774928+0000 2023-11-30T22:57:11.654 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:57:11 smithi038 conmon[81956]: mon.smithi038 (mon.0) 398 : cluster [DBG] osdmap e22: 8 total, 3 up, 8 in 2023-11-30T22:57:11.654 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:57:11 smithi038 conmon[81956]: audit 2023-11 2023-11-30T22:57:11.654 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:57:11 smithi038 conmon[81956]: -30T22:57:10.775404+0000 mon.smithi038 (mon.0) 2023-11-30T22:57:11.654 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:57:11 smithi038 conmon[81956]: 399 : audit [DBG] from='mgr.14182 172.21.15.38:0/2999689707' entity='mgr.smithi038.ldalxq' cmd=[{"prefix": "osd metadata", "id": 3}]: dispatch 2023-11-30T22:57:11.655 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:57:11 smithi038 conmon[81956]: audit 2023-11-30T 2023-11-30T22:57:11.655 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:57:11 smithi038 conmon[81956]: 22:57:10.775865+0000 mon.smithi038 (mon. 2023-11-30T22:57:11.655 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:57:11 smithi038 conmon[81956]: 0) 400 : audit [DBG] from='mgr.14182 172.21.15.38:0/2999689707' entity='mgr.smithi038.ldalxq' cmd=[{"prefix": "osd metadata", "id": 4}]: dispatch 2023-11-30T22:57:11.655 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:57:11 smithi038 conmon[81956]: audit 2023- 2023-11-30T22:57:11.655 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:57:11 smithi038 conmon[81956]: 11-30T22:57:10.776532+0000 mon.smithi038 (mon. 2023-11-30T22:57:11.655 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:57:11 smithi038 conmon[81956]: 0) 401 : audit [DBG] from='mgr.14182 172.21.15.38:0/2999689707' entity='mgr.smithi038.ldalxq' cmd=[{"prefix": "osd metadata", "id": 5}]: dispatch 2023-11-30T22:57:11.655 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:57:11 smithi038 conmon[81956]: audit 2023 2023-11-30T22:57:11.655 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:57:11 smithi038 conmon[81956]: -11-30T22:57:10.776864+0000 2023-11-30T22:57:11.655 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:57:11 smithi038 conmon[81956]: mon.smithi038 (mon.0) 402 : audit [DBG] from='mgr.14182 172.21.15.38:0/2999689707' entity='mgr.smithi038.ldalxq' cmd=[{"prefix": "osd metadata", "id": 6}]: dispatch 2023-11-30T22:57:11.655 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:57:11 smithi038 conmon[81956]: audit 2023 2023-11-30T22:57:11.655 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:57:11 smithi038 conmon[81956]: -11-30T22:57:10.777070+0000 2023-11-30T22:57:11.655 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:57:11 smithi038 conmon[81956]: mon.smithi038 (mon.0) 403 : audit [DBG] 2023-11-30T22:57:11.655 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:57:11 smithi038 conmon[81956]: from='mgr.14182 172.21.15.38:0/2999689707' entity='mgr.smithi038.ldalxq' cmd=[{"prefix": "osd metadata", "id": 7}]: dispatch 2023-11-30T22:57:11.656 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:57:11 smithi038 conmon[81956]: audit 2023-11-30T22:57:10. 2023-11-30T22:57:11.656 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:57:11 smithi038 conmon[81956]: 779503+0000 mon.smithi038 (mon.0) 404 : audit 2023-11-30T22:57:11.656 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:57:11 smithi038 conmon[81956]: [DBG] from='mgr.14182 172.21.15.38:0/2999689707' entity='mgr.smithi038.ldalxq' cmd=[{"prefix": "osd metadata", "id": 3}]: dispatch 2023-11-30T22:57:11.656 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:57:11 smithi038 conmon[81956]: audit 2023-11-30T22:57 2023-11-30T22:57:11.656 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:57:11 smithi038 conmon[81956]: :10.779959+0000 mon.smithi038 (mon.0) 2023-11-30T22:57:11.656 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:57:11 smithi038 conmon[81956]: 405 : audit [INF] from='mgr.14182 172.21.15.38:0/2999689707' entity='mgr.smithi038.ldalxq' cmd=[{"prefix": "osd pool application enable", "format": "json", "pool": "device_health_metrics", "app": "mgr_devicehealth"}]: dispatch 2023-11-30T22:57:12.746 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:57:12 smithi038 conmon[81956]: audit 2023-11-30T 2023-11-30T22:57:12.746 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:57:12 smithi038 conmon[81956]: 22:57:11.772524+0000 mon.smithi167 (mon.1) 15 : audit [INF] from='osd.4 [v2:172.21.15.167:6816/3515352043,v1:172.21.15.167:6817/3515352043]' entity='osd.4' cmd=[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["4"]}]: dispatch 2023-11-30T22:57:12.746 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:57:12 smithi038 conmon[81956]: audit 2023-11-30T22:57:11.773285+0000 mon.smithi038 (mon.0) 406 : audit [INF] from='osd.4 ' entity='osd.4' cmd=[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["4"]}]: dispatch 2023-11-30T22:57:12.747 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:57:12 smithi038 conmon[81956]: audit 2023-11-30T22:57:11.780517+0000 mon.smithi038 (mon.0) 407 : audit [INF] from='mgr.14182 172.21.15.38:0/2999689707' entity='mgr.smithi038.ldalxq' cmd='[{"prefix": "osd pool application enable", "format": "json", "pool": "device_health_metrics", "app": "mgr_devicehealth"}]': finished 2023-11-30T22:57:12.747 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:57:12 smithi038 conmon[81956]: cluster 2023-11-30T22:57:11.780605+0000 mon.smithi038 (mon.0) 408 : cluster [INF] osd.3 [v2:172.21.15.38:6810/913475055,v1:172.21.15.38:6811/913475055] boot 2023-11-30T22:57:12.747 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:57:12 smithi038 conmon[81956]: cluster 2023-11-30T22:57:11.780842+0000 mon.smithi038 (mon.0) 409 : cluster [DBG] osdmap e23: 8 total, 4 up, 8 in 2023-11-30T22:57:12.747 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:57:12 smithi038 conmon[81956]: audit 2023-11-30T22:57:11.781221+0000 mon.smithi038 (mon.0) 410 : audit [DBG] from='mgr.14182 172.21.15.38:0/2999689707' entity='mgr.smithi038.ldalxq' cmd=[{"prefix": "osd metadata", "id": 3}]: dispatch 2023-11-30T22:57:12.747 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:57:12 smithi038 conmon[81956]: audit 2023-11-30T22:57:11.781529+0000 mon.smithi038 (mon.0) 411 : audit [DBG] from='mgr.14182 172.21.15.38:0/2999689707' entity='mgr.smithi038.ldalxq' cmd=[{"prefix": "osd metadata", "id": 4}]: dispatch 2023-11-30T22:57:12.747 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:57:12 smithi038 conmon[81956]: audit 2023-11-30T22:57:11.781813+0000 mon.smithi038 (mon.0) 412 : audit [DBG] from='mgr.14182 172.21.15.38:0/2999689707' entity='mgr.smithi038.ldalxq' cmd=[{"prefix": "osd metadata", "id": 5}]: dispatch 2023-11-30T22:57:12.747 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:57:12 smithi038 conmon[81956]: audit 2023-11-30T22:57:11.782094+0000 mon.smithi038 (mon.0) 413 : audit [DBG] from='mgr.14182 172.21.15.38:0/2999689707' entity='mgr.smithi038.ldalxq' cmd=[{"prefix": "osd metadata", "id": 6}]: dispatch 2023-11-30T22:57:12.747 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:57:12 smithi038 conmon[81956]: audit 2023-11-30T22:57:11.782357+0000 mon.smithi038 (mon.0) 414 : audit [DBG] from='mgr.14182 172.21.15.38:0/2999689707' entity='mgr.smithi038.ldalxq' cmd=[{"prefix": "osd metadata", "id": 7}]: dispatch 2023-11-30T22:57:12.747 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:57:12 smithi038 conmon[81956]: audit 2023-11-30T22:57:11.992359+0000 mon.smithi038 (mon.0) 415 : audit [INF] from='mgr.14182 172.21.15.38:0/2999689707' entity='mgr.smithi038.ldalxq' 2023-11-30T22:57:12.747 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:57:12 smithi038 conmon[81956]: audit 2023-11-30T22:57:11.993062+0000 mon.smithi038 (mon.0) 416 : audit [INF] from='mgr.14182 172.21.15.38:0/2999689707' entity='mgr.smithi038.ldalxq' cmd=[{"prefix": "auth get", "entity": "osd.7"}]: dispatch 2023-11-30T22:57:12.747 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:57:12 smithi038 conmon[81956]: audit 2023-11-30T22 2023-11-30T22:57:12.747 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:57:12 smithi038 conmon[81956]: :57:11.993650+0000 mon.smithi038 (mon.0) 417 : audit [DBG] from='mgr.14182 172.21.15.38:0/2999689707' entity='mgr.smithi038.ldalxq' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2023-11-30T22:57:12.762 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 22:57:12 smithi167 conmon[87022]: audit 2023-11-30T22:57:11.772524+0000 mon.smithi167 (mon.1) 15 : audit 2023-11-30T22:57:12.762 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 22:57:12 smithi167 conmon[87022]: [INF] from='osd.4 [v2:172.21.15.167:6816/3515352043,v1:172.21.15.167:6817/3515352043]' entity='osd.4' cmd=[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["4"]}]: dispatch 2023-11-30T22:57:12.762 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 22:57:12 smithi167 conmon[87022]: audit 2023-11-30T22:57:11.773285+0000 mon.smithi038 (mon.0) 406 : audit [INF] from='osd.4 ' entity='osd.4' cmd=[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["4"]}]: dispatch 2023-11-30T22:57:12.762 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 22:57:12 smithi167 conmon[87022]: audit 2023-11-30T22:57:11.780517+0000 mon.smithi038 (mon.0) 407 : audit [INF] from='mgr.14182 172.21.15.38:0/2999689707' entity='mgr.smithi038.ldalxq' cmd='[{"prefix": "osd pool application enable", "format": "json", "pool": "device_health_metrics", "app": "mgr_devicehealth"}]': finished 2023-11-30T22:57:12.763 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 22:57:12 smithi167 conmon[87022]: cluster 2023-11-30T22:57:11.780605+0000 mon.smithi038 (mon.0) 408 : cluster [INF] osd.3 [v2:172.21.15.38:6810/913475055,v1:172.21.15.38:6811/913475055] boot 2023-11-30T22:57:12.763 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 22:57:12 smithi167 conmon[87022]: cluster 2023-11-30T22:57:11.780842+0000 mon.smithi038 (mon.0) 409 : cluster [DBG] osdmap e23: 8 total, 4 up, 8 in 2023-11-30T22:57:12.763 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 22:57:12 smithi167 conmon[87022]: audit 2023-11-30T22:57:11.781221+0000 mon.smithi038 (mon.0) 410 : audit [DBG] from='mgr.14182 172.21.15.38:0/2999689707' entity='mgr.smithi038.ldalxq' cmd=[{"prefix": "osd metadata", "id": 3}]: dispatch 2023-11-30T22:57:12.763 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 22:57:12 smithi167 conmon[87022]: audit 2023-11- 2023-11-30T22:57:12.763 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 22:57:12 smithi167 conmon[87022]: 30T22:57:11.781529+0000 mon.smithi038 (mon.0) 411 : audit [DBG] 2023-11-30T22:57:12.763 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 22:57:12 smithi167 conmon[87022]: from='mgr.14182 172.21.15.38:0/2999689707' entity='mgr.smithi038.ldalxq' cmd=[{"prefix": "osd metadata", "id": 4}]: dispatch 2023-11-30T22:57:12.763 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 22:57:12 smithi167 conmon[87022]: audit 2023-11-30T22:57:11 2023-11-30T22:57:12.763 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 22:57:12 smithi167 conmon[87022]: .781813+0000 mon.smithi038 (mon.0) 412 : audit 2023-11-30T22:57:12.763 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 22:57:12 smithi167 conmon[87022]: [DBG] from='mgr.14182 172.21.15.38:0/2999689707' entity='mgr.smithi038.ldalxq' cmd=[{"prefix": "osd metadata", "id": 5}]: dispatch 2023-11-30T22:57:12.763 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 22:57:12 smithi167 conmon[87022]: audit 2023-11-30T22:57:12.763 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 22:57:12 smithi167 conmon[87022]: 2023-11-30T22:57:11.782094+0000 mon.smithi038 2023-11-30T22:57:12.763 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 22:57:12 smithi167 conmon[87022]: (mon.0) 413 : audit [DBG] from='mgr.14182 172.21.15.38:0/2999689707' entity='mgr.smithi038.ldalxq' cmd=[{"prefix": "osd metadata", "id": 6}]: dispatch 2023-11-30T22:57:12.764 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 22:57:12 smithi167 conmon[87022]: audit 2023-11-30T22:57:12.764 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 22:57:12 smithi167 conmon[87022]: 2023-11-30T22:57: 2023-11-30T22:57:12.764 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 22:57:12 smithi167 conmon[87022]: 11.782357+0000 mon.smithi038 (mon.0) 414 : 2023-11-30T22:57:12.764 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 22:57:12 smithi167 conmon[87022]: audit [DBG] from='mgr.14182 172.21.15.38:0/2999689707' entity='mgr.smithi038.ldalxq' cmd=[{"prefix": "osd metadata", "id": 7}]: dispatch 2023-11-30T22:57:12.764 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 22:57:12 smithi167 conmon[87022]: audit 2023-11-30T22 2023-11-30T22:57:12.764 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 22:57:12 smithi167 conmon[87022]: :57:11.992359+0000 mon.smithi038 (mon.0) 2023-11-30T22:57:12.764 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 22:57:12 smithi167 conmon[87022]: 415 : audit [INF] from='mgr.14182 172.21.15.38:0/2999689707' entity='mgr.smithi038.ldalxq' 2023-11-30T22:57:12.764 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 22:57:12 smithi167 conmon[87022]: audit 2023-11- 2023-11-30T22:57:12.764 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 22:57:12 smithi167 conmon[87022]: 30T22:57:11.993062+0000 mon.smithi038 (mon 2023-11-30T22:57:12.764 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 22:57:12 smithi167 conmon[87022]: .0) 416 : audit [INF] from='mgr.14182 172.21.15.38:0/2999689707' entity='mgr.smithi038.ldalxq' cmd=[{"prefix": "auth get", "entity": "osd.7"}]: dispatch 2023-11-30T22:57:12.764 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 22:57:12 smithi167 conmon[87022]: audit 2023- 2023-11-30T22:57:12.765 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 22:57:12 smithi167 conmon[87022]: 11-30T22:57:11.993650+0000 mon.smithi038 ( 2023-11-30T22:57:12.765 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 22:57:12 smithi167 conmon[87022]: mon.0) 417 : audit [DBG] from='mgr.14182 172.21.15.38:0/2999689707' entity='mgr.smithi038.ldalxq' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2023-11-30T22:57:13.757 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:57:13 smithi038 conmon[81956]: cluster 2023-11-30T22:57:10.744489+0000 osd.3 (osd.3) 1 : cluster [DBG] purged_snaps scrub starts 2023-11-30T22:57:13.757 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:57:13 smithi038 conmon[81956]: cluster 2023-11-30T22:57:10.744539+0000 osd.3 (osd.3) 2 : cluster [DBG] purged_snaps scrub ok 2023-11-30T22:57:13.757 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:57:13 smithi038 conmon[81956]: cephadm 2023-11-30T22:57:11.994176+0000 mgr.smithi038.ldalxq (mgr.14182) 63 : cephadm [INF] Deploying daemon osd.7 on smithi038 2023-11-30T22:57:13.757 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:57:13 smithi038 conmon[81956]: cluster 2023-11-30T22:57:12.194960+0000 mgr.smithi038.ldalxq (mgr.14182) 64 : cluster [DBG] pgmap v57: 1 pgs: 1 creating+peering; 0 B data, 871 MiB used, 267 GiB / 268 GiB avail 2023-11-30T22:57:13.757 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:57:13 smithi038 conmon[81956]: audit 2023-11-30T22:57:12.782366+0000 mon.smithi038 (mon.0) 418 : audit [INF] from='osd.4 ' entity='osd.4' cmd='[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["4"]}]': finished 2023-11-30T22:57:13.757 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:57:13 smithi038 conmon[81956]: cluster 2023-11-30T22:57:12.782487+0000 mon.smithi038 (mon.0) 419 : cluster [DBG] osdmap e24: 8 total, 4 up, 8 in 2023-11-30T22:57:13.757 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:57:13 smithi038 conmon[81956]: audit 2023-11-30T22:57:12.782624+0000 mon.smithi038 (mon.0) 420 : audit [DBG] from='mgr.14182 172.21.15.38:0/2999689707' entity='mgr.smithi038.ldalxq' cmd=[{"prefix": "osd metadata", "id": 4}]: dispatch 2023-11-30T22:57:13.757 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:57:13 smithi038 conmon[81956]: audit 2023-11-30T22:57:12.782900+0000 mon.smithi038 (mon.0) 421 : audit [DBG] from='mgr.14182 172.21.15.38:0/2999689707' entity='mgr.smithi038.ldalxq' cmd=[{"prefix": "osd metadata", "id": 5}]: dispatch 2023-11-30T22:57:13.758 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:57:13 smithi038 conmon[81956]: audit 2023-11-30T22:57:12.783071+0000 mon.smithi038 (mon.0) 422 : audit [DBG] from='mgr.14182 172.21.15.38:0/2999689707' entity='mgr.smithi038.ldalxq' cmd=[{"prefix": "osd metadata", "id": 6}]: dispatch 2023-11-30T22:57:13.758 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:57:13 smithi038 conmon[81956]: audit 2023-11-30T22:57:12.783097+0000 mon.smithi167 (mon.1) 16 : audit [INF] from='osd.4 [v2:172.21.15.167:6816/3515352043,v1:172.21.15.167:6817/3515352043]' entity='osd.4' cmd=[{"prefix": "osd crush create-or-move", "id": 4, "weight":0.0873, "args": ["host=smithi167", "root=default"]}]: dispatch 2023-11-30T22:57:13.758 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:57:13 smithi038 conmon[81956]: audit 2023-11-30T22:57:12.783250+0000 mon.smithi038 (mon.0) 423 : audit [DBG] from='mgr.14182 172.21.15.38:0/2999689707' entity='mgr.smithi038.ldalxq' cmd=[{"prefix": "osd metadata", "id": 7}]: dispatch 2023-11-30T22:57:13.758 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:57:13 smithi038 conmon[81956]: audit 2023-11-30T22:57:12.783752+0000 mon.smithi038 (mon.0) 424 : audit [INF] from='osd.4 ' entity='osd.4' cmd=[{"prefix": "osd crush create-or-move", "id": 4, "weight":0.0873, "args": ["host=smithi167", "root=default"]}]: dispatch 2023-11-30T22:57:13.762 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 22:57:13 smithi167 conmon[87022]: cluster 2023-11-30T22:57:10.744489+0000 2023-11-30T22:57:13.762 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 22:57:13 smithi167 conmon[87022]: osd.3 (osd.3) 1 : cluster [DBG] purged_snaps scrub starts 2023-11-30T22:57:13.762 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 22:57:13 smithi167 conmon[87022]: cluster 2023-11-30T22: 2023-11-30T22:57:13.763 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 22:57:13 smithi167 conmon[87022]: 57:10.744539+0000 osd.3 (osd.3) 2 : cluster [DBG] purged_snaps scrub ok 2023-11-30T22:57:13.763 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 22:57:13 smithi167 conmon[87022]: cephadm 2023- 2023-11-30T22:57:13.763 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 22:57:13 smithi167 conmon[87022]: 11-30T22:57:11.994176+0000 mgr.smithi038.ldalxq ( 2023-11-30T22:57:13.763 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 22:57:13 smithi167 conmon[87022]: mgr.14182) 63 : cephadm [INF] Deploying daemon osd.7 on smithi038 2023-11-30T22:57:13.763 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 22:57:13 smithi167 conmon[87022]: cluster 2023- 2023-11-30T22:57:13.763 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 22:57:13 smithi167 conmon[87022]: 11-30T22:57:12.194960+0000 mgr.smithi038.ldalxq ( 2023-11-30T22:57:13.763 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 22:57:13 smithi167 conmon[87022]: mgr.14182) 64 : cluster [DBG] pgmap v57: 1 pgs: 1 creating+peering; 0 B data, 871 MiB used, 267 GiB / 268 GiB avail 2023-11-30T22:57:13.763 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 22:57:13 smithi167 conmon[87022]: audit 2023 2023-11-30T22:57:13.763 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 22:57:13 smithi167 conmon[87022]: -11-30T22:57:12.782366+0000 mon.smithi038 2023-11-30T22:57:13.763 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 22:57:13 smithi167 conmon[87022]: (mon.0) 418 : audit [INF] from='osd.4 ' entity='osd.4' cmd='[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["4"]}]': finished 2023-11-30T22:57:13.763 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 22:57:13 smithi167 conmon[87022]: cluster 2023 2023-11-30T22:57:13.763 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 22:57:13 smithi167 conmon[87022]: -11-30T22:57:12.782487+0000 mon.smithi038 2023-11-30T22:57:13.764 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 22:57:13 smithi167 conmon[87022]: (mon.0) 419 : cluster [DBG] osdmap e24: 8 total, 4 up, 8 in 2023-11-30T22:57:13.764 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 22:57:13 smithi167 conmon[87022]: audit 2023 2023-11-30T22:57:13.764 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 22:57:13 smithi167 conmon[87022]: -11-30T22:57:12.782624+0000 mon.smithi038 2023-11-30T22:57:13.764 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 22:57:13 smithi167 conmon[87022]: (mon.0) 420 : audit [DBG] from='mgr.14182 172.21.15.38:0/2999689707' entity='mgr.smithi038.ldalxq' cmd=[{"prefix": "osd metadata", "id": 4}]: dispatch 2023-11-30T22:57:13.764 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 22:57:13 smithi167 conmon[87022]: audit 2023- 2023-11-30T22:57:13.764 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 22:57:13 smithi167 conmon[87022]: 11-30T22:57:12.782900+0000 mon.smithi038 2023-11-30T22:57:13.764 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 22:57:13 smithi167 conmon[87022]: (mon.0) 421 : audit [DBG] from='mgr.14182 172.21.15.38:0/2999689707' entity='mgr.smithi038.ldalxq' cmd=[{"prefix": "osd metadata", "id": 5}]: dispatch 2023-11-30T22:57:13.764 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 22:57:13 smithi167 conmon[87022]: audit 2023 2023-11-30T22:57:13.764 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 22:57:13 smithi167 conmon[87022]: -11-30T22:57:12.783071+0000 mon.smithi038 2023-11-30T22:57:13.764 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 22:57:13 smithi167 conmon[87022]: (mon.0) 422 : audit [DBG] from='mgr.14182 172.21.15.38:0/2999689707' entity='mgr.smithi038.ldalxq' cmd=[{"prefix": "osd metadata", "id": 6}]: dispatch 2023-11-30T22:57:13.764 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 22:57:13 smithi167 conmon[87022]: audit 2023 2023-11-30T22:57:13.764 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 22:57:13 smithi167 conmon[87022]: -11-30T22:57:12.783097+0000 mon.smithi167 2023-11-30T22:57:13.764 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 22:57:13 smithi167 conmon[87022]: (mon.1) 16 : audit [INF] from='osd.4 [v2:172.21.15.167:6816/3515352043,v1:172.21.15.167:6817/3515352043]' entity='osd.4' cmd=[{"prefix": "osd crush create-or-move", "id": 4, "weight":0.0873, "args": ["host=smithi167", "root=default"]}]: dispatch 2023-11-30T22:57:13.765 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 22:57:13 smithi167 conmon[87022]: audit 2023- 2023-11-30T22:57:13.765 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 22:57:13 smithi167 conmon[87022]: 11-30T22:57:12.783250+0000 mon.smithi038 (mon 2023-11-30T22:57:13.765 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 22:57:13 smithi167 conmon[87022]: .0) 423 : audit [DBG] from='mgr.14182 172.21.15.38:0/2999689707' entity='mgr.smithi038.ldalxq' cmd=[{"prefix": "osd metadata", "id": 7}]: dispatch 2023-11-30T22:57:13.765 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 22:57:13 smithi167 conmon[87022]: audit 2023- 2023-11-30T22:57:13.765 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 22:57:13 smithi167 conmon[87022]: 11-30T22:57:12.783752+0000 mon.smithi038 ( 2023-11-30T22:57:13.765 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 22:57:13 smithi167 conmon[87022]: mon.0) 424 : audit [INF] from='osd.4 ' entity='osd.4' cmd=[{"prefix": "osd crush create-or-move", "id": 4, "weight":0.0873, "args": ["host=smithi167", "root=default"]}]: dispatch 2023-11-30T22:57:13.896 INFO:teuthology.orchestra.run.smithi038.stdout: 2023-11-30T22:57:14.512 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 22:57:14 smithi167 conmon[87022]: audit 2023-11-30T22:57:13.404047 2023-11-30T22:57:14.512 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 22:57:14 smithi167 conmon[87022]: +0000 mon.smithi038 (mon.0) 425 : audit [INF] from='mgr.14182 172.21.15.38:0/2999689707' entity='mgr.smithi038.ldalxq' 2023-11-30T22:57:14.512 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 22:57:14 smithi167 conmon[87022]: audit 2023-11-30T22:57:13.778759+0000 mon.smithi038 (mon.0) 426 : audit [INF] from='osd.4 ' entity='osd.4' cmd='[{"prefix": "osd crush create-or-move", "id": 4, "weight":0.0873, "args": ["host=smithi167", "root=default"]}]': finished 2023-11-30T22:57:14.512 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 22:57:14 smithi167 conmon[87022]: cluster 2023-11-30T22:57:13.778864+0000 mon.smithi038 (mon.0) 427 : cluster [DBG] osdmap e25: 8 total, 4 up, 8 in 2023-11-30T22:57:14.512 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 22:57:14 smithi167 conmon[87022]: audit 2023-11-30T22:57:13.778986+0000 mon.smithi038 (mon.0) 428 : audit [DBG] from='mgr.14182 172.21.15.38:0/2999689707' entity='mgr.smithi038.ldalxq' cmd=[{"prefix": "osd metadata", "id": 4}]: dispatch 2023-11-30T22:57:14.512 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 22:57:14 smithi167 conmon[87022]: audit 2023-11-30T22:57:13.779279+0000 mon.smithi038 (mon.0) 429 : audit [DBG] from='mgr.14182 172.21.15.38:0/2999689707' entity='mgr.smithi038.ldalxq' cmd=[{"prefix": "osd metadata", "id": 5}]: dispatch 2023-11-30T22:57:14.512 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 22:57:14 smithi167 conmon[87022]: audit 2023-11-30T22:57:13.779435+0000 mon.smithi038 (mon.0) 430 : audit [DBG] from='mgr.14182 172.21.15.38:0/2999689707' entity='mgr.smithi038.ldalxq' cmd=[{"prefix": "osd metadata", "id": 6}]: dispatch 2023-11-30T22:57:14.512 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 22:57:14 smithi167 conmon[87022]: audit 2023-11-30T22:57:13.779592+0000 mon.smithi038 (mon.0) 431 : audit [DBG] from='mgr.14182 172.21.15.38:0/2999689707' entity='mgr.smithi038.ldalxq' cmd=[{"prefix": "osd metadata", "id": 7}]: dispatch 2023-11-30T22:57:14.513 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 22:57:14 smithi167 conmon[87022]: audit 2023-11-30T22:57:13.782285+0000 mon.smithi038 (mon.0) 432 : audit [DBG] from='mgr.14182 172.21.15.38:0/2999689707' entity='mgr.smithi038.ldalxq' cmd=[{"prefix": "osd metadata", "id": 4}]: dispatch 2023-11-30T22:57:14.513 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 22:57:14 smithi167 conmon[87022]: audit 2023-11-30T22:57:13.896101+0000 mon.smithi038 (mon.0) 433 : audit [DBG] from='client.? 172.21.15.38:0/2738542194' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2023-11-30T22:57:14.551 INFO:teuthology.orchestra.run.smithi038.stdout:{"epoch":25,"num_osds":8,"num_up_osds":4,"osd_up_since":1701385031,"num_in_osds":8,"osd_in_since":1701385007,"num_remapped_pgs":0} 2023-11-30T22:57:14.774 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:57:14 smithi038 conmon[81956]: audit 2023-11-30T22:57:13.404047+0000 mon.smithi038 (mon.0) 425 : audit [INF] from='mgr.14182 172.21.15.38:0/2999689707' entity='mgr.smithi038.ldalxq' 2023-11-30T22:57:14.774 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:57:14 smithi038 conmon[81956]: audit 2023-11-30T22:57:13.778759+0000 mon.smithi038 (mon.0) 426 : audit [INF] from='osd.4 ' entity='osd.4' cmd='[{"prefix": "osd crush create-or-move", "id": 4, "weight":0.0873, "args": ["host=smithi167", "root=default"]}]': finished 2023-11-30T22:57:14.774 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:57:14 smithi038 conmon[81956]: cluster 2023-11-30T22:57:13.778864+0000 mon.smithi038 (mon.0) 427 : cluster [DBG] osdmap e25: 8 total, 4 up, 8 in 2023-11-30T22:57:14.775 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:57:14 smithi038 conmon[81956]: audit 2023-11-30T22:57:13.778986+0000 mon.smithi038 (mon.0) 428 : audit [DBG] from='mgr.14182 172.21.15.38:0/2999689707' entity='mgr.smithi038.ldalxq' cmd=[{"prefix": "osd metadata", "id": 4}]: dispatch 2023-11-30T22:57:14.775 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:57:14 smithi038 conmon[81956]: audit 2023-11-30T22:57:13.779279+0000 mon.smithi038 (mon.0) 429 : audit [DBG] from='mgr.14182 172.21.15.38:0/2999689707' entity='mgr.smithi038.ldalxq' cmd=[{"prefix": "osd metadata", "id": 5}]: dispatch 2023-11-30T22:57:14.775 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:57:14 smithi038 conmon[81956]: audit 2023-11-30T22:57:13.779435+0000 mon.smithi038 (mon.0) 430 : audit [DBG] from='mgr.14182 172.21.15.38:0/2999689707' entity='mgr.smithi038.ldalxq' cmd=[{"prefix": "osd metadata", "id": 6}]: dispatch 2023-11-30T22:57:14.775 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:57:14 smithi038 conmon[81956]: audit 2023-11-30T22:57:13.779592+0000 mon.smithi038 (mon.0) 431 : audit [DBG] from='mgr.14182 172.21.15.38:0/2999689707' entity='mgr.smithi038.ldalxq' cmd=[{"prefix": "osd metadata", "id": 7}]: dispatch 2023-11-30T22:57:14.775 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:57:14 smithi038 conmon[81956]: audit 2023-11-30T22:57:13.782285+0000 mon.smithi038 (mon.0) 432 : audit [DBG] from='mgr.14182 172.21.15.38:0/2999689707' entity='mgr.smithi038.ldalxq' cmd=[{"prefix": "osd metadata", "id": 4}]: dispatch 2023-11-30T22:57:14.775 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:57:14 smithi038 conmon[81956]: audit 2023-11-30T22:57:13.896101+0000 mon.smithi038 (mon.0) 433 : audit [DBG] from='client.? 172.21.15.38:0/2738542194' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2023-11-30T22:57:15.434 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:57:15 smithi038 conmon[81956]: cluster 2023-11-30T22:57:12.819313+0000 osd.4 2023-11-30T22:57:15.435 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:57:15 smithi038 conmon[81956]: (osd.4) 1 : cluster [DBG] purged_snaps scrub starts 2023-11-30T22:57:15.435 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:57:15 smithi038 conmon[81956]: cluster 2023-11-30T22:57:12.819367+0000 osd.4 (osd.4) 2 : cluster [DBG] purged_snaps scrub ok 2023-11-30T22:57:15.435 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:57:15 smithi038 conmon[81956]: cluster 2023-11-30T22:57:14.195268+0000 mgr.smithi038.ldalxq (mgr.14182) 2023-11-30T22:57:15.435 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:57:15 smithi038 conmon[81956]: 65 : cluster [DBG] pgmap v60: 1 pgs: 1 creating+peering; 0 B data, 1.1 GiB used, 356 GiB / 358 GiB avail 2023-11-30T22:57:15.435 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:57:15 smithi038 conmon[81956]: cluster 2023-11-30T22:57:14.784440+0000 mon.smithi038 (mon.0) 434 2023-11-30T22:57:15.435 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:57:15 smithi038 conmon[81956]: : cluster [INF] osd.4 [v2:172.21.15.167:6816/3515352043,v1:172.21.15.167:6817/3515352043] boot 2023-11-30T22:57:15.435 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:57:15 smithi038 conmon[81956]: cluster 2023-11-30T22 2023-11-30T22:57:15.435 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:57:15 smithi038 conmon[81956]: :57:14.784480+0000 mon.smithi038 (mon.0) 435 : cluster [DBG] osdmap e26: 8 total, 5 up, 8 in 2023-11-30T22:57:15.435 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:57:15 smithi038 conmon[81956]: audit 2023-11-30T22:57:14.784935 2023-11-30T22:57:15.435 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:57:15 smithi038 conmon[81956]: +0000 mon.smithi038 (mon.0) 436 : audit [DBG] from='mgr.14182 172.21.15.38:0/2999689707' entity='mgr.smithi038.ldalxq' cmd=[{"prefix": "osd metadata", "id": 4}]: dispatch 2023-11-30T22:57:15.435 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:57:15 smithi038 conmon[81956]: audit 2023-11-30T22:57:14.785284+0000 2023-11-30T22:57:15.435 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:57:15 smithi038 conmon[81956]: mon.smithi038 (mon.0) 437 : audit [DBG] from='mgr.14182 172.21.15.38:0/2999689707' entity='mgr.smithi038.ldalxq' cmd=[{"prefix": "osd metadata", "id": 5}]: dispatch 2023-11-30T22:57:15.436 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:57:15 smithi038 conmon[81956]: audit 2023-11-30T22:57 2023-11-30T22:57:15.436 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:57:15 smithi038 conmon[81956]: :14.785441+0000 mon.smithi038 (mon.0) 438 : 2023-11-30T22:57:15.436 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:57:15 smithi038 conmon[81956]: audit [DBG] from='mgr.14182 172.21.15.38:0/2999689707' entity='mgr.smithi038.ldalxq' cmd=[{"prefix": "osd metadata", "id": 6}]: dispatch 2023-11-30T22:57:15.436 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:57:15 smithi038 conmon[81956]: audit 2023-11-30T22:57:14 2023-11-30T22:57:15.436 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:57:15 smithi038 conmon[81956]: .785607+0000 mon.smithi038 (mon.0) 439 : audit [DBG] from='mgr.14182 172.21.15.38:0/2999689707' entity='mgr.smithi038.ldalxq' cmd=[{"prefix": "osd metadata", "id": 7}]: dispatch 2023-11-30T22:57:15.436 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:57:15 smithi038 conmon[81956]: audit 2023-11 2023-11-30T22:57:15.436 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:57:15 smithi038 conmon[81956]: -30T22:57:15.163733+0000 mon.smithi038 2023-11-30T22:57:15.436 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:57:15 smithi038 conmon[81956]: (mon.0) 440 : audit [INF] from='osd.5 [v2:172.21.15.38:6818/1758214256,v1:172.21.15.38:6819/1758214256]' entity='osd.5' cmd=[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["5"]}]: dispatch 2023-11-30T22:57:15.552 DEBUG:teuthology.orchestra.run.smithi038:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:0dc074ce0b0b3b4f393f56dd32ef36884ebf45a9 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 3faf8b00-8fd3-11ee-95a2-87774f69a715 -- ceph osd stat -f json 2023-11-30T22:57:15.731 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 22:57:15 smithi167 conmon[87022]: cluster 2023-11-30T22:57:12.819313+0000 osd.4 (osd.4) 1 : cluster [DBG] purged_snaps scrub starts 2023-11-30T22:57:15.731 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 22:57:15 smithi167 conmon[87022]: cluster 2023-11-30T22:57:12.819367+0000 osd.4 (osd.4) 2 : cluster [DBG] purged_snaps scrub ok 2023-11-30T22:57:15.732 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 22:57:15 smithi167 conmon[87022]: cluster 2023-11-30T22:57:14.195268+0000 mgr.smithi038.ldalxq (mgr.14182) 65 : cluster [DBG] pgmap v60: 1 pgs: 1 creating+peering; 0 B data, 1.1 GiB used, 356 GiB / 358 GiB avail 2023-11-30T22:57:15.732 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 22:57:15 smithi167 conmon[87022]: cluster 2023-11-30T22:57:14.784440+0000 mon.smithi038 (mon.0) 434 : cluster [INF] osd.4 [v2:172.21.15.167:6816/3515352043,v1:172.21.15.167:6817/3515352043] boot 2023-11-30T22:57:15.732 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 22:57:15 smithi167 conmon[87022]: cluster 2023-11-30T22:57:14.784480+0000 mon.smithi038 (mon.0) 435 : cluster [DBG] osdmap e26: 8 total, 5 up, 8 in 2023-11-30T22:57:15.732 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 22:57:15 smithi167 conmon[87022]: audit 2023-11-30T22:57:14.784935+0000 mon.smithi038 (mon.0) 436 : audit [DBG] from='mgr.14182 172.21.15.38:0/2999689707' entity='mgr.smithi038.ldalxq' cmd=[{"prefix": "osd metadata", "id": 4}]: dispatch 2023-11-30T22:57:15.732 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 22:57:15 smithi167 conmon[87022]: audit 2023-11-30T22:57:14 2023-11-30T22:57:15.732 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 22:57:15 smithi167 conmon[87022]: .785284+0000 mon.smithi038 (mon.0) 437 : audit [DBG] from='mgr.14182 172.21.15.38:0/2999689707' entity='mgr.smithi038.ldalxq' cmd=[{"prefix": "osd metadata", "id": 5}]: dispatch 2023-11-30T22:57:15.732 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 22:57:15 smithi167 conmon[87022]: audit 2023-11-30T22:57:14.785441+0000 mon.smithi038 (mon.0) 438 : audit [DBG] from='mgr.14182 172.21.15.38:0/2999689707' entity='mgr.smithi038.ldalxq' cmd=[{"prefix": "osd metadata", "id": 6}]: dispatch 2023-11-30T22:57:15.732 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 22:57:15 smithi167 conmon[87022]: audit 2023-11-30T22:57:14.785607+0000 mon.smithi038 (mon.0) 439 : audit [DBG] from='mgr.14182 172.21.15.38:0/2999689707' entity='mgr.smithi038.ldalxq' cmd=[{"prefix": "osd metadata", "id": 7}]: dispatch 2023-11-30T22:57:15.732 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 22:57:15 smithi167 conmon[87022]: audit 2023-11-30T22:57:15.163733+0000 mon.smithi038 (mon.0) 440 : audit [INF] from='osd.5 [v2:172.21.15.38:6818/1758214256,v1:172.21.15.38:6819/1758214256]' entity='osd.5' cmd=[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["5"]}]: dispatch 2023-11-30T22:57:17.012 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 22:57:16 smithi167 conmon[87022]: audit 2023-11-30T22:57:15.790873+0000 mon.smithi038 (mon.0) 2023-11-30T22:57:17.012 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 22:57:16 smithi167 conmon[87022]: 441 : audit [INF] from='osd.5 [v2:172.21.15.38:6818/1758214256,v1:172.21.15.38:6819/1758214256]' entity='osd.5' cmd='[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["5"]}]': finished 2023-11-30T22:57:17.012 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 22:57:16 smithi167 conmon[87022]: cluster 2023-11-30T22:57:15.790928+0000 mon.smithi038 (mon.0) 442 : cluster [DBG] osdmap e27: 8 total, 5 up, 8 in 2023-11-30T22:57:17.012 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 22:57:16 smithi167 conmon[87022]: audit 2023-11-30T22 2023-11-30T22:57:17.012 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 22:57:16 smithi167 conmon[87022]: :57:15.791066+0000 mon.smithi038 (mon.0) 443 : audit [DBG] from='mgr.14182 172.21.15.38:0/2999689707' entity='mgr.smithi038.ldalxq' cmd=[{"prefix": "osd metadata", "id": 5}]: dispatch 2023-11-30T22:57:17.012 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 22:57:16 smithi167 conmon[87022]: audit 2023-11-30T22:57:15.791463+0000 mon.smithi038 (mon.0 2023-11-30T22:57:17.012 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 22:57:16 smithi167 conmon[87022]: ) 444 : audit [DBG] from='mgr.14182 172.21.15.38:0/2999689707' entity='mgr.smithi038.ldalxq' cmd=[{"prefix": "osd metadata", "id": 6}]: dispatch 2023-11-30T22:57:17.013 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 22:57:16 smithi167 conmon[87022]: audit 2023-11-30T 2023-11-30T22:57:17.013 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 22:57:16 smithi167 conmon[87022]: 22:57:15.791721+0000 mon.smithi038 (mon.0) 445 : audit [INF] from='osd.5 [v2:172.21.15.38:6818/1758214256,v1:172.21.15.38:6819/1758214256]' entity='osd.5' cmd=[{"prefix": "osd crush create-or-move", "id": 5, "weight":0.0873, "args": ["host=smithi038", "root=default"]}]: dispatch 2023-11-30T22:57:17.013 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 22:57:16 smithi167 conmon[87022]: audit 2023-11-30T22:57:15.792058+0000 mon.smithi038 (mon 2023-11-30T22:57:17.013 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 22:57:16 smithi167 conmon[87022]: .0) 446 : audit [DBG] from='mgr.14182 172.21.15.38:0/2999689707' entity='mgr.smithi038.ldalxq' cmd=[{"prefix": "osd metadata", "id": 7}]: dispatch 2023-11-30T22:57:17.013 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 22:57:16 smithi167 conmon[87022]: audit 2023-11-30T22:57:16.193397+0000 mon.smithi038 ( 2023-11-30T22:57:17.013 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 22:57:16 smithi167 conmon[87022]: mon.0) 447 : audit [INF] from='mgr.14182 172.21.15.38:0/2999689707' entity='mgr.smithi038.ldalxq' 2023-11-30T22:57:17.013 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 22:57:16 smithi167 conmon[87022]: cluster 2023-11-30T22:57:16.195501+0000 2023-11-30T22:57:17.013 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 22:57:16 smithi167 conmon[87022]: mgr.smithi038.ldalxq (mgr.14182) 66 : cluster [DBG] pgmap v63: 1 pgs: 1 creating+peering; 0 B data, 1.4 GiB used, 446 GiB / 447 GiB avail 2023-11-30T22:57:17.013 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 22:57:16 smithi167 conmon[87022]: audit 2023-11-30T22:57:16 2023-11-30T22:57:17.013 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 22:57:16 smithi167 conmon[87022]: .553952+0000 mon.smithi167 (mon.1) 17 : audit [INF] from='osd.6 [v2:172.21.15.167:6824/1831583000,v1:172.21.15.167:6825/1831583000]' entity='osd.6' cmd=[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["6"]}]: dispatch 2023-11-30T22:57:17.013 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 22:57:16 smithi167 conmon[87022]: audit 2023-11-30T22: 2023-11-30T22:57:17.014 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 22:57:16 smithi167 conmon[87022]: 57:16.554536+0000 mon.smithi038 (mon.0) 448 : audit [INF] from='osd.6 ' entity='osd.6' cmd=[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["6"]}]: dispatch 2023-11-30T22:57:17.024 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:57:16 smithi038 conmon[81956]: audit 2023-11-30T22:57:15 2023-11-30T22:57:17.025 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:57:16 smithi038 conmon[81956]: .790873+0000 mon.smithi038 (mon.0) 441 : audit [INF] from='osd.5 [v2:172.21.15.38:6818/1758214256,v1:172.21.15.38:6819/1758214256]' entity='osd.5' cmd='[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["5"]}]': finished 2023-11-30T22:57:17.025 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:57:16 smithi038 conmon[81956]: cluster 2023-11-30T22:57:15.790928+0000 mon.smithi038 (mon.0) 442 : cluster [DBG] osdmap e27: 8 total, 5 up, 8 in 2023-11-30T22:57:17.025 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:57:16 smithi038 conmon[81956]: audit 2023-11-30T22:57:15.791066+0000 mon.smithi038 (mon.0) 443 : audit [DBG] from='mgr.14182 172.21.15.38:0/2999689707' entity='mgr.smithi038.ldalxq' cmd=[{"prefix": "osd metadata", "id": 5}]: dispatch 2023-11-30T22:57:17.025 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:57:16 smithi038 conmon[81956]: audit 2023-11-30T22:57:15.791463+0000 mon.smithi038 (mon.0) 444 : audit [DBG] from='mgr.14182 172.21.15.38:0/2999689707' entity='mgr.smithi038.ldalxq' cmd=[{"prefix": "osd metadata", "id": 6}]: dispatch 2023-11-30T22:57:17.025 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:57:16 smithi038 conmon[81956]: audit 2023-11-30T22:57:15.791721+0000 mon.smithi038 (mon.0) 445 : audit [INF] from='osd.5 [v2:172.21.15.38:6818/1758214256,v1:172.21.15.38:6819/1758214256]' entity='osd.5' cmd=[{"prefix": "osd crush create-or-move", "id": 5, "weight":0.0873, "args": ["host=smithi038", "root=default"]}]: dispatch 2023-11-30T22:57:17.025 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:57:16 smithi038 conmon[81956]: audit 2023-11-30T22:57:15.792058+0000 mon.smithi038 (mon.0) 446 : audit [DBG] from='mgr.14182 172.21.15.38:0/2999689707' entity='mgr.smithi038.ldalxq' cmd=[{"prefix": "osd metadata", "id": 7}]: dispatch 2023-11-30T22:57:17.025 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:57:16 smithi038 conmon[81956]: audit 2023-11-30T22:57:16.193397+0000 mon.smithi038 (mon.0) 447 : audit [INF] from='mgr.14182 172.21.15.38:0/2999689707' entity='mgr.smithi038.ldalxq' 2023-11-30T22:57:17.025 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:57:16 smithi038 conmon[81956]: cluster 2023-11-30T22:57:16.195501+0000 mgr.smithi038.ldalxq (mgr.14182) 66 : cluster [DBG] pgmap v63: 1 pgs: 1 creating+peering; 0 B data, 1.4 GiB used, 446 GiB / 447 GiB avail 2023-11-30T22:57:17.026 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:57:16 smithi038 conmon[81956]: audit 2023-11-30T22:57:16.553952+0000 mon.smithi167 (mon.1) 17 : audit [INF] from='osd.6 [v2:172.21.15.167:6824/1831583000,v1:172.21.15.167:6825/1831583000]' entity='osd.6' cmd=[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["6"]}]: dispatch 2023-11-30T22:57:17.026 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:57:16 smithi038 conmon[81956]: audit 2023-11-30T22:57:16.554536+0000 mon.smithi038 (mon.0) 448 : audit [INF] from='osd.6 ' entity='osd.6' cmd=[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["6"]}]: dispatch 2023-11-30T22:57:17.611 INFO:teuthology.orchestra.run.smithi038.stdout: 2023-11-30T22:57:18.014 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:57:17 smithi038 conmon[81956]: audit 2023-11-30T22:57:16.793643+0000 mon.smithi038 (mon.0) 449 : audit [INF] from='osd.5 [v2:172.21.15.38:6818/1758214256,v1:172.21.15.38:6819/1758214256]' entity='osd.5' cmd='[{"prefix": "osd crush create-or-move", "id": 5, "weight":0.0873, "args": ["host=smithi038", "root=default"]}]': finished 2023-11-30T22:57:18.014 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:57:17 smithi038 conmon[81956]: audit 2023-11-30T22:57:16.793712+0000 mon.smithi038 (mon.0) 450 : audit [INF] from='osd.6 ' entity='osd.6' cmd='[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["6"]}]': finished 2023-11-30T22:57:18.014 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:57:17 smithi038 conmon[81956]: cluster 2023-11-30T22:57:16.793764+0000 mon.smithi038 (mon.0) 451 : cluster [DBG] osdmap e28: 8 total, 5 up, 8 in 2023-11-30T22:57:18.014 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:57:17 smithi038 conmon[81956]: audit 2023-11-30T22:57:16.794180+0000 mon.smithi038 (mon.0) 452 : audit [DBG] from='mgr.14182 172.21.15.38:0/2999689707' entity='mgr.smithi038.ldalxq' cmd=[{"prefix": "osd metadata", "id": 5}]: dispatch 2023-11-30T22:57:18.014 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:57:17 smithi038 conmon[81956]: audit 2023-11-30T22:57:16.794298+0000 mon.smithi167 (mon.1) 18 : audit [INF] from='osd.6 [v2:172.21.15.167:6824/1831583000,v1:172.21.15.167:6825/1831583000]' entity='osd.6' cmd=[{"prefix": "osd crush create-or-move", "id": 6, "weight":0.0873, "args": ["host=smithi167", "root=default"]}]: dispatch 2023-11-30T22:57:18.014 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:57:17 smithi038 conmon[81956]: audit 2023-11-30T22:57:16.794451+0000 mon.smithi038 (mon.0) 453 : audit [DBG] from='mgr.14182 172.21.15.38:0/2999689707' entity='mgr.smithi038.ldalxq' cmd=[{"prefix": "osd metadata", "id": 6}]: dispatch 2023-11-30T22:57:18.015 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:57:17 smithi038 conmon[81956]: audit 2023-11-30T22:57:18.015 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:57:17 smithi038 conmon[81956]: 2023-11-30T22:57:16.794906+0000 mon.smithi038 (mon.0) 454 : audit [DBG] from='mgr.14182 172.21.15.38:0/2999689707' entity='mgr.smithi038.ldalxq' cmd=[{"prefix": "osd metadata", "id": 7}]: dispatch 2023-11-30T22:57:18.015 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:57:17 smithi038 conmon[81956]: audit 2023-11-30T22:57:16.797922+0000 mon.smithi038 (mon 2023-11-30T22:57:18.015 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:57:17 smithi038 conmon[81956]: .0) 455 : audit [INF] from='osd.6 ' entity='osd.6' cmd=[{"prefix": "osd crush create-or-move", "id": 6, "weight":0.0873, "args": ["host=smithi167", "root=default"]}]: dispatch 2023-11-30T22:57:18.015 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:57:17 smithi038 conmon[81956]: audit 2023 2023-11-30T22:57:18.015 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:57:17 smithi038 conmon[81956]: -11-30T22:57:16.798349+0000 mon.smithi038 (mon.0) 456 : audit [DBG] from='mgr.14182 172.21.15.38:0/2999689707' entity='mgr.smithi038.ldalxq' cmd=[{"prefix": "osd metadata", "id": 5}]: dispatch 2023-11-30T22:57:18.015 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:57:17 smithi038 conmon[81956]: 2023-11-30T22:57:18.015 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:57:17 smithi038 conmon[81956]: audit 2023-11-30T 2023-11-30T22:57:18.015 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:57:17 smithi038 conmon[81956]: 22:57:17.610278+0000 mon.smithi038 (mon.0) 457 : audit [DBG] from='client.? 172.21.15.38:0/1153129088' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2023-11-30T22:57:18.015 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:57:17 smithi038 conmon[81956]: audit 2023-11-30T22:57:17. 2023-11-30T22:57:18.015 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:57:17 smithi038 conmon[81956]: 653564+0000 mon.smithi038 (mon.0) 458 : audit [INF] from='mgr.14182 172.21.15.38:0/2999689707' entity='mgr.smithi038.ldalxq' 2023-11-30T22:57:18.016 INFO:teuthology.orchestra.run.smithi038.stdout:{"epoch":28,"num_osds":8,"num_up_osds":5,"osd_up_since":1701385034,"num_in_osds":8,"osd_in_since":1701385007,"num_remapped_pgs":0} 2023-11-30T22:57:18.262 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 22:57:17 smithi167 conmon[87022]: audit 2023-11-30T22:57:16.793643+0000 mon.smithi038 (mon.0) 449 : audit 2023-11-30T22:57:18.262 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 22:57:17 smithi167 conmon[87022]: [INF] from='osd.5 [v2:172.21.15.38:6818/1758214256,v1:172.21.15.38:6819/1758214256]' entity='osd.5' cmd='[{"prefix": "osd crush create-or-move", "id": 5, "weight":0.0873, "args": ["host=smithi038", "root=default"]}]': finished 2023-11-30T22:57:18.262 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 22:57:17 smithi167 conmon[87022]: audit 2023-11-30T22:57:16.793712+0000 mon.smithi038 (mon.0) 450 : audit [INF] from='osd.6 ' entity='osd.6' cmd='[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["6"]}]': finished 2023-11-30T22:57:18.262 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 22:57:17 smithi167 conmon[87022]: cluster 2023-11-30T22:57:18.262 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 22:57:17 smithi167 conmon[87022]: 2023-11-30T22:57:16.793764+0000 mon.smithi038 (mon.0) 451 : cluster [DBG] osdmap e28: 8 total, 5 up, 8 in 2023-11-30T22:57:18.262 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 22:57:17 smithi167 conmon[87022]: audit 2023-11-30T22:57:16.794180+0000 mon.smithi038 (mon 2023-11-30T22:57:18.263 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 22:57:17 smithi167 conmon[87022]: .0) 452 : audit [DBG] from='mgr.14182 172.21.15.38:0/2999689707' entity='mgr.smithi038.ldalxq' cmd=[{"prefix": "osd metadata", "id": 5}]: dispatch 2023-11-30T22:57:18.263 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 22:57:17 smithi167 conmon[87022]: audit 2023-11-30T22:57:18.263 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 22:57:17 smithi167 conmon[87022]: 2023-11-30T22:57:16 2023-11-30T22:57:18.263 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 22:57:17 smithi167 conmon[87022]: .794298+0000 mon.smithi167 (mon.1) 18 : audit [INF] 2023-11-30T22:57:18.263 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 22:57:17 smithi167 conmon[87022]: from='osd.6 [v2:172.21.15.167:6824/1831583000,v1:172.21.15.167:6825/1831583000]' entity='osd.6' cmd=[{"prefix": "osd crush create-or-move", "id": 6, "weight":0.0873, "args": ["host=smithi167", "root=default"]}]: dispatch 2023-11-30T22:57:18.263 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 22:57:17 smithi167 conmon[87022]: audit 2023-11 2023-11-30T22:57:18.263 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 22:57:17 smithi167 conmon[87022]: -30T22:57:16.794451+0000 mon.smithi038 (mon.0) 453 : 2023-11-30T22:57:18.263 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 22:57:17 smithi167 conmon[87022]: audit [DBG] from='mgr.14182 172.21.15.38:0/2999689707' entity='mgr.smithi038.ldalxq' cmd=[{"prefix": "osd metadata", "id": 6}]: dispatch 2023-11-30T22:57:18.263 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 22:57:17 smithi167 conmon[87022]: audit 2023-11-30T22 2023-11-30T22:57:18.263 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 22:57:17 smithi167 conmon[87022]: :57:16.794906+0000 mon.smithi038 (mon.0) 454 : audit 2023-11-30T22:57:18.263 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 22:57:17 smithi167 conmon[87022]: [DBG] from='mgr.14182 172.21.15.38:0/2999689707' entity='mgr.smithi038.ldalxq' cmd=[{"prefix": "osd metadata", "id": 7}]: dispatch 2023-11-30T22:57:18.264 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 22:57:17 smithi167 conmon[87022]: audit 2023-11-30T22:57:16.797922 2023-11-30T22:57:18.264 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 22:57:17 smithi167 conmon[87022]: +0000 mon.smithi038 (mon.0) 455 : audit [INF] from='osd.6 ' entity='osd.6' cmd=[{"prefix": "osd crush create-or-move", "id": 6, "weight":0.0873, "args": ["host=smithi167", "root=default"]}]: dispatch 2023-11-30T22:57:18.264 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 22:57:17 smithi167 conmon[87022]: 2023-11-30T22:57:18.264 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 22:57:17 smithi167 conmon[87022]: audit 2023-11-30T22:57:16.798349+0000 2023-11-30T22:57:18.264 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 22:57:17 smithi167 conmon[87022]: mon.smithi038 (mon.0) 456 : audit [DBG] from='mgr.14182 172.21.15.38:0/2999689707' entity='mgr.smithi038.ldalxq' cmd=[{"prefix": "osd metadata", "id": 5}]: dispatch 2023-11-30T22:57:18.264 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 22:57:17 smithi167 conmon[87022]: 2023-11-30T22:57:18.264 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 22:57:17 smithi167 conmon[87022]: audit 2023-11-30T22:57:17.610278+0000 2023-11-30T22:57:18.264 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 22:57:17 smithi167 conmon[87022]: mon.smithi038 (mon.0) 457 : audit [DBG] from='client.? 172.21.15.38:0/1153129088' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2023-11-30T22:57:18.264 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 22:57:17 smithi167 conmon[87022]: audit 2023-11-30T22:57:18.264 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 22:57:17 smithi167 conmon[87022]: 2023-11-30T22:57:17.653564+0000 mon.smithi038 ( 2023-11-30T22:57:18.264 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 22:57:17 smithi167 conmon[87022]: mon.0) 458 : audit [INF] from='mgr.14182 172.21.15.38:0/2999689707' entity='mgr.smithi038.ldalxq' 2023-11-30T22:57:19.017 DEBUG:teuthology.orchestra.run.smithi038:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:0dc074ce0b0b3b4f393f56dd32ef36884ebf45a9 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 3faf8b00-8fd3-11ee-95a2-87774f69a715 -- ceph osd stat -f json 2023-11-30T22:57:19.262 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 22:57:18 smithi167 conmon[87022]: cluster 2023-11-30T22:57:16.196394+0000 osd.5 (osd.5) 1 : cluster [DBG] purged_snaps scrub starts 2023-11-30T22:57:19.262 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 22:57:18 smithi167 conmon[87022]: cluster 2023-11-30T22:57:16.196439+0000 osd.5 (osd.5) 2 : cluster [DBG] purged_snaps scrub ok 2023-11-30T22:57:19.262 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 22:57:18 smithi167 conmon[87022]: audit 2023-11-30T22:57:17.800719+0000 mon.smithi038 (mon.0) 459 : audit [INF] from='osd.6 ' entity='osd.6' cmd='[{"prefix": "osd crush create-or-move", "id": 6, "weight":0.0873, "args": ["host=smithi167", "root=default"]}]': finished 2023-11-30T22:57:19.262 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 22:57:18 smithi167 conmon[87022]: 2023-11-30T22:57:19.263 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 22:57:18 smithi167 conmon[87022]: cluster 2023-11-30T22:57:17.800800+0000 2023-11-30T22:57:19.263 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 22:57:18 smithi167 conmon[87022]: mon.smithi038 (mon.0) 460 : cluster [INF] osd.5 [v2:172.21.15.38:6818/1758214256,v1:172.21.15.38:6819/1758214256] boot 2023-11-30T22:57:19.263 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 22:57:18 smithi167 conmon[87022]: cluster 2023-11-30T22:57: 2023-11-30T22:57:19.263 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 22:57:18 smithi167 conmon[87022]: 17.800834+0000 mon.smithi038 (mon.0) 461 : cluster [DBG] 2023-11-30T22:57:19.263 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 22:57:18 smithi167 conmon[87022]: osdmap e29: 8 total, 6 up, 8 in 2023-11-30T22:57:19.263 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 22:57:18 smithi167 conmon[87022]: audit 2023-11-30T22:57:17.801334 2023-11-30T22:57:19.263 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 22:57:18 smithi167 conmon[87022]: +0000 mon.smithi038 (mon.0) 462 : audit [DBG] from='mgr.14182 172.21.15.38:0/2999689707' entity='mgr.smithi038.ldalxq' cmd=[{"prefix": "osd metadata", "id": 5}]: dispatch 2023-11-30T22:57:19.263 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 22:57:18 smithi167 conmon[87022]: 2023-11-30T22:57:19.263 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 22:57:18 smithi167 conmon[87022]: audit 2023- 2023-11-30T22:57:19.263 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 22:57:18 smithi167 conmon[87022]: 11-30T22:57:17.801664+0000 mon.smithi038 (mon.0) 463 2023-11-30T22:57:19.263 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 22:57:18 smithi167 conmon[87022]: : audit [DBG] from='mgr.14182 172.21.15.38:0/2999689707' entity='mgr.smithi038.ldalxq' cmd=[{"prefix": "osd metadata", "id": 6}]: dispatch 2023-11-30T22:57:19.263 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 22:57:18 smithi167 conmon[87022]: audit 2023-11-30T22:57: 2023-11-30T22:57:19.263 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 22:57:18 smithi167 conmon[87022]: 17.801810+0000 mon.smithi038 (mon.0) 464 : audit 2023-11-30T22:57:19.263 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 22:57:18 smithi167 conmon[87022]: [DBG] from='mgr.14182 172.21.15.38:0/2999689707' entity='mgr.smithi038.ldalxq' cmd=[{"prefix": "osd metadata", "id": 7}]: dispatch 2023-11-30T22:57:19.264 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 22:57:18 smithi167 conmon[87022]: audit 2023-11-30T22:57:17 2023-11-30T22:57:19.264 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 22:57:18 smithi167 conmon[87022]: .805490+0000 mon.smithi038 (mon.0) 465 : audit [DBG] 2023-11-30T22:57:19.264 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 22:57:18 smithi167 conmon[87022]: from='mgr.14182 172.21.15.38:0/2999689707' entity='mgr.smithi038.ldalxq' cmd=[{"prefix": "osd metadata", "id": 6}]: dispatch 2023-11-30T22:57:19.264 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 22:57:18 smithi167 conmon[87022]: cluster 2023-11-30T22:57:18.195831 2023-11-30T22:57:19.264 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 22:57:18 smithi167 conmon[87022]: +0000 mgr.smithi038.ldalxq (mgr.14182) 67 : cluster [DBG] pgmap v66: 1 pgs: 1 active+clean; 0 B data, 1.4 GiB used, 446 GiB / 447 GiB avail 2023-11-30T22:57:19.264 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 22:57:18 smithi167 conmon[87022]: 2023-11-30T22:57:19.274 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:57:18 smithi038 conmon[81956]: cluster 2023-11-30T22:57:16.196394+0000 osd.5 (osd.5) 1 : cluster [DBG] purged_snaps scrub starts 2023-11-30T22:57:19.274 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:57:18 smithi038 conmon[81956]: cluster 2023-11-30T22:57:16.196439+0000 osd.5 (osd.5) 2 : cluster [DBG] purged_snaps scrub ok 2023-11-30T22:57:19.274 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:57:18 smithi038 conmon[81956]: audit 2023-11-30T22:57:17.800719+0000 mon.smithi038 (mon.0) 459 : audit [INF] from='osd.6 ' entity='osd.6' cmd='[{"prefix": "osd crush create-or-move", "id": 6, "weight":0.0873, "args": ["host=smithi167", "root=default"]}]': finished 2023-11-30T22:57:19.274 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:57:18 smithi038 conmon[81956]: cluster 2023-11-30T22:57:17.800800+0000 mon.smithi038 (mon.0) 460 : cluster [INF] osd.5 [v2:172.21.15.38:6818/1758214256,v1:172.21.15.38:6819/1758214256] boot 2023-11-30T22:57:19.274 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:57:18 smithi038 conmon[81956]: cluster 2023-11-30T22:57:17.800834+0000 mon.smithi038 (mon.0) 461 : cluster [DBG] osdmap e29: 8 total, 6 up, 8 in 2023-11-30T22:57:19.274 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:57:18 smithi038 conmon[81956]: audit 2023-11-30T22:57:17.801334+0000 mon.smithi038 (mon.0) 462 : audit [DBG] from='mgr.14182 172.21.15.38:0/2999689707' entity='mgr.smithi038.ldalxq' cmd=[{"prefix": "osd metadata", "id": 5}]: dispatch 2023-11-30T22:57:19.274 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:57:18 smithi038 conmon[81956]: audit 2023-11-30T22:57:17.801664+0000 mon.smithi038 (mon.0) 463 : audit [DBG] from='mgr.14182 172.21.15.38:0/2999689707' entity='mgr.smithi038.ldalxq' cmd=[{"prefix": "osd metadata", "id": 6}]: dispatch 2023-11-30T22:57:19.274 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:57:18 smithi038 conmon[81956]: audit 2023-11-30T22:57:17.801810+0000 mon.smithi038 (mon.0) 464 : audit [DBG] from='mgr.14182 172.21.15.38:0/2999689707' entity='mgr.smithi038.ldalxq' cmd=[{"prefix": "osd metadata", "id": 7}]: dispatch 2023-11-30T22:57:19.274 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:57:18 smithi038 conmon[81956]: audit 2023-11-30T22:57:17.805490+0000 mon.smithi038 (mon.0) 2023-11-30T22:57:19.275 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:57:18 smithi038 conmon[81956]: 465 : audit [DBG] from='mgr.14182 172.21.15.38:0/2999689707' entity='mgr.smithi038.ldalxq' cmd=[{"prefix": "osd metadata", "id": 6}]: dispatch 2023-11-30T22:57:19.275 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:57:18 smithi038 conmon[81956]: cluster 2023-11-30T22:57:18.195831+0000 mgr.smithi038.ldalxq (mgr.14182) 67 : cluster [DBG] pgmap v66: 1 pgs: 1 active+clean; 0 B data, 1.4 GiB used, 446 GiB / 447 GiB avail 2023-11-30T22:57:19.977 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:57:19 smithi038 conmon[81956]: cluster 2023-11-30T22:57:17 2023-11-30T22:57:19.978 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:57:19 smithi038 conmon[81956]: .566798+0000 osd.6 (osd.6) 1 : cluster [DBG] purged_snaps scrub starts 2023-11-30T22:57:19.978 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:57:19 smithi038 conmon[81956]: cluster 2023-11-30T22:57:17.566851+0000 osd.6 (osd.6) 2 : cluster [DBG] purged_snaps scrub ok 2023-11-30T22:57:19.978 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:57:19 smithi038 conmon[81956]: cluster 2023-11-30T22:57:18.807791+0000 mon.smithi038 (mon.0) 466 : cluster [INF] osd.6 [v2:172.21.15.167:6824/1831583000,v1:172.21.15.167:6825/1831583000] boot 2023-11-30T22:57:19.978 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:57:19 smithi038 conmon[81956]: cluster 2023-11-30T22:57:18.807845+0000 mon.smithi038 (mon.0) 467 : cluster [DBG] osdmap e30: 8 total, 7 up, 8 in 2023-11-30T22:57:19.978 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:57:19 smithi038 conmon[81956]: audit 2023-11-30T22:57:18.808246+0000 mon.smithi038 (mon.0) 468 : audit [DBG] from='mgr.14182 172.21.15.38:0/2999689707' entity='mgr.smithi038.ldalxq' cmd=[{"prefix": "osd metadata", "id": 6}]: dispatch 2023-11-30T22:57:19.978 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:57:19 smithi038 conmon[81956]: audit 2023-11-30T22:57:18.808523+0000 mon.smithi038 (mon.0) 469 : audit [DBG] from='mgr.14182 172.21.15.38:0/2999689707' entity='mgr.smithi038.ldalxq' cmd=[{"prefix": "osd metadata", "id": 7}]: dispatch 2023-11-30T22:57:20.262 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 22:57:19 smithi167 conmon[87022]: cluster 2023-11-30T22:57:17.566798+0000 osd.6 (osd.6) 1 : cluster [DBG] purged_snaps scrub starts 2023-11-30T22:57:20.262 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 22:57:19 smithi167 conmon[87022]: cluster 2023-11-30T22:57:17.566851+0000 osd.6 (osd.6) 2 : cluster [DBG] purged_snaps scrub ok 2023-11-30T22:57:20.262 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 22:57:19 smithi167 conmon[87022]: cluster 2023-11-30T22:57:18.807791+0000 mon.smithi038 (mon 2023-11-30T22:57:20.262 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 22:57:19 smithi167 conmon[87022]: .0) 466 : cluster [INF] osd.6 [v2:172.21.15.167:6824/1831583000,v1:172.21.15.167:6825/1831583000] boot 2023-11-30T22:57:20.262 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 22:57:19 smithi167 conmon[87022]: cluster 2023-11 2023-11-30T22:57:20.262 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 22:57:19 smithi167 conmon[87022]: -30T22:57:18.807845+0000 mon.smithi038 (mon.0) 467 : cluster [DBG] 2023-11-30T22:57:20.263 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 22:57:19 smithi167 conmon[87022]: osdmap e30: 8 total, 7 up, 8 in 2023-11-30T22:57:20.263 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 22:57:19 smithi167 conmon[87022]: audit 2023-11-30T22:57:20.263 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 22:57:19 smithi167 conmon[87022]: 2023-11-30T22:57:18.808246+0000 mon.smithi038 (mon.0) 2023-11-30T22:57:20.263 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 22:57:19 smithi167 conmon[87022]: 468 : audit [DBG] from='mgr.14182 172.21.15.38:0/2999689707' entity='mgr.smithi038.ldalxq' cmd=[{"prefix": "osd metadata", "id": 6}]: dispatch 2023-11-30T22:57:20.263 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 22:57:19 smithi167 conmon[87022]: audit 2023-11-30T22:57:18.808523+0000 mon.smithi038 (mon.0) 469 : 2023-11-30T22:57:20.263 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 22:57:19 smithi167 conmon[87022]: audit [DBG] from='mgr.14182 172.21.15.38:0/2999689707' entity='mgr.smithi038.ldalxq' cmd=[{"prefix": "osd metadata", "id": 7}]: dispatch 2023-11-30T22:57:21.024 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:57:20 smithi038 conmon[81956]: cluster 2023-11-30T22:57:19.820432+0000 mon.smithi038 (mon.0) 470 : cluster [DBG] osdmap e31: 8 total, 7 up, 8 in 2023-11-30T22:57:21.024 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:57:20 smithi038 conmon[81956]: audit 2023-11-30T22:57:19.820598+0000 mon.smithi038 (mon.0) 471 : audit [DBG] from='mgr.14182 172.21.15.38:0/2999689707' entity='mgr.smithi038.ldalxq' cmd=[{"prefix": "osd metadata", "id": 7}]: dispatch 2023-11-30T22:57:21.024 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:57:20 smithi038 conmon[81956]: cluster 2023-11-30T22:57:20.196107+0000 mgr.smithi038.ldalxq (mgr.14182) 68 : cluster [DBG] pgmap v69: 1 pgs: 1 active+clean; 0 B data, 2.0 GiB used, 624 GiB / 626 GiB avail 2023-11-30T22:57:21.024 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:57:20 smithi038 conmon[81956]: audit 2023-11-30T22:57:20.520720+0000 mon.smithi038 (mon.0) 472 : audit [INF] from='mgr.14182 172.21.15.38:0/2999689707' entity='mgr.smithi038.ldalxq' 2023-11-30T22:57:21.024 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:57:20 smithi038 conmon[81956]: cephadm 2023-11-30T22:57:20.521595+0000 mgr.smithi038.ldalxq (mgr.14182) 69 : cephadm [INF] Reconfiguring mon.smithi038 (unknown last config time)... 2023-11-30T22:57:21.024 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:57:20 smithi038 conmon[81956]: audit 2023-11-30T22:57:20.521861+0000 mon.smithi038 (mon.0) 473 : audit [INF] from='mgr.14182 172.21.15.38:0/2999689707' entity='mgr.smithi038.ldalxq' cmd=[{"prefix": "auth get", "entity": "mon."}]: dispatch 2023-11-30T22:57:21.024 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:57:20 smithi038 conmon[81956]: audit 2023-11-30T22:57:20.522503+0000 mon.smithi038 (mon.0) 474 : audit [DBG] from='mgr.14182 172.21.15.38:0/2999689707' entity='mgr.smithi038.ldalxq' cmd=[{"prefix": "config get", "who": "mon", "key": "public_network"}]: dispatch 2023-11-30T22:57:21.025 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:57:20 smithi038 conmon[81956]: audit 2023-11-30T22:57:20.523055+0000 mon.smithi038 (mon.0) 475 : audit [DBG] from='mgr.14182 172.21.15.38:0/2999689707' entity='mgr.smithi038.ldalxq' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2023-11-30T22:57:21.025 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:57:20 smithi038 conmon[81956]: cephadm 2023-11-30T22:57:20.523585+0000 mgr.smithi038.ldalxq (mgr.14182) 70 : cephadm [INF] Reconfiguring daemon mon.smithi038 on smithi038 2023-11-30T22:57:21.095 INFO:teuthology.orchestra.run.smithi038.stdout: 2023-11-30T22:57:21.262 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 22:57:20 smithi167 conmon[87022]: cluster 2023-11-30T22:57:19.820432+0000 mon.smithi038 (mon.0) 470 : cluster [DBG] osdmap e31: 8 total, 7 up, 8 in 2023-11-30T22:57:21.262 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 22:57:20 smithi167 conmon[87022]: 2023-11-30T22:57:21.262 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 22:57:20 smithi167 conmon[87022]: audit 2023-11-30T22:57:19.820598+0000 mon.smithi038 (mon.0) 471 : audit [DBG] from='mgr.14182 172.21.15.38:0/2999689707' entity='mgr.smithi038.ldalxq' cmd=[{"prefix": "osd metadata", "id": 7}]: dispatch 2023-11-30T22:57:21.262 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 22:57:20 smithi167 conmon[87022]: cluster 2023-11-30T22:57:20.196107+0000 mgr.smithi038.ldalxq (mgr.14182) 68 : cluster 2023-11-30T22:57:21.262 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 22:57:20 smithi167 conmon[87022]: [DBG] pgmap v69: 1 pgs: 1 active+clean; 0 B data, 2.0 GiB used, 624 GiB / 626 GiB avail 2023-11-30T22:57:21.262 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 22:57:20 smithi167 conmon[87022]: audit 2023-11-30T22:57:20.520720+0000 mon.smithi038 (mon.0) 472 : audit [INF] from='mgr.14182 172.21.15.38:0/2999689707' entity='mgr.smithi038.ldalxq' 2023-11-30T22:57:21.262 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 22:57:20 smithi167 conmon[87022]: cephadm 2023-11-30T22:57:20.521595+0000 mgr.smithi038.ldalxq (mgr.14182) 69 : cephadm [INF] Reconfiguring mon.smithi038 (unknown last config time)... 2023-11-30T22:57:21.263 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 22:57:20 smithi167 conmon[87022]: audit 2023-11-30T22:57:20 2023-11-30T22:57:21.263 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 22:57:20 smithi167 conmon[87022]: .521861+0000 mon.smithi038 (mon.0) 473 : audit [INF] 2023-11-30T22:57:21.263 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 22:57:20 smithi167 conmon[87022]: from='mgr.14182 172.21.15.38:0/2999689707' entity='mgr.smithi038.ldalxq' cmd=[{"prefix": "auth get", "entity": "mon."}]: dispatch 2023-11-30T22:57:21.263 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 22:57:20 smithi167 conmon[87022]: audit 2023-11-30T22:57:21.263 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 22:57:20 smithi167 conmon[87022]: 2023-11-30T22:57:20.522503+0000 mon.smithi038 (mon.0 2023-11-30T22:57:21.263 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 22:57:20 smithi167 conmon[87022]: ) 474 : audit [DBG] from='mgr.14182 172.21.15.38:0/2999689707' entity='mgr.smithi038.ldalxq' cmd=[{"prefix": "config get", "who": "mon", "key": "public_network"}]: dispatch 2023-11-30T22:57:21.263 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 22:57:20 smithi167 conmon[87022]: audit 2023-11-30 2023-11-30T22:57:21.263 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 22:57:20 smithi167 conmon[87022]: T22:57:20.523055+0000 mon.smithi038 (mon.0 2023-11-30T22:57:21.263 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 22:57:20 smithi167 conmon[87022]: ) 475 : audit [DBG] from='mgr.14182 172.21.15.38:0/2999689707' entity='mgr.smithi038.ldalxq' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2023-11-30T22:57:21.263 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 22:57:20 smithi167 conmon[87022]: cephadm 2023-11-30T22 2023-11-30T22:57:21.263 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 22:57:20 smithi167 conmon[87022]: :57:20.523585+0000 mgr.smithi038.ldalxq (mgr.14182) 70 2023-11-30T22:57:21.263 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 22:57:20 smithi167 conmon[87022]: : cephadm [INF] Reconfiguring daemon mon.smithi038 on smithi038 2023-11-30T22:57:21.817 INFO:teuthology.orchestra.run.smithi038.stdout:{"epoch":31,"num_osds":8,"num_up_osds":7,"osd_up_since":1701385038,"num_in_osds":8,"osd_in_since":1701385007,"num_remapped_pgs":0} 2023-11-30T22:57:22.262 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 22:57:21 smithi167 conmon[87022]: audit 2023-11-30T22:57:20.831003+0000 mon.smithi038 (mon.0) 476 : audit [INF] 2023-11-30T22:57:22.262 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 22:57:21 smithi167 conmon[87022]: from='osd.7 [v2:172.21.15.38:6826/2904554847,v1:172.21.15.38:6827/2904554847]' entity='osd.7' cmd=[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["7"]}]: dispatch 2023-11-30T22:57:22.262 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 22:57:21 smithi167 conmon[87022]: audit 2023-11-30T22:57:21.094023+0000 mon.smithi038 (mon.0) 477 : audit [DBG] from='client.? 172.21.15.38:0/4264776621' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2023-11-30T22:57:22.274 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:57:21 smithi038 conmon[81956]: audit 2023-11-30T22:57:20.831003+0000 2023-11-30T22:57:22.274 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:57:21 smithi038 conmon[81956]: mon.smithi038 (mon.0) 476 : audit [INF] from='osd.7 [v2:172.21.15.38:6826/2904554847,v1:172.21.15.38:6827/2904554847]' entity='osd.7' cmd=[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["7"]}]: dispatch 2023-11-30T22:57:22.274 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:57:21 smithi038 conmon[81956]: audit 2023-11-30T22:57:21.094023+0000 mon.smithi038 (mon.0) 477 : audit [DBG] from='client.? 172.21.15.38:0/4264776621' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2023-11-30T22:57:22.818 DEBUG:teuthology.orchestra.run.smithi038:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:0dc074ce0b0b3b4f393f56dd32ef36884ebf45a9 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 3faf8b00-8fd3-11ee-95a2-87774f69a715 -- ceph osd stat -f json 2023-11-30T22:57:23.262 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 22:57:22 smithi167 conmon[87022]: audit 2023-11-30T22:57:21.835753+0000 mon.smithi038 (mon.0) 478 : audit 2023-11-30T22:57:23.262 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 22:57:22 smithi167 conmon[87022]: [INF] from='osd.7 [v2:172.21.15.38:6826/2904554847,v1:172.21.15.38:6827/2904554847]' entity='osd.7' cmd='[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["7"]}]': finished 2023-11-30T22:57:23.262 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 22:57:22 smithi167 conmon[87022]: cluster 2023-11-30T22:57:21.835813+0000 mon.smithi038 (mon.0) 479 : cluster [DBG] osdmap e32: 8 total, 7 up, 8 in 2023-11-30T22:57:23.263 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 22:57:22 smithi167 conmon[87022]: audit 2023-11-30T22:57:21.835924+0000 mon.smithi038 (mon.0) 480 : audit [DBG] from='mgr.14182 172.21.15.38:0/2999689707' entity='mgr.smithi038.ldalxq' cmd=[{"prefix": "osd metadata", "id": 7}]: dispatch 2023-11-30T22:57:23.263 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 22:57:22 smithi167 conmon[87022]: audit 2023-11-30T22:57:21.836245+0000 mon.smithi038 (mon.0) 481 : audit [INF] from='osd.7 [v2:172.21.15.38:6826/2904554847,v1:172.21.15.38:6827/2904554847]' entity='osd.7' cmd=[{"prefix": "osd crush create-or-move", "id": 7, "weight":0.0873, "args": ["host=smithi038", "root=default"]}]: dispatch 2023-11-30T22:57:23.263 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 22:57:22 smithi167 conmon[87022]: audit 2023 2023-11-30T22:57:23.263 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 22:57:22 smithi167 conmon[87022]: -11-30T22:57:21.851726+0000 mon.smithi038 (mon.0) 482 : audit [INF] from='mgr.14182 172.21.15.38:0/2999689707' entity='mgr.smithi038.ldalxq' 2023-11-30T22:57:23.263 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 22:57:22 smithi167 conmon[87022]: cephadm 2023-11-30T22:57:21.852380+0000 mgr.smithi038.ldalxq (mgr.14182) 71 : cephadm 2023-11-30T22:57:23.263 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 22:57:22 smithi167 conmon[87022]: [INF] Reconfiguring mgr.smithi038.ldalxq (unknown last config time)... 2023-11-30T22:57:23.263 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 22:57:22 smithi167 conmon[87022]: audit 2023-11- 2023-11-30T22:57:23.263 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 22:57:22 smithi167 conmon[87022]: 30T22:57:21.852635+0000 mon.smithi038 (mon.0) 483 : audit [INF] from='mgr.14182 172.21.15.38:0/2999689707' entity='mgr.smithi038.ldalxq' cmd=[{"prefix": "auth get-or-create", "entity": "mgr.smithi038.ldalxq", "caps": ["mon", "profile mgr", "osd", "allow *", "mds", "allow *"]}]: dispatch 2023-11-30T22:57:23.264 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 22:57:22 smithi167 conmon[87022]: audit 2023-11-30T22:57:21.853309+0000 mon.smithi038 (mon.0) 484 2023-11-30T22:57:23.264 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 22:57:22 smithi167 conmon[87022]: : audit [DBG] from='mgr.14182 172.21.15.38:0/2999689707' entity='mgr.smithi038.ldalxq' cmd=[{"prefix": "mgr services"}]: dispatch 2023-11-30T22:57:23.264 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 22:57:22 smithi167 conmon[87022]: audit 2023 2023-11-30T22:57:23.264 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 22:57:22 smithi167 conmon[87022]: -11-30T22:57:21.853827+0000 mon.smithi038 (mon.0) 485 : audit [DBG] from='mgr.14182 172.21.15.38:0/2999689707' entity='mgr.smithi038.ldalxq' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2023-11-30T22:57:23.264 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 22:57:22 smithi167 conmon[87022]: cephadm 2023-11-30T22:57:21.854314+0000 2023-11-30T22:57:23.264 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 22:57:22 smithi167 conmon[87022]: mgr.smithi038.ldalxq (mgr.14182) 72 : cephadm [INF] Reconfiguring daemon mgr.smithi038.ldalxq on smithi038 2023-11-30T22:57:23.264 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 22:57:22 smithi167 conmon[87022]: cluster 2023-11-30T22:57 2023-11-30T22:57:23.264 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 22:57:22 smithi167 conmon[87022]: :22.196563+0000 mgr.smithi038.ldalxq (mgr.14182) 73 : cluster [DBG] pgmap v71: 1 pgs: 1 active+clean; 0 B data, 2.0 GiB used, 624 GiB / 626 GiB avail 2023-11-30T22:57:23.274 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:57:22 smithi038 conmon[81956]: audit 2023-11-30T22:57:21.835753+0000 mon.smithi038 (mon.0) 478 : audit [INF] from='osd.7 [v2:172.21.15.38:6826/2904554847,v1:172.21.15.38:6827/2904554847]' entity='osd.7' cmd='[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["7"]}]': finished 2023-11-30T22:57:23.274 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:57:22 smithi038 conmon[81956]: cluster 2023-11-30T22:57:21.835813+0000 mon.smithi038 (mon.0) 479 : cluster [DBG] osdmap e32: 8 total, 7 up, 8 in 2023-11-30T22:57:23.274 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:57:22 smithi038 conmon[81956]: audit 2023-11-30T22:57:21.835924+0000 mon.smithi038 (mon.0) 480 : audit [DBG] from='mgr.14182 172.21.15.38:0/2999689707' entity='mgr.smithi038.ldalxq' cmd=[{"prefix": "osd metadata", "id": 7}]: dispatch 2023-11-30T22:57:23.274 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:57:22 smithi038 conmon[81956]: audit 2023-11-30T22:57:21.836245+0000 mon.smithi038 (mon.0) 481 : audit [INF] from='osd.7 [v2:172.21.15.38:6826/2904554847,v1:172.21.15.38:6827/2904554847]' entity='osd.7' cmd=[{"prefix": "osd crush create-or-move", "id": 7, "weight":0.0873, "args": ["host=smithi038", "root=default"]}]: dispatch 2023-11-30T22:57:23.274 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:57:22 smithi038 conmon[81956]: audit 2023-11-30T22:57:21.851726+0000 mon.smithi038 (mon.0) 482 2023-11-30T22:57:23.274 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:57:22 smithi038 conmon[81956]: : audit [INF] from='mgr.14182 172.21.15.38:0/2999689707' entity='mgr.smithi038.ldalxq' 2023-11-30T22:57:23.274 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:57:22 smithi038 conmon[81956]: cephadm 2023-11-30T22:57:21.852380+0000 mgr.smithi038.ldalxq (mgr.14182) 71 : cephadm [INF] Reconfiguring mgr.smithi038.ldalxq (unknown last config time)... 2023-11-30T22:57:23.274 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:57:22 smithi038 conmon[81956]: audit 2023-11-30T22:57:21.852635+0000 mon.smithi038 (mon.0) 483 : audit [INF] from='mgr.14182 172.21.15.38:0/2999689707' entity='mgr.smithi038.ldalxq' cmd=[{"prefix": "auth get-or-create", "entity": "mgr.smithi038.ldalxq", "caps": ["mon", "profile mgr", "osd", "allow *", "mds", "allow *"]}]: dispatch 2023-11-30T22:57:23.275 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:57:22 smithi038 conmon[81956]: audit 2023-11-30T22:57:21.853309+0000 mon.smithi038 (mon.0) 484 : audit [DBG] from='mgr.14182 172.21.15.38:0/2999689707' entity='mgr.smithi038.ldalxq' cmd=[{"prefix": "mgr services"}]: dispatch 2023-11-30T22:57:23.275 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:57:22 smithi038 conmon[81956]: audit 2023-11-30T22:57:21.853827+0000 mon.smithi038 (mon.0) 485 : audit [DBG] from='mgr.14182 172.21.15.38:0/2999689707' entity='mgr.smithi038.ldalxq' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2023-11-30T22:57:23.275 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:57:22 smithi038 conmon[81956]: cephadm 2023-11-30T22 2023-11-30T22:57:23.275 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:57:22 smithi038 conmon[81956]: :57:21.854314+0000 mgr.smithi038.ldalxq (mgr.14182) 72 : 2023-11-30T22:57:23.275 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:57:22 smithi038 conmon[81956]: cephadm [INF] Reconfiguring daemon mgr.smithi038.ldalxq on smithi038 2023-11-30T22:57:23.275 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:57:22 smithi038 conmon[81956]: cluster 2023-11-30T22:57:23.275 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:57:22 smithi038 conmon[81956]: 2023-11-30T22:57:22.196563+0000 mgr.smithi038.ldalxq 2023-11-30T22:57:23.275 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:57:22 smithi038 conmon[81956]: (mgr.14182) 73 : cluster [DBG] pgmap v71: 1 pgs: 1 active+clean; 0 B data, 2.0 GiB used, 624 GiB / 626 GiB avail 2023-11-30T22:57:24.112 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:57:23 smithi038 conmon[81956]: cluster 2023-11-30T22:57:21.824975+0000 2023-11-30T22:57:24.112 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:57:23 smithi038 conmon[81956]: osd.7 (osd.7) 1 : cluster [DBG] purged_snaps scrub starts 2023-11-30T22:57:24.112 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:57:23 smithi038 conmon[81956]: cluster 2023-11-30T22:57:21.825045+0000 osd.7 (osd.7) 2 : cluster [DBG] purged_snaps scrub ok 2023-11-30T22:57:24.113 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:57:23 smithi038 conmon[81956]: audit 2023-11-30T22:57:22.841426+0000 mon.smithi038 (mon.0) 486 : audit [INF] from='osd.7 [v2:172.21.15.38:6826/2904554847,v1:172.21.15.38:6827/2904554847]' entity='osd.7' cmd='[{"prefix": "osd crush create-or-move", "id": 7, "weight":0.0873, "args": ["host=smithi038", "root=default"]}]': finished 2023-11-30T22:57:24.113 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:57:23 smithi038 conmon[81956]: cluster 2023-11-30T22:57:22.841497+0000 mon.smithi038 (mon.0) 487 : cluster [DBG] osdmap e33: 8 total, 7 up, 8 in 2023-11-30T22:57:24.113 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:57:23 smithi038 conmon[81956]: audit 2023-11-30T22:57:22.842036+0000 mon.smithi038 (mon.0) 488 : audit [DBG] from='mgr.14182 172.21.15.38:0/2999689707' entity='mgr.smithi038.ldalxq' cmd=[{"prefix": "osd metadata", "id": 7}]: dispatch 2023-11-30T22:57:24.113 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:57:23 smithi038 conmon[81956]: audit 2023-11-30T22:57:22.846464+0000 mon.smithi038 (mon.0) 489 : audit [DBG] from='mgr.14182 172.21.15.38:0/2999689707' entity='mgr.smithi038.ldalxq' cmd=[{"prefix": "osd metadata", "id": 7}]: dispatch 2023-11-30T22:57:24.113 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:57:23 smithi038 conmon[81956]: audit 2023-11-30T22:57:23.169374+0000 mon.smithi038 (mon.0) 490 : audit [INF] from='mgr.14182 172.21.15.38:0/2999689707' entity='mgr.smithi038.ldalxq' 2023-11-30T22:57:24.113 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:57:23 smithi038 conmon[81956]: cephadm 2023-11-30T22:57:23.170127+0000 mgr.smithi038.ldalxq (mgr.14182) 74 : cephadm [INF] Reconfiguring alertmanager.smithi038 (dependencies changed)... 2023-11-30T22:57:24.113 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:57:23 smithi038 conmon[81956]: cephadm 2023-11-30T22:57:23.176415+0000 mgr.smithi038.ldalxq (mgr.14182) 75 : cephadm [INF] Reconfiguring daemon alertmanager.smithi038 on smithi038 2023-11-30T22:57:24.262 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 22:57:23 smithi167 conmon[87022]: cluster 2023-11-30T22:57:21.824975+0000 osd.7 (osd.7) 1 : 2023-11-30T22:57:24.262 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 22:57:23 smithi167 conmon[87022]: cluster [DBG] purged_snaps scrub starts 2023-11-30T22:57:24.262 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 22:57:23 smithi167 conmon[87022]: cluster 2023-11-30T22:57:21.825045+0000 osd.7 (osd.7) 2 : cluster [DBG] purged_snaps scrub ok 2023-11-30T22:57:24.262 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 22:57:23 smithi167 conmon[87022]: audit 2023-11-30 2023-11-30T22:57:24.262 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 22:57:23 smithi167 conmon[87022]: T22:57:22.841426+0000 mon.smithi038 (mon.0) 486 : audit [INF] from='osd.7 [v2:172.21.15.38:6826/2904554847,v1:172.21.15.38:6827/2904554847]' entity='osd.7' cmd='[{"prefix": "osd crush create-or-move", "id": 7, "weight":0.0873, "args": ["host=smithi038", "root=default"]}]': finished 2023-11-30T22:57:24.263 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 22:57:23 smithi167 conmon[87022]: cluster 2023-11-30T22:57:22 2023-11-30T22:57:24.263 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 22:57:23 smithi167 conmon[87022]: .841497+0000 mon.smithi038 (mon.0) 487 : cluster [DBG] 2023-11-30T22:57:24.263 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 22:57:23 smithi167 conmon[87022]: osdmap e33: 8 total, 7 up, 8 in 2023-11-30T22:57:24.263 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 22:57:23 smithi167 conmon[87022]: audit 2023-11-30T22:57:22 2023-11-30T22:57:24.263 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 22:57:23 smithi167 conmon[87022]: .842036+0000 mon.smithi038 (mon.0) 488 : audit [DBG] 2023-11-30T22:57:24.263 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 22:57:23 smithi167 conmon[87022]: from='mgr.14182 172.21.15.38:0/2999689707' entity='mgr.smithi038.ldalxq' cmd=[{"prefix": "osd metadata", "id": 7}]: dispatch 2023-11-30T22:57:24.263 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 22:57:23 smithi167 conmon[87022]: audit 2023-11-30T22:57:22. 2023-11-30T22:57:24.263 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 22:57:23 smithi167 conmon[87022]: 846464+0000 mon.smithi038 (mon.0) 489 : audit [DBG] from='mgr.14182 172.21.15.38:0/2999689707' entity='mgr.smithi038.ldalxq' cmd=[{"prefix": "osd metadata", "id": 7}]: dispatch 2023-11-30T22:57:24.263 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 22:57:23 smithi167 conmon[87022]: 2023-11-30T22:57:24.263 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 22:57:23 smithi167 conmon[87022]: audit 2023-11-30T22:57:24.263 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 22:57:23 smithi167 conmon[87022]: 2023-11-30T22:57:23.169374+0000 mon.smithi038 (mon 2023-11-30T22:57:24.263 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 22:57:23 smithi167 conmon[87022]: .0) 490 : audit [INF] from='mgr.14182 172.21.15.38:0/2999689707' entity='mgr.smithi038.ldalxq' 2023-11-30T22:57:24.264 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 22:57:23 smithi167 conmon[87022]: cephadm 2023-11 2023-11-30T22:57:24.264 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 22:57:23 smithi167 conmon[87022]: -30T22:57:23.170127+0000 mgr.smithi038.ldalxq (mgr. 2023-11-30T22:57:24.264 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 22:57:23 smithi167 conmon[87022]: 14182) 74 : cephadm [INF] Reconfiguring alertmanager.smithi038 (dependencies changed)... 2023-11-30T22:57:24.264 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 22:57:23 smithi167 conmon[87022]: cephadm 2023-11- 2023-11-30T22:57:24.264 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 22:57:23 smithi167 conmon[87022]: 30T22:57:23.176415+0000 mgr.smithi038.ldalxq (mgr. 2023-11-30T22:57:24.264 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 22:57:23 smithi167 conmon[87022]: 14182) 75 : cephadm [INF] Reconfiguring daemon alertmanager.smithi038 on smithi038 2023-11-30T22:57:24.821 INFO:teuthology.orchestra.run.smithi038.stdout: 2023-11-30T22:57:25.222 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:57:24 smithi038 conmon[81956]: audit 2023-11-30T22:57:23.849329+0000 mon.smithi038 2023-11-30T22:57:25.223 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:57:24 smithi038 conmon[81956]: (mon.0) 491 : audit [DBG] from='mgr.14182 172.21.15.38:0/2999689707' entity='mgr.smithi038.ldalxq' cmd=[{"prefix": "osd metadata", "id": 7}]: dispatch 2023-11-30T22:57:25.223 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:57:24 smithi038 conmon[81956]: cluster 2023-11-30T22:57:23.857249+0000 mon.smithi038 (mon.0) 492 : cluster [INF] osd.7 [v2:172.21.15.38:6826/2904554847,v1:172.21.15.38:6827/2904554847] boot 2023-11-30T22:57:25.223 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:57:24 smithi038 conmon[81956]: cluster 2023-11-30T22:57:23.857309+0000 mon.smithi038 (mon.0) 493 : cluster [DBG] osdmap e34: 8 total, 8 up, 8 in 2023-11-30T22:57:25.223 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:57:24 smithi038 conmon[81956]: audit 2023-11-30T22:57:23.857436+0000 mon.smithi038 (mon.0) 494 : audit [DBG] from='mgr.14182 172.21.15.38:0/2999689707' entity='mgr.smithi038.ldalxq' cmd=[{"prefix": "osd metadata", "id": 7}]: dispatch 2023-11-30T22:57:25.223 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:57:24 smithi038 conmon[81956]: cluster 2023-11-30T22:57:24.196952+0000 mgr.smithi038.ldalxq (mgr.14182) 76 : cluster [DBG] pgmap v74: 1 pgs: 1 active+clean; 0 B data, 2.0 GiB used, 624 GiB / 626 GiB avail 2023-11-30T22:57:25.223 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:57:24 smithi038 conmon[81956]: audit 2023-11-30T22:57:24.821422+0000 mon.smithi038 (mon.0) 495 : audit [DBG] from='client.? 172.21.15.38:0/3754069255' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2023-11-30T22:57:25.262 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 22:57:24 smithi167 conmon[87022]: audit 2023-11-30T22:57:23.849329+0000 mon.smithi038 (mon.0) 491 : audit [DBG] from='mgr.14182 172.21.15.38:0/2999689707' entity='mgr.smithi038.ldalxq' cmd=[{"prefix": "osd metadata", "id": 7}]: dispatch 2023-11-30T22:57:25.262 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 22:57:24 smithi167 conmon[87022]: 2023-11-30T22:57:25.262 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 22:57:24 smithi167 conmon[87022]: cluster 2023-11-30T22:57:23.857249+0000 mon.smithi038 (mon.0) 492 : cluster [INF] osd.7 [v2:172.21.15.38:6826/2904554847,v1:172.21.15.38:6827/2904554847] boot 2023-11-30T22:57:25.262 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 22:57:24 smithi167 conmon[87022]: cluster 2023-11-30T22:57:23.857309+0000 mon.smithi038 2023-11-30T22:57:25.262 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 22:57:24 smithi167 conmon[87022]: (mon.0) 493 : cluster [DBG] osdmap e34: 8 total, 8 up, 8 in 2023-11-30T22:57:25.262 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 22:57:24 smithi167 conmon[87022]: audit 2023-11-30T22: 2023-11-30T22:57:25.262 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 22:57:24 smithi167 conmon[87022]: 57:23.857436+0000 mon.smithi038 (mon.0) 494 : audit [DBG] from='mgr.14182 172.21.15.38:0/2999689707' entity='mgr.smithi038.ldalxq' cmd=[{"prefix": "osd metadata", "id": 7}]: dispatch 2023-11-30T22:57:25.263 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 22:57:24 smithi167 conmon[87022]: cluster 2023- 2023-11-30T22:57:25.263 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 22:57:24 smithi167 conmon[87022]: 11-30T22:57:24.196952+0000 mgr.smithi038.ldalxq ( 2023-11-30T22:57:25.263 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 22:57:24 smithi167 conmon[87022]: mgr.14182) 76 : cluster [DBG] pgmap v74: 1 pgs: 1 active+clean; 0 B data, 2.0 GiB used, 624 GiB / 626 GiB avail 2023-11-30T22:57:25.263 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 22:57:24 smithi167 conmon[87022]: audit 2023-11- 2023-11-30T22:57:25.263 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 22:57:24 smithi167 conmon[87022]: 30T22:57:24.821422+0000 mon.smithi038 (mon. 2023-11-30T22:57:25.263 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 22:57:24 smithi167 conmon[87022]: 0) 495 : audit [DBG] from='client.? 172.21.15.38:0/3754069255' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2023-11-30T22:57:25.304 INFO:teuthology.orchestra.run.smithi038.stdout:{"epoch":34,"num_osds":8,"num_up_osds":8,"osd_up_since":1701385043,"num_in_osds":8,"osd_in_since":1701385007,"num_remapped_pgs":1} 2023-11-30T22:57:25.304 INFO:tasks.cephadm:Setting up client nodes... 2023-11-30T22:57:25.305 DEBUG:teuthology.orchestra.run.smithi038:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:0dc074ce0b0b3b4f393f56dd32ef36884ebf45a9 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 3faf8b00-8fd3-11ee-95a2-87774f69a715 -- ceph auth get-or-create client.0 mon 'allow *' osd 'allow *' mds 'allow *' mgr 'allow *' 2023-11-30T22:57:26.133 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:57:25 smithi038 conmon[81956]: cluster 2023-11-30T22:57:24.870553+0000 mon.smithi038 (mon.0) 2023-11-30T22:57:26.133 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:57:25 smithi038 conmon[81956]: 496 : cluster [DBG] osdmap e35: 8 total, 8 up, 8 in 2023-11-30T22:57:26.262 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 22:57:25 smithi167 conmon[87022]: cluster 2023-11-30T22:57:24.870553+0000 mon.smithi038 (mon.0) 496 : cluster 2023-11-30T22:57:26.262 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 22:57:25 smithi167 conmon[87022]: [DBG] osdmap e35: 8 total, 8 up, 8 in 2023-11-30T22:57:27.139 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:57:26 smithi038 conmon[81956]: cluster 2023-11-30T22:57:25.886037+0000 2023-11-30T22:57:27.139 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:57:26 smithi038 conmon[81956]: mon.smithi038 (mon.0) 497 : cluster [DBG] osdmap e36: 8 total, 8 up, 8 in 2023-11-30T22:57:27.140 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:57:26 smithi038 conmon[81956]: cluster 2023-11-30T22:57:26.197269+0000 mgr.smithi038.ldalxq (mgr.14182) 77 : cluster [DBG] pgmap v77: 1 pgs: 1 remapped+peering; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2023-11-30T22:57:27.262 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 22:57:26 smithi167 conmon[87022]: cluster 2023-11-30T22:57:25.886037+0000 mon.smithi038 (mon.0) 497 : cluster [DBG] osdmap e36: 8 total, 8 up, 8 in 2023-11-30T22:57:27.262 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 22:57:26 smithi167 conmon[87022]: cluster 2023-11-30T22:57:26.197269+0000 mgr.smithi038.ldalxq (mgr.14182) 77 : cluster [DBG] pgmap v77: 1 pgs: 1 remapped+peering; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2023-11-30T22:57:27.312 INFO:teuthology.orchestra.run.smithi038.stdout:[client.0] 2023-11-30T22:57:27.312 INFO:teuthology.orchestra.run.smithi038.stdout: key = AQBXE2ll/ydEEhAA0ycW7H7l2wP1Vb3QHQdUmg== 2023-11-30T22:57:27.853 DEBUG:teuthology.orchestra.run.smithi038:> set -ex 2023-11-30T22:57:27.853 DEBUG:teuthology.orchestra.run.smithi038:> sudo dd of=/etc/ceph/ceph.client.0.keyring 2023-11-30T22:57:27.853 DEBUG:teuthology.orchestra.run.smithi038:> sudo chmod 0644 /etc/ceph/ceph.client.0.keyring 2023-11-30T22:57:27.899 DEBUG:teuthology.orchestra.run.smithi167:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:0dc074ce0b0b3b4f393f56dd32ef36884ebf45a9 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 3faf8b00-8fd3-11ee-95a2-87774f69a715 -- ceph auth get-or-create client.1 mon 'allow *' osd 'allow *' mds 'allow *' mgr 'allow *' 2023-11-30T22:57:28.262 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 22:57:27 smithi167 conmon[87022]: audit 2023-11-30T22:57:27.306287+0000 mon.smithi038 (mon.0) 498 : audit [INF] from='client.? 172.21.15.38:0/156874909' entity='client.admin' cmd=[{"prefix": "auth get-or-create", "entity": "client.0", "caps": ["mon", "allow *", "osd", "allow *", "mds", "allow *", "mgr", "allow *"]}]: dispatch 2023-11-30T22:57:28.262 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 22:57:27 smithi167 conmon[87022]: audit 2023-11-30T22:57:27.311128+0000 mon.smithi038 (mon.0) 499 : audit [INF] from='client.? 172.21.15.38:0/156874909' entity='client.admin' cmd='[{"prefix": "auth get-or-create", "entity": "client.0", "caps": ["mon", "allow *", "osd", "allow *", "mds", "allow *", "mgr", "allow *"]}]': finished 2023-11-30T22:57:28.274 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:57:27 smithi038 conmon[81956]: audit 2023-11-30T22: 2023-11-30T22:57:28.274 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:57:27 smithi038 conmon[81956]: 57:27.306287+0000 mon.smithi038 (mon.0) 498 : audit [INF] from='client.? 172.21.15.38:0/156874909' entity='client.admin' cmd=[{"prefix": "auth get-or-create", "entity": "client.0", "caps": ["mon", "allow *", "osd", "allow *", "mds", "allow *", "mgr", "allow *"]}]: dispatch 2023-11-30T22:57:28.274 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:57:27 smithi038 conmon[81956]: audit 2023-11-30T22:57:27.311128+0000 mon.smithi038 (mon.0) 499 : audit [INF] from='client.? 172.21.15.38:0/156874909' entity='client.admin' cmd='[{"prefix": "auth get-or-create", "entity": "client.0", "caps": ["mon", "allow *", "osd", "allow *", "mds", "allow *", "mgr", "allow *"]}]': finished 2023-11-30T22:57:29.774 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:57:29 smithi038 conmon[81956]: cluster 2023-11-30T22:57:28.197912+0000 2023-11-30T22:57:29.774 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:57:29 smithi038 conmon[81956]: mgr.smithi038.ldalxq (mgr.14182) 78 : cluster [DBG] pgmap v78: 1 pgs: 1 remapped+peering; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2023-11-30T22:57:29.774 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:57:29 smithi038 conmon[81956]: audit 2023-11-30T22:57:28.511085+0000 mon.smithi038 (mon.0) 500 : audit [INF] from='mgr.14182 172.21.15.38:0/2999689707' entity='mgr.smithi038.ldalxq' 2023-11-30T22:57:29.774 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:57:29 smithi038 conmon[81956]: cephadm 2023-11-30T22:57:28.511690+0000 mgr.smithi038.ldalxq (mgr.14182) 79 : cephadm [INF] Reconfiguring crash.smithi038 (monmap changed)... 2023-11-30T22:57:29.774 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:57:29 smithi038 conmon[81956]: audit 2023-11-30T22:57:28.511959+0000 mon.smithi038 (mon.0) 501 : audit [INF] from='mgr.14182 172.21.15.38:0/2999689707' entity='mgr.smithi038.ldalxq' cmd=[{"prefix": "auth get-or-create", "entity": "client.crash.smithi038", "caps": ["mon", "profile crash", "mgr", "profile crash"]}]: dispatch 2023-11-30T22:57:29.774 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:57:29 smithi038 conmon[81956]: audit 2023-11-30T22 2023-11-30T22:57:29.774 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:57:29 smithi038 conmon[81956]: :57:28.512708+0000 mon.smithi038 (mon.0) 502 : audit [DBG] from='mgr.14182 172.21.15.38:0/2999689707' entity='mgr.smithi038.ldalxq' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2023-11-30T22:57:29.774 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:57:29 smithi038 conmon[81956]: cephadm 2023-11-30T22 2023-11-30T22:57:29.774 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:57:29 smithi038 conmon[81956]: :57:28.513252+0000 mgr.smithi038.ldalxq (mgr.14182) 80 2023-11-30T22:57:29.774 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:57:29 smithi038 conmon[81956]: : cephadm [INF] Reconfiguring daemon crash.smithi038 on smithi038 2023-11-30T22:57:30.012 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 22:57:29 smithi167 conmon[87022]: cluster 2023-11-30T22:57:28.197912+0000 mgr.smithi038.ldalxq (mgr.14182) 78 : cluster [DBG] pgmap v78: 1 pgs: 1 remapped+peering; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2023-11-30T22:57:30.012 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 22:57:29 smithi167 conmon[87022]: audit 2023-11-30T22:57:28.511085+0000 mon.smithi038 (mon.0) 500 : audit [INF] from='mgr.14182 172.21.15.38:0/2999689707' entity='mgr.smithi038.ldalxq' 2023-11-30T22:57:30.012 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 22:57:29 smithi167 conmon[87022]: cephadm 2023-11-30T22:57:28.511690+0000 mgr.smithi038.ldalxq (mgr.14182) 79 : cephadm [INF] Reconfiguring crash.smithi038 (monmap changed)... 2023-11-30T22:57:30.012 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 22:57:29 smithi167 conmon[87022]: audit 2023-11-30T22:57:28.511959+0000 mon.smithi038 (mon.0) 501 : audit [INF] from='mgr.14182 172.21.15.38:0/2999689707' entity='mgr.smithi038.ldalxq' cmd=[{"prefix": "auth get-or-create", "entity": "client.crash.smithi038", "caps": ["mon", "profile crash", "mgr", "profile crash"]}]: dispatch 2023-11-30T22:57:30.012 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 22:57:29 smithi167 conmon[87022]: audit 2023-11-30T22:57:28.512708+0000 mon.smithi038 (mon.0) 502 : audit [DBG] from='mgr.14182 172.21.15.38:0/2999689707' entity='mgr.smithi038.ldalxq' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2023-11-30T22:57:30.012 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 22:57:29 smithi167 conmon[87022]: cephadm 2023-11-30T22:57:28.513252+0000 mgr.smithi038.ldalxq (mgr.14182) 80 : cephadm [INF] Reconfiguring daemon crash.smithi038 on smithi038 2023-11-30T22:57:30.047 INFO:teuthology.orchestra.run.smithi167.stdout:[client.1] 2023-11-30T22:57:30.047 INFO:teuthology.orchestra.run.smithi167.stdout: key = AQBaE2llpQKUAhAAFildV5X+T5IJdldpUylKVw== 2023-11-30T22:57:30.635 DEBUG:teuthology.orchestra.run.smithi167:> set -ex 2023-11-30T22:57:30.636 DEBUG:teuthology.orchestra.run.smithi167:> sudo dd of=/etc/ceph/ceph.client.1.keyring 2023-11-30T22:57:30.636 DEBUG:teuthology.orchestra.run.smithi167:> sudo chmod 0644 /etc/ceph/ceph.client.1.keyring 2023-11-30T22:57:30.674 DEBUG:teuthology.orchestra.run.smithi038:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:0dc074ce0b0b3b4f393f56dd32ef36884ebf45a9 shell --fsid 3faf8b00-8fd3-11ee-95a2-87774f69a715 -- ceph osd dump --format=json 2023-11-30T22:57:31.012 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 22:57:30 smithi167 conmon[87022]: audit 2023-11-30T22:57:29.716561+0000 mon.smithi038 (mon.0) 503 : audit [INF] 2023-11-30T22:57:31.012 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 22:57:30 smithi167 conmon[87022]: from='mgr.14182 172.21.15.38:0/2999689707' entity='mgr.smithi038.ldalxq' 2023-11-30T22:57:31.012 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 22:57:30 smithi167 conmon[87022]: cephadm 2023-11-30T22:57:29.717237+0000 mgr.smithi038.ldalxq (mgr.14182) 81 : cephadm [INF] Reconfiguring grafana.smithi038 (dependencies changed)... 2023-11-30T22:57:31.012 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 22:57:30 smithi167 conmon[87022]: cephadm 2023-11-30T22:57:29.749112+0000 mgr.smithi038.ldalxq (mgr.14182) 82 : cephadm [INF] Reconfiguring daemon grafana.smithi038 on smithi038 2023-11-30T22:57:31.012 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 22:57:30 smithi167 conmon[87022]: audit 2023-11-30T22:57:30.042500+0000 mon.smithi167 (mon.1) 19 : audit [INF] from='client.? 172.21.15.167:0/218349521' entity='client.admin' cmd=[{"prefix": "auth get-or-create", "entity": "client.1", "caps": ["mon", "allow *", "osd", "allow *", "mds", "allow *", "mgr", "allow *"]}]: dispatch 2023-11-30T22:57:31.012 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 22:57:30 smithi167 conmon[87022]: audit 2023-11-30T22:57:30.043058+0000 mon.smithi038 (mon.0) 504 : 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-11-30T22:57:31.012 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 22:57:30 smithi167 conmon[87022]: audit 2023-11-30T22:57:30.046481+0000 mon.smithi038 (mon.0) 505 : 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-11-30T22:57:31.012 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 22:57:30 smithi167 conmon[87022]: cluster 2023-11-30T22:57:30.198343+0000 mgr.smithi038.ldalxq (mgr.14182) 83 : cluster [DBG] pgmap v79: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2023-11-30T22:57:31.024 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:57:30 smithi038 conmon[81956]: audit 2023-11-30T22:57:29.716561+0000 mon.smithi038 (mon.0) 503 : 2023-11-30T22:57:31.024 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:57:30 smithi038 conmon[81956]: audit [INF] from='mgr.14182 172.21.15.38:0/2999689707' entity='mgr.smithi038.ldalxq' 2023-11-30T22:57:31.024 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:57:30 smithi038 conmon[81956]: cephadm 2023-11-30T22:57:29.717237+0000 mgr.smithi038.ldalxq (mgr.14182) 81 : cephadm [INF] Reconfiguring grafana.smithi038 (dependencies changed)... 2023-11-30T22:57:31.024 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:57:30 smithi038 conmon[81956]: cephadm 2023-11-30T22:57:29.749112+0000 mgr.smithi038.ldalxq (mgr.14182) 82 : cephadm [INF] Reconfiguring daemon grafana.smithi038 on smithi038 2023-11-30T22:57:31.024 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:57:30 smithi038 conmon[81956]: audit 2023-11-30T22:57:30.042500+0000 mon.smithi167 (mon.1) 19 : audit [INF] from='client.? 172.21.15.167:0/218349521' entity='client.admin' cmd=[{"prefix": "auth get-or-create", "entity": "client.1", "caps": ["mon", "allow *", "osd", "allow *", "mds", "allow *", "mgr", "allow *"]}]: dispatch 2023-11-30T22:57:31.024 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:57:30 smithi038 conmon[81956]: audit 2023-11-30T22:57:30.043058+0000 mon.smithi038 (mon.0) 504 : 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-11-30T22:57:31.024 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:57:30 smithi038 conmon[81956]: audit 2023-11-30T22:57:30.046481+0000 mon.smithi038 (mon.0) 505 : 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-11-30T22:57:31.024 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:57:30 smithi038 conmon[81956]: cluster 2023-11-30T22:57:30.198343+0000 mgr.smithi038.ldalxq (mgr.14182) 83 : cluster [DBG] pgmap v79: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2023-11-30T22:57:31.814 INFO:teuthology.orchestra.run.smithi038.stderr:Inferring config /var/lib/ceph/3faf8b00-8fd3-11ee-95a2-87774f69a715/mon.smithi038/config 2023-11-30T22:57:33.478 INFO:teuthology.orchestra.run.smithi038.stdout: 2023-11-30T22:57:33.479 INFO:teuthology.orchestra.run.smithi038.stdout:{"epoch":36,"fsid":"3faf8b00-8fd3-11ee-95a2-87774f69a715","created":"2023-11-30T22:54:01.397506+0000","modified":"2023-11-30T22:57:25.869361+0000","last_up_change":"2023-11-30T22:57:23.843473+0000","last_in_change":"2023-11-30T22:56:47.742886+0000","flags":"sortbitwise,recovery_deletes,purged_snapdirs,pglog_hardlimit","flags_num":5799936,"flags_set":["pglog_hardlimit","purged_snapdirs","recovery_deletes","sortbitwise"],"crush_version":16,"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-11-30T22:57:10.238023+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":"25","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":"79c367f7-9a0b-487b-9b90-edbd237aaf4f","up":1,"in":1,"weight":1,"primary_affinity":1,"last_clean_begin":0,"last_clean_end":0,"up_from":16,"up_thru":34,"down_at":0,"lost_at":0,"public_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.167:6800","nonce":3313098133},{"type":"v1","addr":"172.21.15.167:6801","nonce":3313098133}]},"cluster_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.167:6802","nonce":3313098133},{"type":"v1","addr":"172.21.15.167:6803","nonce":3313098133}]},"heartbeat_back_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.167:6806","nonce":3313098133},{"type":"v1","addr":"172.21.15.167:6807","nonce":3313098133}]},"heartbeat_front_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.167:6804","nonce":3313098133},{"type":"v1","addr":"172.21.15.167:6805","nonce":3313098133}]},"public_addr":"172.21.15.167:6801/3313098133","cluster_addr":"172.21.15.167:6803/3313098133","heartbeat_back_addr":"172.21.15.167:6807/3313098133","heartbeat_front_addr":"172.21.15.167:6805/3313098133","state":["exists","up"]},{"osd":1,"uuid":"5ef29b01-28fc-48df-9975-2e960c2ab7af","up":1,"in":1,"weight":1,"primary_affinity":1,"last_clean_begin":0,"last_clean_end":0,"up_from":17,"up_thru":23,"down_at":0,"lost_at":0,"public_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.38:6802","nonce":2856563043},{"type":"v1","addr":"172.21.15.38:6803","nonce":2856563043}]},"cluster_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.38:6804","nonce":2856563043},{"type":"v1","addr":"172.21.15.38:6805","nonce":2856563043}]},"heartbeat_back_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.38:6808","nonce":2856563043},{"type":"v1","addr":"172.21.15.38:6809","nonce":2856563043}]},"heartbeat_front_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.38:6806","nonce":2856563043},{"type":"v1","addr":"172.21.15.38:6807","nonce":2856563043}]},"public_addr":"172.21.15.38:6803/2856563043","cluster_addr":"172.21.15.38:6805/2856563043","heartbeat_back_addr":"172.21.15.38:6809/2856563043","heartbeat_front_addr":"172.21.15.38:6807/2856563043","state":["exists","up"]},{"osd":2,"uuid":"edc6eee3-f74b-4b65-9018-f68330f9015d","up":1,"in":1,"weight":1,"primary_affinity":1,"last_clean_begin":0,"last_clean_end":0,"up_from":21,"up_thru":0,"down_at":0,"lost_at":0,"public_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.167:6808","nonce":1490848185},{"type":"v1","addr":"172.21.15.167:6809","nonce":1490848185}]},"cluster_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.167:6810","nonce":1490848185},{"type":"v1","addr":"172.21.15.167:6811","nonce":1490848185}]},"heartbeat_back_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.167:6814","nonce":1490848185},{"type":"v1","addr":"172.21.15.167:6815","nonce":1490848185}]},"heartbeat_front_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.167:6812","nonce":1490848185},{"type":"v1","addr":"172.21.15.167:6813","nonce":1490848185}]},"public_addr":"172.21.15.167:6809/1490848185","cluster_addr":"172.21.15.167:6811/1490848185","heartbeat_back_addr":"172.21.15.167:6815/1490848185","heartbeat_front_addr":"172.21.15.167:6813/1490848185","state":["exists","up"]},{"osd":3,"uuid":"3752cef2-4bce-4fc6-a8ba-65fea2d4ed1f","up":1,"in":1,"weight":1,"primary_affinity":1,"last_clean_begin":0,"last_clean_end":0,"up_from":23,"up_thru":0,"down_at":0,"lost_at":0,"public_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.38:6810","nonce":913475055},{"type":"v1","addr":"172.21.15.38:6811","nonce":913475055}]},"cluster_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.38:6812","nonce":913475055},{"type":"v1","addr":"172.21.15.38:6813","nonce":913475055}]},"heartbeat_back_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.38:6816","nonce":913475055},{"type":"v1","addr":"172.21.15.38:6817","nonce":913475055}]},"heartbeat_front_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.38:6814","nonce":913475055},{"type":"v1","addr":"172.21.15.38:6815","nonce":913475055}]},"public_addr":"172.21.15.38:6811/913475055","cluster_addr":"172.21.15.38:6813/913475055","heartbeat_back_addr":"172.21.15.38:6817/913475055","heartbeat_front_addr":"172.21.15.38:6815/913475055","state":["exists","up"]},{"osd":4,"uuid":"e351328e-d914-457f-ab87-5f63b9915bed","up":1,"in":1,"weight":1,"primary_affinity":1,"last_clean_begin":0,"last_clean_end":0,"up_from":26,"up_thru":0,"down_at":0,"lost_at":0,"public_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.167:6816","nonce":3515352043},{"type":"v1","addr":"172.21.15.167:6817","nonce":3515352043}]},"cluster_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.167:6818","nonce":3515352043},{"type":"v1","addr":"172.21.15.167:6819","nonce":3515352043}]},"heartbeat_back_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.167:6822","nonce":3515352043},{"type":"v1","addr":"172.21.15.167:6823","nonce":3515352043}]},"heartbeat_front_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.167:6820","nonce":3515352043},{"type":"v1","addr":"172.21.15.167:6821","nonce":3515352043}]},"public_addr":"172.21.15.167:6817/3515352043","cluster_addr":"172.21.15.167:6819/3515352043","heartbeat_back_addr":"172.21.15.167:6823/3515352043","heartbeat_front_addr":"172.21.15.167:6821/3515352043","state":["exists","up"]},{"osd":5,"uuid":"ffffbf3d-c0d6-4c78-a79e-0f157f158363","up":1,"in":1,"weight":1,"primary_affinity":1,"last_clean_begin":0,"last_clean_end":0,"up_from":29,"up_thru":0,"down_at":0,"lost_at":0,"public_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.38:6818","nonce":1758214256},{"type":"v1","addr":"172.21.15.38:6819","nonce":1758214256}]},"cluster_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.38:6820","nonce":1758214256},{"type":"v1","addr":"172.21.15.38:6821","nonce":1758214256}]},"heartbeat_back_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.38:6824","nonce":1758214256},{"type":"v1","addr":"172.21.15.38:6825","nonce":1758214256}]},"heartbeat_front_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.38:6822","nonce":1758214256},{"type":"v1","addr":"172.21.15.38:6823","nonce":1758214256}]},"public_addr":"172.21.15.38:6819/1758214256","cluster_addr":"172.21.15.38:6821/1758214256","heartbeat_back_addr":"172.21.15.38:6825/1758214256","heartbeat_front_addr":"172.21.15.38:6823/1758214256","state":["exists","up"]},{"osd":6,"uuid":"d12fbc72-890a-496d-aae6-48a205a3f235","up":1,"in":1,"weight":1,"primary_affinity":1,"last_clean_begin":0,"last_clean_end":0,"up_from":30,"up_thru":0,"down_at":0,"lost_at":0,"public_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.167:6824","nonce":1831583000},{"type":"v1","addr":"172.21.15.167:6825","nonce":1831583000}]},"cluster_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.167:6826","nonce":1831583000},{"type":"v1","addr":"172.21.15.167:6827","nonce":1831583000}]},"heartbeat_back_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.167:6830","nonce":1831583000},{"type":"v1","addr":"172.21.15.167:6831","nonce":1831583000}]},"heartbeat_front_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.167:6828","nonce":1831583000},{"type":"v1","addr":"172.21.15.167:6829","nonce":1831583000}]},"public_addr":"172.21.15.167:6825/1831583000","cluster_addr":"172.21.15.167:6827/1831583000","heartbeat_back_addr":"172.21.15.167:6831/1831583000","heartbeat_front_addr":"172.21.15.167:6829/1831583000","state":["exists","up"]},{"osd":7,"uuid":"e2713078-6748-4b3c-9b03-c18369bb2b3d","up":1,"in":1,"weight":1,"primary_affinity":1,"last_clean_begin":0,"last_clean_end":0,"up_from":34,"up_thru":35,"down_at":0,"lost_at":0,"public_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.38:6826","nonce":2904554847},{"type":"v1","addr":"172.21.15.38:6827","nonce":2904554847}]},"cluster_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.38:6828","nonce":2904554847},{"type":"v1","addr":"172.21.15.38:6829","nonce":2904554847}]},"heartbeat_back_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.38:6832","nonce":2904554847},{"type":"v1","addr":"172.21.15.38:6833","nonce":2904554847}]},"heartbeat_front_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.38:6830","nonce":2904554847},{"type":"v1","addr":"172.21.15.38:6831","nonce":2904554847}]},"public_addr":"172.21.15.38:6827/2904554847","cluster_addr":"172.21.15.38:6829/2904554847","heartbeat_back_addr":"172.21.15.38:6833/2904554847","heartbeat_front_addr":"172.21.15.38:6831/2904554847","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-11-30T22:57:03.006940+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-11-30T22:57:04.162452+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-11-30T22:57:08.008155+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-11-30T22:57:10.744541+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-11-30T22:57:12.819370+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-11-30T22:57:16.196441+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-11-30T22:57:17.566854+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-11-30T22:57:21.825049+0000","dead_epoch":0}],"pg_upmap":[],"pg_upmap_items":[],"pg_temp":[],"primary_temp":[],"blocklist":{"172.21.15.38:0/2636861943":"2023-12-01T22:55:42.173954+0000","172.21.15.38:6800/1169858699":"2023-12-01T22:55:42.173954+0000","172.21.15.38:0/888972314":"2023-12-01T22:55:42.173954+0000","172.21.15.38:0/2064425667":"2023-12-01T22:54:56.797200+0000","172.21.15.38:6801/1982733063":"2023-12-01T22:54:56.797200+0000","172.21.15.38:6801/1169858699":"2023-12-01T22:55:42.173954+0000","172.21.15.38:6800/1982733063":"2023-12-01T22:54:56.797200+0000","172.21.15.38:0/3958299474":"2023-12-01T22:54:56.797200+0000","172.21.15.38:0/3301221646":"2023-12-01T22:54:32.328905+0000","172.21.15.38:0/1866869556":"2023-12-01T22:54:32.328905+0000","172.21.15.38:6800/3868205158":"2023-12-01T22:54:32.328905+0000","172.21.15.38:6801/3868205158":"2023-12-01T22:54:32.328905+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-11-30T22:57:33.505 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:57:33 smithi038 conmon[81956]: cluster 2023-11-30T22:57:32.198646+0000 2023-11-30T22:57:33.505 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:57:33 smithi038 conmon[81956]: mgr.smithi038.ldalxq (mgr.14182) 84 : cluster [DBG] pgmap v80: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2023-11-30T22:57:33.512 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 22:57:33 smithi167 conmon[87022]: cluster 2023-11-30T22:57:32.198646+0000 mgr.smithi038.ldalxq (mgr.14182) 84 : cluster [DBG] pgmap v80: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2023-11-30T22:57:33.512 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 22:57:33 smithi167 conmon[87022]: 2023-11-30T22:57:33.978 INFO:tasks.cephadm.ceph_manager.ceph:[{'pool': 1, 'pool_name': 'device_health_metrics', 'create_time': '2023-11-30T22:57:10.238023+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': '25', '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-11-30T22:57:33.979 DEBUG:teuthology.orchestra.run.smithi038:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:0dc074ce0b0b3b4f393f56dd32ef36884ebf45a9 shell --fsid 3faf8b00-8fd3-11ee-95a2-87774f69a715 -- ceph osd pool get device_health_metrics pg_num 2023-11-30T22:57:34.514 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 22:57:34 smithi167 conmon[87022]: audit 2023-11-30T22:57:33.476297+0000 mon.smithi038 (mon.0) 506 : audit [DBG] from='client.? 172.21.15.38:0/3092347810' entity='client.admin' cmd=[{"prefix": "osd dump", "format": "json"}]: dispatch 2023-11-30T22:57:34.524 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:57:34 smithi038 conmon[81956]: audit 2023-11-30T22:57:33.476297+0000 mon.smithi038 (mon 2023-11-30T22:57:34.524 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:57:34 smithi038 conmon[81956]: .0) 506 : audit [DBG] from='client.? 172.21.15.38:0/3092347810' entity='client.admin' cmd=[{"prefix": "osd dump", "format": "json"}]: dispatch 2023-11-30T22:57:34.648 INFO:teuthology.orchestra.run.smithi038.stderr:Inferring config /var/lib/ceph/3faf8b00-8fd3-11ee-95a2-87774f69a715/mon.smithi038/config 2023-11-30T22:57:35.524 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:57:35 smithi038 conmon[81956]: cluster 2023-11-30T22:57:34. 2023-11-30T22:57:35.524 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:57:35 smithi038 conmon[81956]: 198975+0000 mgr.smithi038.ldalxq (mgr.14182) 85 : cluster [DBG] pgmap v81: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2023-11-30T22:57:35.524 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:57:35 smithi038 conmon[81956]: audit 2023-11-30T22:57:34.273512+0000 mon.smithi038 (mon.0) 507 : audit [INF] from='mgr.14182 172.21.15.38:0/2999689707' entity='mgr.smithi038.ldalxq' 2023-11-30T22:57:35.524 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:57:35 smithi038 conmon[81956]: cephadm 2023-11-30T22:57:34.274334+0000 mgr.smithi038.ldalxq (mgr.14182) 86 : cephadm [INF] Reconfiguring prometheus.smithi038 (dependencies changed)... 2023-11-30T22:57:35.524 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:57:35 smithi038 conmon[81956]: cephadm 2023-11-30T22:57:34.277778+0000 mgr.smithi038.ldalxq (mgr.14182) 87 : cephadm [INF] Reconfiguring daemon prometheus.smithi038 on smithi038 2023-11-30T22:57:35.762 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 22:57:35 smithi167 conmon[87022]: cluster 2023-11-30T22:57:34.198975+0000 mgr.smithi038.ldalxq (mgr.14182) 85 2023-11-30T22:57:35.762 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 22:57:35 smithi167 conmon[87022]: : cluster [DBG] pgmap v81: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2023-11-30T22:57:35.762 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 22:57:35 smithi167 conmon[87022]: audit 2023-11-30T22:57:34.273512+0000 mon.smithi038 (mon.0) 507 : audit [INF] from='mgr.14182 172.21.15.38:0/2999689707' entity='mgr.smithi038.ldalxq' 2023-11-30T22:57:35.762 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 22:57:35 smithi167 conmon[87022]: cephadm 2023-11-30T22:57 2023-11-30T22:57:35.762 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 22:57:35 smithi167 conmon[87022]: :34.274334+0000 mgr.smithi038.ldalxq (mgr.14182) 86 : cephadm [INF] Reconfiguring prometheus.smithi038 (dependencies changed)... 2023-11-30T22:57:35.762 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 22:57:35 smithi167 conmon[87022]: cephadm 2023-11-30T22:57:34.277778+0000 mgr.smithi038.ldalxq (mgr.14182) 87 : cephadm [INF] Reconfiguring daemon prometheus.smithi038 on smithi038 2023-11-30T22:57:37.015 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 22:57:36 smithi167 conmon[87022]: cluster 2023-11-30T22:57:36.199331+0000 mgr.smithi038.ldalxq (mgr.14182) 88 : cluster [DBG] pgmap v82: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2023-11-30T22:57:37.027 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:57:36 smithi038 conmon[81956]: cluster 2023-11-30T22:57:36.199331+0000 mgr.smithi038.ldalxq (mgr.14182) 88 : cluster [DBG] pgmap v82: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2023-11-30T22:57:37.223 INFO:teuthology.orchestra.run.smithi038.stdout:pg_num: 1 2023-11-30T22:57:37.761 INFO:tasks.ceph:Waiting until ceph daemons up and pgs clean... 2023-11-30T22:57:37.761 INFO:tasks.cephadm.ceph_manager.ceph:waiting for mgr available 2023-11-30T22:57:37.761 DEBUG:teuthology.orchestra.run.smithi038:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:0dc074ce0b0b3b4f393f56dd32ef36884ebf45a9 shell --fsid 3faf8b00-8fd3-11ee-95a2-87774f69a715 -- ceph mgr dump --format=json 2023-11-30T22:57:38.012 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 22:57:37 smithi167 conmon[87022]: audit 2023-11-30T22:57:37.222833+0000 mon.smithi038 (mon.0) 508 : audit [DBG] from='client.? 172.21.15.38:0/4000859015' entity='client.admin' cmd=[{"prefix": "osd pool get", "pool": "device_health_metrics", "var": "pg_num"}]: dispatch 2023-11-30T22:57:38.013 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 22:57:37 smithi167 conmon[87022]: 2023-11-30T22:57:38.024 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:57:37 smithi038 conmon[81956]: audit 2023-11-30T22:57:37.222833+0000 2023-11-30T22:57:38.024 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:57:37 smithi038 conmon[81956]: mon.smithi038 (mon.0) 508 : audit [DBG] from='client.? 172.21.15.38:0/4000859015' entity='client.admin' cmd=[{"prefix": "osd pool get", "pool": "device_health_metrics", "var": "pg_num"}]: dispatch 2023-11-30T22:57:38.378 INFO:teuthology.orchestra.run.smithi038.stderr:Inferring config /var/lib/ceph/3faf8b00-8fd3-11ee-95a2-87774f69a715/mon.smithi038/config 2023-11-30T22:57:39.007 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:57:38 smithi038 conmon[81956]: cluster 2023-11-30T22:57:38.199791+0000 mgr.smithi038.ldalxq (mgr 2023-11-30T22:57:39.007 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:57:38 smithi038 conmon[81956]: .14182) 89 : cluster [DBG] pgmap v83: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2023-11-30T22:57:39.262 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 22:57:38 smithi167 conmon[87022]: cluster 2023-11-30T22:57:38.199791+0000 mgr.smithi038.ldalxq (mgr.14182) 89 : cluster [DBG] pgmap v83: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2023-11-30T22:57:39.873 INFO:teuthology.orchestra.run.smithi038.stdout: 2023-11-30T22:57:39.962 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 22:57:39 smithi167 conmon[87022]: audit 2023-11-30T22:57:38.801936+0000 mon.smithi038 (mon.0) 509 : audit [INF] from='mgr.14182 172.21.15.38:0/2999689707' entity='mgr.smithi038.ldalxq' 2023-11-30T22:57:39.963 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 22:57:39 smithi167 conmon[87022]: cephadm 2023-11-30T22:57:38.802761+0000 mgr.smithi038.ldalxq (mgr.14182) 90 : cephadm [INF] Reconfiguring crash.smithi167 (monmap changed)... 2023-11-30T22:57:39.963 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 22:57:39 smithi167 conmon[87022]: audit 2023-11-30T22:57:38.803047+0000 mon.smithi038 (mon.0) 510 : audit [INF] from='mgr.14182 172.21.15.38:0/2999689707' entity='mgr.smithi038.ldalxq' cmd=[{"prefix": "auth get-or-create", "entity": "client.crash.smithi167", "caps": ["mon", "profile crash", "mgr", "profile crash"]}]: dispatch 2023-11-30T22:57:39.963 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 22:57:39 smithi167 conmon[87022]: audit 2023-11-30T22:57:38.803884+0000 mon.smithi038 (mon.0) 511 : audit [DBG] from='mgr.14182 172.21.15.38:0/2999689707' entity='mgr.smithi038.ldalxq' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2023-11-30T22:57:39.963 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 22:57:39 smithi167 conmon[87022]: cephadm 2023-11-30T22:57:38.804494+0000 mgr.smithi038.ldalxq (mgr.14182) 91 : cephadm [INF] Reconfiguring daemon crash.smithi167 on smithi167 2023-11-30T22:57:40.091 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:57:39 smithi038 conmon[81956]: audit 2023-11-30T22:57:38.801936+0000 mon.smithi038 (mon.0) 509 : audit [INF] from='mgr.14182 172.21.15.38:0/2999689707' entity='mgr.smithi038.ldalxq' 2023-11-30T22:57:40.091 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:57:39 smithi038 conmon[81956]: cephadm 2023-11-30T22:57:38.802761+0000 mgr.smithi038.ldalxq (mgr.14182) 90 : cephadm [INF] Reconfiguring crash.smithi167 (monmap changed)... 2023-11-30T22:57:40.091 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:57:39 smithi038 conmon[81956]: audit 2023-11-30T22:57:38.803047+0000 mon.smithi038 (mon.0) 510 : audit [INF] from='mgr.14182 172.21.15.38:0/2999689707' entity='mgr.smithi038.ldalxq' cmd=[{"prefix": "auth get-or-create", "entity": "client.crash.smithi167", "caps": ["mon", "profile crash", "mgr", "profile crash"]}]: dispatch 2023-11-30T22:57:40.091 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:57:39 smithi038 conmon[81956]: audit 2023-11-30T22:57:38.803884+0000 mon.smithi038 (mon.0) 511 : audit [DBG] from='mgr.14182 172.21.15.38:0/2999689707' entity='mgr.smithi038.ldalxq' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2023-11-30T22:57:40.092 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:57:39 smithi038 conmon[81956]: cephadm 2023-11-30T22:57:38.804494+0000 mgr.smithi038.ldalxq (mgr.14182) 91 : cephadm [INF] Reconfiguring daemon crash.smithi167 on smithi167 2023-11-30T22:57:40.354 INFO:teuthology.orchestra.run.smithi038.stdout:{"epoch":18,"active_gid":14182,"active_name":"smithi038.ldalxq","active_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.38:6800","nonce":1163370233},{"type":"v1","addr":"172.21.15.38:6801","nonce":1163370233}]},"active_addr":"172.21.15.38:6801/1163370233","active_change":"2023-11-30T22:55:42.174072+0000","active_mgr_features":4540138314316775423,"available":true,"standbys":[{"gid":14206,"name":"smithi167.wfawnr","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.38:8443/","prometheus":"http://172.21.15.38: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.38:0","nonce":3101506833}]},{"name":"volumes","addrvec":[{"type":"v2","addr":"172.21.15.38:0","nonce":229295474}]}]} 2023-11-30T22:57:40.357 INFO:tasks.cephadm.ceph_manager.ceph:mgr available! 2023-11-30T22:57:40.357 INFO:tasks.cephadm.ceph_manager.ceph:waiting for all up 2023-11-30T22:57:40.357 DEBUG:teuthology.orchestra.run.smithi038:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:0dc074ce0b0b3b4f393f56dd32ef36884ebf45a9 shell --fsid 3faf8b00-8fd3-11ee-95a2-87774f69a715 -- ceph osd dump --format=json 2023-11-30T22:57:40.956 INFO:teuthology.orchestra.run.smithi038.stderr:Inferring config /var/lib/ceph/3faf8b00-8fd3-11ee-95a2-87774f69a715/mon.smithi038/config 2023-11-30T22:57:41.166 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:57:40 smithi038 conmon[81956]: audit 2023-11-30T22:57:39.868294+0000 mon.smithi038 (mon. 2023-11-30T22:57:41.166 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:57:40 smithi038 conmon[81956]: 0) 512 : audit [DBG] from='client.? 172.21.15.38:0/2757824740' entity='client.admin' cmd=[{"prefix": "mgr dump", "format": "json"}]: dispatch 2023-11-30T22:57:41.166 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:57:40 smithi038 conmon[81956]: audit 2023-11-30T22:57:40.004897+0000 mon.smithi038 (mon.0) 513 : audit [INF] from='mgr.14182 172.21.15.38:0/2999689707' entity='mgr.smithi038.ldalxq' 2023-11-30T22:57:41.167 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:57:40 smithi038 conmon[81956]: cephadm 2023-11-30T22:57:40.005472+0000 mgr.smithi038.ldalxq (mgr.14182) 92 : cephadm [INF] Reconfiguring mgr.smithi167.wfawnr (monmap changed)... 2023-11-30T22:57:41.167 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:57:40 smithi038 conmon[81956]: audit 2023-11-30T22:57:40.005729+0000 mon.smithi038 (mon.0) 514 : audit [INF] from='mgr.14182 172.21.15.38:0/2999689707' entity='mgr.smithi038.ldalxq' cmd=[{"prefix": "auth get-or-create", "entity": "mgr.smithi167.wfawnr", "caps": ["mon", "profile mgr", "osd", "allow *", "mds", "allow *"]}]: dispatch 2023-11-30T22:57:41.167 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:57:40 smithi038 conmon[81956]: audit 2023-11-30T22:57:40.006401+0000 mon.smithi038 (mon.0) 515 : audit [DBG] from='mgr.14182 172.21.15.38:0/2999689707' entity='mgr.smithi038.ldalxq' cmd=[{"prefix": "mgr services"}]: dispatch 2023-11-30T22:57:41.167 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:57:40 smithi038 conmon[81956]: audit 2023-11-30T22:57:40.006966+0000 mon.smithi038 (mon.0) 516 : audit [DBG] from='mgr.14182 172.21.15.38:0/2999689707' entity='mgr.smithi038.ldalxq' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2023-11-30T22:57:41.167 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:57:40 smithi038 conmon[81956]: cephadm 2023-11-30T22:57:40.007501+0000 mgr.smithi038.ldalxq (mgr.14182) 93 : cephadm [INF] Reconfiguring daemon mgr.smithi167.wfawnr on smithi167 2023-11-30T22:57:41.167 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:57:40 smithi038 conmon[81956]: cluster 2023-11-30T22:57:40.200119+0000 mgr.smithi038.ldalxq (mgr.14182) 94 : cluster [DBG] pgmap v84: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2023-11-30T22:57:41.242 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 22:57:40 smithi167 conmon[87022]: audit 2023-11-30T22:57:39.868294+0000 mon.smithi038 (mon.0) 2023-11-30T22:57:41.243 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 22:57:40 smithi167 conmon[87022]: 512 : audit [DBG] from='client.? 172.21.15.38:0/2757824740' entity='client.admin' cmd=[{"prefix": "mgr dump", "format": "json"}]: dispatch 2023-11-30T22:57:41.243 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 22:57:40 smithi167 conmon[87022]: audit 2023-11-30T22:57:40.004897+0000 mon.smithi038 (mon.0) 513 : audit 2023-11-30T22:57:41.243 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 22:57:40 smithi167 conmon[87022]: [INF] from='mgr.14182 172.21.15.38:0/2999689707' entity='mgr.smithi038.ldalxq' 2023-11-30T22:57:41.243 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 22:57:40 smithi167 conmon[87022]: cephadm 2023-11-30 2023-11-30T22:57:41.243 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 22:57:40 smithi167 conmon[87022]: T22:57:40.005472+0000 mgr.smithi038.ldalxq (mgr.14182 2023-11-30T22:57:41.243 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 22:57:40 smithi167 conmon[87022]: ) 92 : cephadm [INF] Reconfiguring mgr.smithi167.wfawnr (monmap changed)... 2023-11-30T22:57:41.243 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 22:57:40 smithi167 conmon[87022]: audit 2023 2023-11-30T22:57:41.243 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 22:57:40 smithi167 conmon[87022]: -11-30T22:57:40. 2023-11-30T22:57:41.243 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 22:57:40 smithi167 conmon[87022]: 005729+0000 mon.smithi038 (mon.0) 514 2023-11-30T22:57:41.243 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 22:57:40 smithi167 conmon[87022]: : audit [INF] from='mgr.14182 172.21.15.38:0/2999689707' entity='mgr.smithi038.ldalxq' cmd=[{"prefix": "auth get-or-create", "entity": "mgr.smithi167.wfawnr", "caps": ["mon", "profile mgr", "osd", "allow *", "mds", "allow *"]}]: dispatch 2023-11-30T22:57:41.243 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 22:57:40 smithi167 conmon[87022]: audit 2023-11-30T22:57:41.244 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 22:57:40 smithi167 conmon[87022]: 2023-11-30T22: 2023-11-30T22:57:41.244 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 22:57:40 smithi167 conmon[87022]: 57:40.006401+0000 mon.smithi038 2023-11-30T22:57:41.244 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 22:57:40 smithi167 conmon[87022]: (mon.0) 515 : audit [DBG] 2023-11-30T22:57:41.244 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 22:57:40 smithi167 conmon[87022]: from='mgr.14182 172.21.15.38:0/2999689707' entity='mgr.smithi038.ldalxq' cmd=[{"prefix": "mgr services"}]: dispatch 2023-11-30T22:57:41.244 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 22:57:40 smithi167 conmon[87022]: audit 2023 2023-11-30T22:57:41.244 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 22:57:40 smithi167 conmon[87022]: -11-30T22:57:40.006966+0000 2023-11-30T22:57:41.244 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 22:57:40 smithi167 conmon[87022]: mon.smithi038 (mon.0) 516 : audit [DBG] from='mgr.14182 172.21.15.38:0/2999689707' entity='mgr.smithi038.ldalxq' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2023-11-30T22:57:41.244 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 22:57:40 smithi167 conmon[87022]: cephadm 2023-11-30T22:57:41.244 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 22:57:40 smithi167 conmon[87022]: 2023-11-30T22:57 2023-11-30T22:57:41.244 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 22:57:40 smithi167 conmon[87022]: :40.007501+0000 mgr.smithi038.ldalxq (mgr. 2023-11-30T22:57:41.244 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 22:57:40 smithi167 conmon[87022]: 14182) 93 : cephadm [INF] Reconfiguring daemon mgr.smithi167.wfawnr on smithi167 2023-11-30T22:57:41.244 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 22:57:40 smithi167 conmon[87022]: cluster 2023 2023-11-30T22:57:41.244 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 22:57:40 smithi167 conmon[87022]: -11-30T22:57:40.200119 2023-11-30T22:57:41.245 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 22:57:40 smithi167 conmon[87022]: +0000 mgr.smithi038.ldalxq (mgr.14182) 94 2023-11-30T22:57:41.245 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 22:57:40 smithi167 conmon[87022]: : cluster [DBG] pgmap v84: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2023-11-30T22:57:42.307 INFO:teuthology.orchestra.run.smithi038.stdout: 2023-11-30T22:57:42.308 INFO:teuthology.orchestra.run.smithi038.stdout:{"epoch":36,"fsid":"3faf8b00-8fd3-11ee-95a2-87774f69a715","created":"2023-11-30T22:54:01.397506+0000","modified":"2023-11-30T22:57:25.869361+0000","last_up_change":"2023-11-30T22:57:23.843473+0000","last_in_change":"2023-11-30T22:56:47.742886+0000","flags":"sortbitwise,recovery_deletes,purged_snapdirs,pglog_hardlimit","flags_num":5799936,"flags_set":["pglog_hardlimit","purged_snapdirs","recovery_deletes","sortbitwise"],"crush_version":16,"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-11-30T22:57:10.238023+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":"25","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":"79c367f7-9a0b-487b-9b90-edbd237aaf4f","up":1,"in":1,"weight":1,"primary_affinity":1,"last_clean_begin":0,"last_clean_end":0,"up_from":16,"up_thru":34,"down_at":0,"lost_at":0,"public_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.167:6800","nonce":3313098133},{"type":"v1","addr":"172.21.15.167:6801","nonce":3313098133}]},"cluster_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.167:6802","nonce":3313098133},{"type":"v1","addr":"172.21.15.167:6803","nonce":3313098133}]},"heartbeat_back_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.167:6806","nonce":3313098133},{"type":"v1","addr":"172.21.15.167:6807","nonce":3313098133}]},"heartbeat_front_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.167:6804","nonce":3313098133},{"type":"v1","addr":"172.21.15.167:6805","nonce":3313098133}]},"public_addr":"172.21.15.167:6801/3313098133","cluster_addr":"172.21.15.167:6803/3313098133","heartbeat_back_addr":"172.21.15.167:6807/3313098133","heartbeat_front_addr":"172.21.15.167:6805/3313098133","state":["exists","up"]},{"osd":1,"uuid":"5ef29b01-28fc-48df-9975-2e960c2ab7af","up":1,"in":1,"weight":1,"primary_affinity":1,"last_clean_begin":0,"last_clean_end":0,"up_from":17,"up_thru":23,"down_at":0,"lost_at":0,"public_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.38:6802","nonce":2856563043},{"type":"v1","addr":"172.21.15.38:6803","nonce":2856563043}]},"cluster_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.38:6804","nonce":2856563043},{"type":"v1","addr":"172.21.15.38:6805","nonce":2856563043}]},"heartbeat_back_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.38:6808","nonce":2856563043},{"type":"v1","addr":"172.21.15.38:6809","nonce":2856563043}]},"heartbeat_front_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.38:6806","nonce":2856563043},{"type":"v1","addr":"172.21.15.38:6807","nonce":2856563043}]},"public_addr":"172.21.15.38:6803/2856563043","cluster_addr":"172.21.15.38:6805/2856563043","heartbeat_back_addr":"172.21.15.38:6809/2856563043","heartbeat_front_addr":"172.21.15.38:6807/2856563043","state":["exists","up"]},{"osd":2,"uuid":"edc6eee3-f74b-4b65-9018-f68330f9015d","up":1,"in":1,"weight":1,"primary_affinity":1,"last_clean_begin":0,"last_clean_end":0,"up_from":21,"up_thru":0,"down_at":0,"lost_at":0,"public_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.167:6808","nonce":1490848185},{"type":"v1","addr":"172.21.15.167:6809","nonce":1490848185}]},"cluster_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.167:6810","nonce":1490848185},{"type":"v1","addr":"172.21.15.167:6811","nonce":1490848185}]},"heartbeat_back_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.167:6814","nonce":1490848185},{"type":"v1","addr":"172.21.15.167:6815","nonce":1490848185}]},"heartbeat_front_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.167:6812","nonce":1490848185},{"type":"v1","addr":"172.21.15.167:6813","nonce":1490848185}]},"public_addr":"172.21.15.167:6809/1490848185","cluster_addr":"172.21.15.167:6811/1490848185","heartbeat_back_addr":"172.21.15.167:6815/1490848185","heartbeat_front_addr":"172.21.15.167:6813/1490848185","state":["exists","up"]},{"osd":3,"uuid":"3752cef2-4bce-4fc6-a8ba-65fea2d4ed1f","up":1,"in":1,"weight":1,"primary_affinity":1,"last_clean_begin":0,"last_clean_end":0,"up_from":23,"up_thru":0,"down_at":0,"lost_at":0,"public_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.38:6810","nonce":913475055},{"type":"v1","addr":"172.21.15.38:6811","nonce":913475055}]},"cluster_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.38:6812","nonce":913475055},{"type":"v1","addr":"172.21.15.38:6813","nonce":913475055}]},"heartbeat_back_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.38:6816","nonce":913475055},{"type":"v1","addr":"172.21.15.38:6817","nonce":913475055}]},"heartbeat_front_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.38:6814","nonce":913475055},{"type":"v1","addr":"172.21.15.38:6815","nonce":913475055}]},"public_addr":"172.21.15.38:6811/913475055","cluster_addr":"172.21.15.38:6813/913475055","heartbeat_back_addr":"172.21.15.38:6817/913475055","heartbeat_front_addr":"172.21.15.38:6815/913475055","state":["exists","up"]},{"osd":4,"uuid":"e351328e-d914-457f-ab87-5f63b9915bed","up":1,"in":1,"weight":1,"primary_affinity":1,"last_clean_begin":0,"last_clean_end":0,"up_from":26,"up_thru":0,"down_at":0,"lost_at":0,"public_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.167:6816","nonce":3515352043},{"type":"v1","addr":"172.21.15.167:6817","nonce":3515352043}]},"cluster_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.167:6818","nonce":3515352043},{"type":"v1","addr":"172.21.15.167:6819","nonce":3515352043}]},"heartbeat_back_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.167:6822","nonce":3515352043},{"type":"v1","addr":"172.21.15.167:6823","nonce":3515352043}]},"heartbeat_front_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.167:6820","nonce":3515352043},{"type":"v1","addr":"172.21.15.167:6821","nonce":3515352043}]},"public_addr":"172.21.15.167:6817/3515352043","cluster_addr":"172.21.15.167:6819/3515352043","heartbeat_back_addr":"172.21.15.167:6823/3515352043","heartbeat_front_addr":"172.21.15.167:6821/3515352043","state":["exists","up"]},{"osd":5,"uuid":"ffffbf3d-c0d6-4c78-a79e-0f157f158363","up":1,"in":1,"weight":1,"primary_affinity":1,"last_clean_begin":0,"last_clean_end":0,"up_from":29,"up_thru":0,"down_at":0,"lost_at":0,"public_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.38:6818","nonce":1758214256},{"type":"v1","addr":"172.21.15.38:6819","nonce":1758214256}]},"cluster_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.38:6820","nonce":1758214256},{"type":"v1","addr":"172.21.15.38:6821","nonce":1758214256}]},"heartbeat_back_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.38:6824","nonce":1758214256},{"type":"v1","addr":"172.21.15.38:6825","nonce":1758214256}]},"heartbeat_front_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.38:6822","nonce":1758214256},{"type":"v1","addr":"172.21.15.38:6823","nonce":1758214256}]},"public_addr":"172.21.15.38:6819/1758214256","cluster_addr":"172.21.15.38:6821/1758214256","heartbeat_back_addr":"172.21.15.38:6825/1758214256","heartbeat_front_addr":"172.21.15.38:6823/1758214256","state":["exists","up"]},{"osd":6,"uuid":"d12fbc72-890a-496d-aae6-48a205a3f235","up":1,"in":1,"weight":1,"primary_affinity":1,"last_clean_begin":0,"last_clean_end":0,"up_from":30,"up_thru":0,"down_at":0,"lost_at":0,"public_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.167:6824","nonce":1831583000},{"type":"v1","addr":"172.21.15.167:6825","nonce":1831583000}]},"cluster_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.167:6826","nonce":1831583000},{"type":"v1","addr":"172.21.15.167:6827","nonce":1831583000}]},"heartbeat_back_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.167:6830","nonce":1831583000},{"type":"v1","addr":"172.21.15.167:6831","nonce":1831583000}]},"heartbeat_front_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.167:6828","nonce":1831583000},{"type":"v1","addr":"172.21.15.167:6829","nonce":1831583000}]},"public_addr":"172.21.15.167:6825/1831583000","cluster_addr":"172.21.15.167:6827/1831583000","heartbeat_back_addr":"172.21.15.167:6831/1831583000","heartbeat_front_addr":"172.21.15.167:6829/1831583000","state":["exists","up"]},{"osd":7,"uuid":"e2713078-6748-4b3c-9b03-c18369bb2b3d","up":1,"in":1,"weight":1,"primary_affinity":1,"last_clean_begin":0,"last_clean_end":0,"up_from":34,"up_thru":35,"down_at":0,"lost_at":0,"public_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.38:6826","nonce":2904554847},{"type":"v1","addr":"172.21.15.38:6827","nonce":2904554847}]},"cluster_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.38:6828","nonce":2904554847},{"type":"v1","addr":"172.21.15.38:6829","nonce":2904554847}]},"heartbeat_back_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.38:6832","nonce":2904554847},{"type":"v1","addr":"172.21.15.38:6833","nonce":2904554847}]},"heartbeat_front_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.38:6830","nonce":2904554847},{"type":"v1","addr":"172.21.15.38:6831","nonce":2904554847}]},"public_addr":"172.21.15.38:6827/2904554847","cluster_addr":"172.21.15.38:6829/2904554847","heartbeat_back_addr":"172.21.15.38:6833/2904554847","heartbeat_front_addr":"172.21.15.38:6831/2904554847","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-11-30T22:57:03.006940+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-11-30T22:57:04.162452+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-11-30T22:57:08.008155+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-11-30T22:57:10.744541+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-11-30T22:57:12.819370+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-11-30T22:57:16.196441+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-11-30T22:57:17.566854+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-11-30T22:57:21.825049+0000","dead_epoch":0}],"pg_upmap":[],"pg_upmap_items":[],"pg_temp":[],"primary_temp":[],"blocklist":{"172.21.15.38:0/2636861943":"2023-12-01T22:55:42.173954+0000","172.21.15.38:6800/1169858699":"2023-12-01T22:55:42.173954+0000","172.21.15.38:0/888972314":"2023-12-01T22:55:42.173954+0000","172.21.15.38:0/2064425667":"2023-12-01T22:54:56.797200+0000","172.21.15.38:6801/1982733063":"2023-12-01T22:54:56.797200+0000","172.21.15.38:6801/1169858699":"2023-12-01T22:55:42.173954+0000","172.21.15.38:6800/1982733063":"2023-12-01T22:54:56.797200+0000","172.21.15.38:0/3958299474":"2023-12-01T22:54:56.797200+0000","172.21.15.38:0/3301221646":"2023-12-01T22:54:32.328905+0000","172.21.15.38:0/1866869556":"2023-12-01T22:54:32.328905+0000","172.21.15.38:6800/3868205158":"2023-12-01T22:54:32.328905+0000","172.21.15.38:6801/3868205158":"2023-12-01T22:54:32.328905+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-11-30T22:57:42.512 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 22:57:42 smithi167 conmon[87022]: audit 2023-11-30T22:57:41.311189+0000 mon.smithi038 (mon.0) 517 : audit [INF] from='mgr.14182 172.21.15.38:0/2999689707' entity='mgr.smithi038.ldalxq' 2023-11-30T22:57:42.512 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 22:57:42 smithi167 conmon[87022]: cephadm 2023-11-30T22:57:41.311767+0000 mgr.smithi038.ldalxq (mgr.14182) 95 : cephadm [INF] Reconfiguring mon.smithi167 (monmap changed)... 2023-11-30T22:57:42.512 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 22:57:42 smithi167 conmon[87022]: audit 2023-11-30T22:57:41.311982+0000 mon.smithi038 (mon.0) 518 : audit [INF] from='mgr.14182 172.21.15.38:0/2999689707' entity='mgr.smithi038.ldalxq' cmd=[{"prefix": "auth get", "entity": "mon."}]: dispatch 2023-11-30T22:57:42.512 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 22:57:42 smithi167 conmon[87022]: audit 2023-11-30T22:57:41.312570+0000 mon.smithi038 (mon.0) 519 : audit [DBG] from='mgr.14182 172.21.15.38:0/2999689707' entity='mgr.smithi038.ldalxq' cmd=[{"prefix": "config get", "who": "mon", "key": "public_network"}]: dispatch 2023-11-30T22:57:42.512 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 22:57:42 smithi167 conmon[87022]: audit 2023-11-30T22:57:41.313119+0000 mon.smithi038 (mon.0) 520 : audit [DBG] from='mgr.14182 172.21.15.38:0/2999689707' entity='mgr.smithi038.ldalxq' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2023-11-30T22:57:42.512 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 22:57:42 smithi167 conmon[87022]: cephadm 2023-11-30T22:57:41.313617+0000 mgr.smithi038.ldalxq (mgr.14182) 96 : cephadm [INF] Reconfiguring daemon mon.smithi167 on smithi167 2023-11-30T22:57:42.512 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 22:57:42 smithi167 conmon[87022]: audit 2023-11-30T22:57:42.306915+0000 2023-11-30T22:57:42.512 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 22:57:42 smithi167 conmon[87022]: mon.smithi038 (mon.0) 521 : audit [DBG] from='client.? 172.21.15.38:0/1102173568' entity='client.admin' cmd=[{"prefix": "osd dump", "format": "json"}]: dispatch 2023-11-30T22:57:42.636 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:57:42 smithi038 conmon[81956]: audit 2023-11-30T22:57:41.311189+0000 mon.smithi038 (mon.0) 517 : audit [INF] from='mgr.14182 172.21.15.38:0/2999689707' entity='mgr.smithi038.ldalxq' 2023-11-30T22:57:42.636 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:57:42 smithi038 conmon[81956]: cephadm 2023-11-30T22:57:41.311767+0000 mgr.smithi038.ldalxq (mgr.14182) 95 : cephadm [INF] Reconfiguring mon.smithi167 (monmap changed)... 2023-11-30T22:57:42.636 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:57:42 smithi038 conmon[81956]: audit 2023-11-30T22:57:41.311982+0000 mon.smithi038 (mon.0) 518 : audit [INF] from='mgr.14182 172.21.15.38:0/2999689707' entity='mgr.smithi038.ldalxq' cmd=[{"prefix": "auth get", "entity": "mon."}]: dispatch 2023-11-30T22:57:42.637 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:57:42 smithi038 conmon[81956]: audit 2023-11-30T22:57:41.312570+0000 mon.smithi038 (mon.0) 519 : audit [DBG] from='mgr.14182 172.21.15.38:0/2999689707' entity='mgr.smithi038.ldalxq' cmd=[{"prefix": "config get", "who": "mon", "key": "public_network"}]: dispatch 2023-11-30T22:57:42.637 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:57:42 smithi038 conmon[81956]: audit 2023-11-30T22:57:41.313119+0000 mon.smithi038 (mon.0) 520 : audit [DBG] from='mgr.14182 172.21.15.38:0/2999689707' entity='mgr.smithi038.ldalxq' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2023-11-30T22:57:42.637 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:57:42 smithi038 conmon[81956]: cephadm 2023-11-30T22:57:41.313617+0000 mgr.smithi038.ldalxq (mgr.14182) 96 : cephadm [INF] Reconfiguring daemon mon.smithi167 on smithi167 2023-11-30T22:57:42.637 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:57:42 smithi038 conmon[81956]: audit 2023-11-30T22:57:42.306915+0000 mon.smithi038 (mon.0) 521 : audit [DBG] from='client.? 172.21.15.38:0/1102173568' entity='client.admin' cmd=[{"prefix": "osd dump", "format": "json"}]: dispatch 2023-11-30T22:57:42.768 INFO:tasks.cephadm.ceph_manager.ceph:all up! 2023-11-30T22:57:42.769 DEBUG:teuthology.orchestra.run.smithi038:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:0dc074ce0b0b3b4f393f56dd32ef36884ebf45a9 shell --fsid 3faf8b00-8fd3-11ee-95a2-87774f69a715 -- ceph osd dump --format=json 2023-11-30T22:57:43.371 INFO:teuthology.orchestra.run.smithi038.stderr:Inferring config /var/lib/ceph/3faf8b00-8fd3-11ee-95a2-87774f69a715/mon.smithi038/config 2023-11-30T22:57:43.758 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:57:43 smithi038 conmon[81956]: cluster 2023-11-30T22:57:42.200430+0000 mgr.smithi038.ldalxq ( 2023-11-30T22:57:43.758 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:57:43 smithi038 conmon[81956]: mgr.14182) 97 : cluster [DBG] pgmap v85: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2023-11-30T22:57:43.758 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:57:43 smithi038 conmon[81956]: audit 2023-11-30T22:57:42.500966+0000 mon.smithi038 ( 2023-11-30T22:57:43.758 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:57:43 smithi038 conmon[81956]: mon.0) 522 : audit [INF] from='mgr.14182 172.21.15.38:0/2999689707' entity='mgr.smithi038.ldalxq' 2023-11-30T22:57:43.758 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:57:43 smithi038 conmon[81956]: audit 2023- 2023-11-30T22:57:43.758 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:57:43 smithi038 conmon[81956]: 11-30T22:57:42.503687+0000 mon.smithi038 2023-11-30T22:57:43.758 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:57:43 smithi038 conmon[81956]: (mon.0) 523 : audit [DBG] from='mgr.14182 172.21.15.38:0/2999689707' entity='mgr.smithi038.ldalxq' cmd=[{"prefix": "dashboard get-alertmanager-api-host"}]: dispatch 2023-11-30T22:57:43.758 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:57:43 smithi038 conmon[81956]: audit 2023-11-30T 2023-11-30T22:57:43.758 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:57:43 smithi038 conmon[81956]: 22:57:42.504069+0000 mgr.smithi038.ldalxq (mgr.14182) 98 : 2023-11-30T22:57:43.758 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:57:43 smithi038 conmon[81956]: audit [DBG] from='mon.0 -' entity='mon.' cmd=[{"prefix": "dashboard get-alertmanager-api-host"}]: dispatch 2023-11-30T22:57:43.758 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:57:43 smithi038 conmon[81956]: audit 2023-11-30T22:57:42 2023-11-30T22:57:43.759 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:57:43 smithi038 conmon[81956]: .504950+0000 mon.smithi038 (mon.0) 524 : audit [INF] 2023-11-30T22:57:43.759 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:57:43 smithi038 conmon[81956]: from='mgr.14182 172.21.15.38:0/2999689707' entity='mgr.smithi038.ldalxq' cmd=[{"prefix": "dashboard set-alertmanager-api-host", "value": "http://smithi038.front.sepia.ceph.com:9093"}]: dispatch 2023-11-30T22:57:43.759 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:57:43 smithi038 conmon[81956]: audit 2023-11-30T22:57: 2023-11-30T22:57:43.759 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:57:43 smithi038 conmon[81956]: 42.505218+0000 mgr.smithi038.ldalxq (mgr.14182) 99 : audit 2023-11-30T22:57:43.759 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:57:43 smithi038 conmon[81956]: [DBG] from='mon.0 -' entity='mon.' cmd=[{"prefix": "dashboard set-alertmanager-api-host", "value": "http://smithi038.front.sepia.ceph.com:9093"}]: dispatch 2023-11-30T22:57:43.759 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:57:43 smithi038 conmon[81956]: audit 2023 2023-11-30T22:57:43.759 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:57:43 smithi038 conmon[81956]: -11-30T22:57:42.509071+0000 mon.smithi038 ( 2023-11-30T22:57:43.759 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:57:43 smithi038 conmon[81956]: mon.0) 525 : audit [INF] from='mgr.14182 172.21.15.38:0/2999689707' entity='mgr.smithi038.ldalxq' 2023-11-30T22:57:43.759 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:57:43 smithi038 conmon[81956]: audit 2023-11-30T22:57:43.759 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:57:43 smithi038 conmon[81956]: 2023-11-30T22:57:42.513917+0000 2023-11-30T22:57:43.759 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:57:43 smithi038 conmon[81956]: mon.smithi038 (mon.0) 526 : audit [DBG] from='mgr.14182 172.21.15.38:0/2999689707' entity='mgr.smithi038.ldalxq' cmd=[{"prefix": "dashboard get-grafana-api-url"}]: dispatch 2023-11-30T22:57:43.759 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:57:43 smithi038 conmon[81956]: audit 2023-11-30T22:57:43.759 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:57:43 smithi038 conmon[81956]: 2023-11-30T22:57 2023-11-30T22:57:43.760 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:57:43 smithi038 conmon[81956]: :42.514259+0000 mgr.smithi038.ldalxq (mgr.14182) 100 : audit 2023-11-30T22:57:43.760 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:57:43 smithi038 conmon[81956]: [DBG] from='mon.0 -' entity='mon.' cmd=[{"prefix": "dashboard get-grafana-api-url"}]: dispatch 2023-11-30T22:57:43.760 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:57:43 smithi038 conmon[81956]: audit 2023-11-30T22:57:43.760 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:57:43 smithi038 conmon[81956]: 2023-11-30T22:57:42.517920+0000 mon.smithi038 ( 2023-11-30T22:57:43.760 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:57:43 smithi038 conmon[81956]: mon.0) 527 : audit [INF] from='mgr.14182 172.21.15.38:0/2999689707' entity='mgr.smithi038.ldalxq' cmd=[{"prefix": "dashboard set-grafana-api-url", "value": "https://smithi038.front.sepia.ceph.com:3000"}]: dispatch 2023-11-30T22:57:43.760 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:57:43 smithi038 conmon[81956]: audit 2023-11-30T22:57:43.760 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:57:43 smithi038 conmon[81956]: 2023-11-30T22:57:42.518244+0000 mgr.smithi038.ldalxq 2023-11-30T22:57:43.760 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:57:43 smithi038 conmon[81956]: (mgr.14182) 101 : audit [DBG] from='mon.0 -' entity='mon.' cmd=[{"prefix": "dashboard set-grafana-api-url", "value": "https://smithi038.front.sepia.ceph.com:3000"}]: dispatch 2023-11-30T22:57:43.760 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:57:43 smithi038 conmon[81956]: audit 2023-11-30T22:57:43.760 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:57:43 smithi038 conmon[81956]: 2023-11-30T22:57: 2023-11-30T22:57:43.760 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:57:43 smithi038 conmon[81956]: 42.523907+0000 mon.smithi038 (mon.0) 528 2023-11-30T22:57:43.760 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:57:43 smithi038 conmon[81956]: : audit [INF] from='mgr.14182 172.21.15.38:0/2999689707' entity='mgr.smithi038.ldalxq' 2023-11-30T22:57:43.760 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:57:43 smithi038 conmon[81956]: audit 2023-11 2023-11-30T22:57:43.761 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:57:43 smithi038 conmon[81956]: -30T22:57:42.528211+0000 mon.smithi038 ( 2023-11-30T22:57:43.761 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:57:43 smithi038 conmon[81956]: mon.0) 529 : audit [DBG] from='mgr.14182 172.21.15.38:0/2999689707' entity='mgr.smithi038.ldalxq' cmd=[{"prefix": "dashboard get-prometheus-api-host"}]: dispatch 2023-11-30T22:57:43.761 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:57:43 smithi038 conmon[81956]: audit 2023-11-30T22:57:43.761 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:57:43 smithi038 conmon[81956]: 2023-11-30T22: 2023-11-30T22:57:43.761 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:57:43 smithi038 conmon[81956]: 57:42.528586+0000 mgr.smithi038.ldalxq (mgr.14182) 2023-11-30T22:57:43.761 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:57:43 smithi038 conmon[81956]: 102 : audit [DBG] from='mon.0 -' entity='mon.' cmd=[{"prefix": "dashboard get-prometheus-api-host"}]: dispatch 2023-11-30T22:57:43.762 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:57:43 smithi038 conmon[81956]: audit 2023-11- 2023-11-30T22:57:43.762 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:57:43 smithi038 conmon[81956]: 30T22:57:42.532493+0000 mon.smithi038 (mon 2023-11-30T22:57:43.762 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:57:43 smithi038 conmon[81956]: .0) 530 : audit [INF] from='mgr.14182 172.21.15.38:0/2999689707' entity='mgr.smithi038.ldalxq' cmd=[{"prefix": "dashboard set-prometheus-api-host", "value": "http://smithi038.front.sepia.ceph.com:9095"}]: dispatch 2023-11-30T22:57:43.762 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:57:43 smithi038 conmon[81956]: audit 2023-11-30T22:57:43.763 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:57:43 smithi038 conmon[81956]: 2023-11-30T22:57: 2023-11-30T22:57:43.763 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:57:43 smithi038 conmon[81956]: 42.532873+0000 mgr.smithi038.ldalxq (mgr.14182) 103 : 2023-11-30T22:57:43.763 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:57:43 smithi038 conmon[81956]: audit [DBG] from='mon.0 -' entity='mon.' cmd=[{"prefix": "dashboard set-prometheus-api-host", "value": "http://smithi038.front.sepia.ceph.com:9095"}]: dispatch 2023-11-30T22:57:43.763 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:57:43 smithi038 conmon[81956]: audit 2023-11-30T22:57:43.763 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:57:43 smithi038 conmon[81956]: 2023-11-30T22:57:42.537607+0000 mon.smithi038 ( 2023-11-30T22:57:43.763 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:57:43 smithi038 conmon[81956]: mon.0) 531 : audit [INF] from='mgr.14182 172.21.15.38:0/2999689707' entity='mgr.smithi038.ldalxq' 2023-11-30T22:57:43.763 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:57:43 smithi038 conmon[81956]: audit 2023-11-30T22:57:43.763 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:57:43 smithi038 conmon[81956]: 2023-11-30T22:57 2023-11-30T22:57:43.763 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:57:43 smithi038 conmon[81956]: :42.541066+0000 mon.smithi038 (mon.0) 532 2023-11-30T22:57:43.763 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:57:43 smithi038 conmon[81956]: : audit [DBG] from='mgr.14182 172.21.15.38:0/2999689707' entity='mgr.smithi038.ldalxq' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2023-11-30T22:57:43.764 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 22:57:43 smithi167 conmon[87022]: cluster 2023-11-30T22:57:42.200430+0000 mgr.smithi038.ldalxq (mgr.14182 2023-11-30T22:57:43.764 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 22:57:43 smithi167 conmon[87022]: ) 97 : cluster [DBG] pgmap v85: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2023-11-30T22:57:43.764 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 22:57:43 smithi167 conmon[87022]: audit 2023-11-30T22:57:42.500966+0000 mon.smithi038 (mon.0) 522 : audit [INF] from='mgr.14182 172.21.15.38:0/2999689707' entity='mgr.smithi038.ldalxq' 2023-11-30T22:57:43.764 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 22:57:43 smithi167 conmon[87022]: audit 2023-11-30T22:57:42.503687+0000 mon.smithi038 (mon. 2023-11-30T22:57:43.764 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 22:57:43 smithi167 conmon[87022]: 0) 523 : audit [DBG] from='mgr.14182 172.21.15.38:0/2999689707' entity='mgr.smithi038.ldalxq' cmd=[{"prefix": "dashboard get-alertmanager-api-host"}]: dispatch 2023-11-30T22:57:43.764 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 22:57:43 smithi167 conmon[87022]: audit 2023-11-30 2023-11-30T22:57:43.765 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 22:57:43 smithi167 conmon[87022]: T22:57:42.504069+0000 mgr.smithi038.ldalxq (mgr. 2023-11-30T22:57:43.765 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 22:57:43 smithi167 conmon[87022]: 14182) 98 : audit [DBG] from='mon.0 -' entity='mon.' cmd=[{"prefix": "dashboard get-alertmanager-api-host"}]: dispatch 2023-11-30T22:57:43.765 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 22:57:43 smithi167 conmon[87022]: audit 2023-11-30T 2023-11-30T22:57:43.765 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 22:57:43 smithi167 conmon[87022]: 22:57:42.504950+0000 mon.smithi038 (mon. 2023-11-30T22:57:43.765 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 22:57:43 smithi167 conmon[87022]: 0) 524 : audit [INF] from='mgr.14182 172.21.15.38:0/2999689707' entity='mgr.smithi038.ldalxq' cmd=[{"prefix": "dashboard set-alertmanager-api-host", "value": "http://smithi038.front.sepia.ceph.com:9093"}]: dispatch 2023-11-30T22:57:43.765 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 22:57:43 smithi167 conmon[87022]: audit 2023-11- 2023-11-30T22:57:43.765 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 22:57:43 smithi167 conmon[87022]: 30T22:57:42.505218+0000 mgr.smithi038.ldalxq ( 2023-11-30T22:57:43.765 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 22:57:43 smithi167 conmon[87022]: mgr.14182) 99 : audit [DBG] from='mon.0 -' entity='mon.' cmd=[{"prefix": "dashboard set-alertmanager-api-host", "value": "http://smithi038.front.sepia.ceph.com:9093"}]: dispatch 2023-11-30T22:57:43.765 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 22:57:43 smithi167 conmon[87022]: audit 2023- 2023-11-30T22:57:43.765 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 22:57:43 smithi167 conmon[87022]: 11-30T22:57:42.509071+0000 mon.smithi038 2023-11-30T22:57:43.765 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 22:57:43 smithi167 conmon[87022]: (mon.0) 525 : audit [INF] 2023-11-30T22:57:43.765 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 22:57:43 smithi167 conmon[87022]: from='mgr.14182 172.21.15.38:0/2999689707' entity='mgr.smithi038.ldalxq' 2023-11-30T22:57:43.765 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 22:57:43 smithi167 conmon[87022]: audit 2023-11-30T22:57:43.766 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 22:57:43 smithi167 conmon[87022]: 2023-11-30T22:57:42.513917+0000 2023-11-30T22:57:43.766 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 22:57:43 smithi167 conmon[87022]: mon.smithi038 (mon.0) 526 : audit [DBG] 2023-11-30T22:57:43.766 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 22:57:43 smithi167 conmon[87022]: from='mgr.14182 172.21.15.38:0/2999689707' entity='mgr.smithi038.ldalxq' cmd=[{"prefix": "dashboard get-grafana-api-url"}]: dispatch 2023-11-30T22:57:43.766 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 22:57:43 smithi167 conmon[87022]: audit 2023-11-30T22:57:43.766 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 22:57:43 smithi167 conmon[87022]: 2023-11-30T22:57:42.514259+0000 2023-11-30T22:57:43.766 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 22:57:43 smithi167 conmon[87022]: mgr.smithi038.ldalxq (mgr.14182) 100 : audit [DBG] from='mon.0 -' entity='mon.' cmd=[{"prefix": "dashboard get-grafana-api-url"}]: dispatch 2023-11-30T22:57:43.766 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 22:57:43 smithi167 conmon[87022]: audit 2023- 2023-11-30T22:57:43.766 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 22:57:43 smithi167 conmon[87022]: 11-30T22:57:42.517920+0000 2023-11-30T22:57:43.766 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 22:57:43 smithi167 conmon[87022]: mon.smithi038 (mon.0) 527 : audit [INF] from='mgr.14182 172.21.15.38:0/2999689707' entity='mgr.smithi038.ldalxq' cmd=[{"prefix": "dashboard set-grafana-api-url", "value": "https://smithi038.front.sepia.ceph.com:3000"}]: dispatch 2023-11-30T22:57:43.766 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 22:57:43 smithi167 conmon[87022]: audit 2023-11 2023-11-30T22:57:43.766 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 22:57:43 smithi167 conmon[87022]: -30T22:57:42.518244+0000 mgr.smithi038.ldalxq 2023-11-30T22:57:43.766 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 22:57:43 smithi167 conmon[87022]: (mgr.14182) 101 : audit [DBG] from='mon.0 -' entity='mon.' cmd=[{"prefix": "dashboard set-grafana-api-url", "value": "https://smithi038.front.sepia.ceph.com:3000"}]: dispatch 2023-11-30T22:57:43.767 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 22:57:43 smithi167 conmon[87022]: audit 2023 2023-11-30T22:57:43.767 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 22:57:43 smithi167 conmon[87022]: -11-30T22:57:42.523907+0000 mon.smithi038 ( 2023-11-30T22:57:43.767 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 22:57:43 smithi167 conmon[87022]: mon.0) 528 : audit [INF] from='mgr.14182 172.21.15.38:0/2999689707' entity='mgr.smithi038.ldalxq' 2023-11-30T22:57:43.767 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 22:57:43 smithi167 conmon[87022]: audit 2023-11-30 2023-11-30T22:57:43.767 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 22:57:43 smithi167 conmon[87022]: T22:57:42.528211+0000 mon.smithi038 (mon. 2023-11-30T22:57:43.767 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 22:57:43 smithi167 conmon[87022]: 0) 529 : audit [DBG] from='mgr.14182 172.21.15.38:0/2999689707' entity='mgr.smithi038.ldalxq' cmd=[{"prefix": "dashboard get-prometheus-api-host"}]: dispatch 2023-11-30T22:57:43.767 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 22:57:43 smithi167 conmon[87022]: audit 2023-11-30T22:57:43.767 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 22:57:43 smithi167 conmon[87022]: 2023-11-30T22:57:42. 2023-11-30T22:57:43.767 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 22:57:43 smithi167 conmon[87022]: 528586+0000 mgr.smithi038.ldalxq (mgr.14182) 102 : audit [DBG] 2023-11-30T22:57:43.767 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 22:57:43 smithi167 conmon[87022]: from='mon.0 -' entity='mon.' cmd=[{"prefix": "dashboard get-prometheus-api-host"}]: dispatch 2023-11-30T22:57:43.767 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 22:57:43 smithi167 conmon[87022]: audit 2023-11-30 2023-11-30T22:57:43.767 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 22:57:43 smithi167 conmon[87022]: T22:57:42.532493+0000 mon.smithi038 (mon. 2023-11-30T22:57:43.768 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 22:57:43 smithi167 conmon[87022]: 0) 530 : audit [INF] from='mgr.14182 172.21.15.38:0/2999689707' entity='mgr.smithi038.ldalxq' cmd=[{"prefix": "dashboard set-prometheus-api-host", "value": "http://smithi038.front.sepia.ceph.com:9095"}]: dispatch 2023-11-30T22:57:43.768 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 22:57:43 smithi167 conmon[87022]: audit 2023-11-30T22:57:43.768 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 22:57:43 smithi167 conmon[87022]: 2023-11-30T22:57:42. 2023-11-30T22:57:43.768 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 22:57:43 smithi167 conmon[87022]: 532873+0000 mgr.smithi038.ldalxq (mgr.14182) 103 : audit [DBG] 2023-11-30T22:57:43.768 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 22:57:43 smithi167 conmon[87022]: from='mon.0 -' entity='mon.' cmd=[{"prefix": "dashboard set-prometheus-api-host", "value": "http://smithi038.front.sepia.ceph.com:9095"}]: dispatch 2023-11-30T22:57:43.768 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 22:57:43 smithi167 conmon[87022]: audit 2023 2023-11-30T22:57:43.768 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 22:57:43 smithi167 conmon[87022]: -11-30T22:57:42.537607+0000 2023-11-30T22:57:43.768 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 22:57:43 smithi167 conmon[87022]: mon.smithi038 (mon.0) 531 : audit [INF] 2023-11-30T22:57:43.768 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 22:57:43 smithi167 conmon[87022]: from='mgr.14182 172.21.15.38:0/2999689707' entity='mgr.smithi038.ldalxq' 2023-11-30T22:57:43.768 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 22:57:43 smithi167 conmon[87022]: audit 2023-11-30T22:57:43.768 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 22:57:43 smithi167 conmon[87022]: 2023-11-30T22:57:42.541066+0000 mon.smithi038 ( 2023-11-30T22:57:43.768 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 22:57:43 smithi167 conmon[87022]: mon.0) 532 : audit [DBG] from='mgr.14182 172.21.15.38:0/2999689707' entity='mgr.smithi038.ldalxq' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2023-11-30T22:57:44.949 INFO:teuthology.orchestra.run.smithi038.stdout: 2023-11-30T22:57:44.949 INFO:teuthology.orchestra.run.smithi038.stdout:{"epoch":36,"fsid":"3faf8b00-8fd3-11ee-95a2-87774f69a715","created":"2023-11-30T22:54:01.397506+0000","modified":"2023-11-30T22:57:25.869361+0000","last_up_change":"2023-11-30T22:57:23.843473+0000","last_in_change":"2023-11-30T22:56:47.742886+0000","flags":"sortbitwise,recovery_deletes,purged_snapdirs,pglog_hardlimit","flags_num":5799936,"flags_set":["pglog_hardlimit","purged_snapdirs","recovery_deletes","sortbitwise"],"crush_version":16,"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-11-30T22:57:10.238023+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":"25","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":"79c367f7-9a0b-487b-9b90-edbd237aaf4f","up":1,"in":1,"weight":1,"primary_affinity":1,"last_clean_begin":0,"last_clean_end":0,"up_from":16,"up_thru":34,"down_at":0,"lost_at":0,"public_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.167:6800","nonce":3313098133},{"type":"v1","addr":"172.21.15.167:6801","nonce":3313098133}]},"cluster_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.167:6802","nonce":3313098133},{"type":"v1","addr":"172.21.15.167:6803","nonce":3313098133}]},"heartbeat_back_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.167:6806","nonce":3313098133},{"type":"v1","addr":"172.21.15.167:6807","nonce":3313098133}]},"heartbeat_front_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.167:6804","nonce":3313098133},{"type":"v1","addr":"172.21.15.167:6805","nonce":3313098133}]},"public_addr":"172.21.15.167:6801/3313098133","cluster_addr":"172.21.15.167:6803/3313098133","heartbeat_back_addr":"172.21.15.167:6807/3313098133","heartbeat_front_addr":"172.21.15.167:6805/3313098133","state":["exists","up"]},{"osd":1,"uuid":"5ef29b01-28fc-48df-9975-2e960c2ab7af","up":1,"in":1,"weight":1,"primary_affinity":1,"last_clean_begin":0,"last_clean_end":0,"up_from":17,"up_thru":23,"down_at":0,"lost_at":0,"public_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.38:6802","nonce":2856563043},{"type":"v1","addr":"172.21.15.38:6803","nonce":2856563043}]},"cluster_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.38:6804","nonce":2856563043},{"type":"v1","addr":"172.21.15.38:6805","nonce":2856563043}]},"heartbeat_back_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.38:6808","nonce":2856563043},{"type":"v1","addr":"172.21.15.38:6809","nonce":2856563043}]},"heartbeat_front_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.38:6806","nonce":2856563043},{"type":"v1","addr":"172.21.15.38:6807","nonce":2856563043}]},"public_addr":"172.21.15.38:6803/2856563043","cluster_addr":"172.21.15.38:6805/2856563043","heartbeat_back_addr":"172.21.15.38:6809/2856563043","heartbeat_front_addr":"172.21.15.38:6807/2856563043","state":["exists","up"]},{"osd":2,"uuid":"edc6eee3-f74b-4b65-9018-f68330f9015d","up":1,"in":1,"weight":1,"primary_affinity":1,"last_clean_begin":0,"last_clean_end":0,"up_from":21,"up_thru":0,"down_at":0,"lost_at":0,"public_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.167:6808","nonce":1490848185},{"type":"v1","addr":"172.21.15.167:6809","nonce":1490848185}]},"cluster_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.167:6810","nonce":1490848185},{"type":"v1","addr":"172.21.15.167:6811","nonce":1490848185}]},"heartbeat_back_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.167:6814","nonce":1490848185},{"type":"v1","addr":"172.21.15.167:6815","nonce":1490848185}]},"heartbeat_front_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.167:6812","nonce":1490848185},{"type":"v1","addr":"172.21.15.167:6813","nonce":1490848185}]},"public_addr":"172.21.15.167:6809/1490848185","cluster_addr":"172.21.15.167:6811/1490848185","heartbeat_back_addr":"172.21.15.167:6815/1490848185","heartbeat_front_addr":"172.21.15.167:6813/1490848185","state":["exists","up"]},{"osd":3,"uuid":"3752cef2-4bce-4fc6-a8ba-65fea2d4ed1f","up":1,"in":1,"weight":1,"primary_affinity":1,"last_clean_begin":0,"last_clean_end":0,"up_from":23,"up_thru":0,"down_at":0,"lost_at":0,"public_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.38:6810","nonce":913475055},{"type":"v1","addr":"172.21.15.38:6811","nonce":913475055}]},"cluster_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.38:6812","nonce":913475055},{"type":"v1","addr":"172.21.15.38:6813","nonce":913475055}]},"heartbeat_back_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.38:6816","nonce":913475055},{"type":"v1","addr":"172.21.15.38:6817","nonce":913475055}]},"heartbeat_front_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.38:6814","nonce":913475055},{"type":"v1","addr":"172.21.15.38:6815","nonce":913475055}]},"public_addr":"172.21.15.38:6811/913475055","cluster_addr":"172.21.15.38:6813/913475055","heartbeat_back_addr":"172.21.15.38:6817/913475055","heartbeat_front_addr":"172.21.15.38:6815/913475055","state":["exists","up"]},{"osd":4,"uuid":"e351328e-d914-457f-ab87-5f63b9915bed","up":1,"in":1,"weight":1,"primary_affinity":1,"last_clean_begin":0,"last_clean_end":0,"up_from":26,"up_thru":0,"down_at":0,"lost_at":0,"public_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.167:6816","nonce":3515352043},{"type":"v1","addr":"172.21.15.167:6817","nonce":3515352043}]},"cluster_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.167:6818","nonce":3515352043},{"type":"v1","addr":"172.21.15.167:6819","nonce":3515352043}]},"heartbeat_back_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.167:6822","nonce":3515352043},{"type":"v1","addr":"172.21.15.167:6823","nonce":3515352043}]},"heartbeat_front_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.167:6820","nonce":3515352043},{"type":"v1","addr":"172.21.15.167:6821","nonce":3515352043}]},"public_addr":"172.21.15.167:6817/3515352043","cluster_addr":"172.21.15.167:6819/3515352043","heartbeat_back_addr":"172.21.15.167:6823/3515352043","heartbeat_front_addr":"172.21.15.167:6821/3515352043","state":["exists","up"]},{"osd":5,"uuid":"ffffbf3d-c0d6-4c78-a79e-0f157f158363","up":1,"in":1,"weight":1,"primary_affinity":1,"last_clean_begin":0,"last_clean_end":0,"up_from":29,"up_thru":0,"down_at":0,"lost_at":0,"public_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.38:6818","nonce":1758214256},{"type":"v1","addr":"172.21.15.38:6819","nonce":1758214256}]},"cluster_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.38:6820","nonce":1758214256},{"type":"v1","addr":"172.21.15.38:6821","nonce":1758214256}]},"heartbeat_back_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.38:6824","nonce":1758214256},{"type":"v1","addr":"172.21.15.38:6825","nonce":1758214256}]},"heartbeat_front_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.38:6822","nonce":1758214256},{"type":"v1","addr":"172.21.15.38:6823","nonce":1758214256}]},"public_addr":"172.21.15.38:6819/1758214256","cluster_addr":"172.21.15.38:6821/1758214256","heartbeat_back_addr":"172.21.15.38:6825/1758214256","heartbeat_front_addr":"172.21.15.38:6823/1758214256","state":["exists","up"]},{"osd":6,"uuid":"d12fbc72-890a-496d-aae6-48a205a3f235","up":1,"in":1,"weight":1,"primary_affinity":1,"last_clean_begin":0,"last_clean_end":0,"up_from":30,"up_thru":0,"down_at":0,"lost_at":0,"public_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.167:6824","nonce":1831583000},{"type":"v1","addr":"172.21.15.167:6825","nonce":1831583000}]},"cluster_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.167:6826","nonce":1831583000},{"type":"v1","addr":"172.21.15.167:6827","nonce":1831583000}]},"heartbeat_back_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.167:6830","nonce":1831583000},{"type":"v1","addr":"172.21.15.167:6831","nonce":1831583000}]},"heartbeat_front_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.167:6828","nonce":1831583000},{"type":"v1","addr":"172.21.15.167:6829","nonce":1831583000}]},"public_addr":"172.21.15.167:6825/1831583000","cluster_addr":"172.21.15.167:6827/1831583000","heartbeat_back_addr":"172.21.15.167:6831/1831583000","heartbeat_front_addr":"172.21.15.167:6829/1831583000","state":["exists","up"]},{"osd":7,"uuid":"e2713078-6748-4b3c-9b03-c18369bb2b3d","up":1,"in":1,"weight":1,"primary_affinity":1,"last_clean_begin":0,"last_clean_end":0,"up_from":34,"up_thru":35,"down_at":0,"lost_at":0,"public_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.38:6826","nonce":2904554847},{"type":"v1","addr":"172.21.15.38:6827","nonce":2904554847}]},"cluster_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.38:6828","nonce":2904554847},{"type":"v1","addr":"172.21.15.38:6829","nonce":2904554847}]},"heartbeat_back_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.38:6832","nonce":2904554847},{"type":"v1","addr":"172.21.15.38:6833","nonce":2904554847}]},"heartbeat_front_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.38:6830","nonce":2904554847},{"type":"v1","addr":"172.21.15.38:6831","nonce":2904554847}]},"public_addr":"172.21.15.38:6827/2904554847","cluster_addr":"172.21.15.38:6829/2904554847","heartbeat_back_addr":"172.21.15.38:6833/2904554847","heartbeat_front_addr":"172.21.15.38:6831/2904554847","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-11-30T22:57:03.006940+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-11-30T22:57:04.162452+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-11-30T22:57:08.008155+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-11-30T22:57:10.744541+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-11-30T22:57:12.819370+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-11-30T22:57:16.196441+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-11-30T22:57:17.566854+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-11-30T22:57:21.825049+0000","dead_epoch":0}],"pg_upmap":[],"pg_upmap_items":[],"pg_temp":[],"primary_temp":[],"blocklist":{"172.21.15.38:0/2636861943":"2023-12-01T22:55:42.173954+0000","172.21.15.38:6800/1169858699":"2023-12-01T22:55:42.173954+0000","172.21.15.38:0/888972314":"2023-12-01T22:55:42.173954+0000","172.21.15.38:0/2064425667":"2023-12-01T22:54:56.797200+0000","172.21.15.38:6801/1982733063":"2023-12-01T22:54:56.797200+0000","172.21.15.38:6801/1169858699":"2023-12-01T22:55:42.173954+0000","172.21.15.38:6800/1982733063":"2023-12-01T22:54:56.797200+0000","172.21.15.38:0/3958299474":"2023-12-01T22:54:56.797200+0000","172.21.15.38:0/3301221646":"2023-12-01T22:54:32.328905+0000","172.21.15.38:0/1866869556":"2023-12-01T22:54:32.328905+0000","172.21.15.38:6800/3868205158":"2023-12-01T22:54:32.328905+0000","172.21.15.38:6801/3868205158":"2023-12-01T22:54:32.328905+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-11-30T22:57:45.567 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:57:45 smithi038 conmon[81956]: cluster 2023-11-30T22:57:44.200744+0000 mgr.smithi038.ldalxq (mgr.14182) 104 : cluster [DBG] pgmap v86: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2023-11-30T22:57:45.567 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:57:45 smithi038 conmon[81956]: audit 2023-11-30T22:57:44.947723+0000 mon.smithi038 (mon.0) 533 : audit [DBG] from='client.? 172.21.15.38:0/4091641489' entity='client.admin' cmd=[{"prefix": "osd dump", "format": "json"}]: dispatch 2023-11-30T22:57:45.568 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:57:45 smithi038 conmon[81956]: audit 2023-11-30T22:57:45.436807+0000 mon.smithi038 (mon.0) 534 : audit [INF] from='mgr.14182 172.21.15.38:0/2999689707' entity='mgr.smithi038.ldalxq' 2023-11-30T22:57:45.586 DEBUG:teuthology.orchestra.run.smithi038:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:0dc074ce0b0b3b4f393f56dd32ef36884ebf45a9 shell --fsid 3faf8b00-8fd3-11ee-95a2-87774f69a715 -- ceph tell osd.0 flush_pg_stats 2023-11-30T22:57:45.762 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 22:57:45 smithi167 conmon[87022]: cluster 2023-11-30T22:57:44.200744+0000 mgr.smithi038.ldalxq (mgr.14182) 104 2023-11-30T22:57:45.762 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 22:57:45 smithi167 conmon[87022]: : cluster [DBG] pgmap v86: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2023-11-30T22:57:45.762 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 22:57:45 smithi167 conmon[87022]: audit 2023-11-30T22:57:44.947723+0000 mon.smithi038 (mon.0) 533 : audit [DBG] from='client.? 172.21.15.38:0/4091641489' entity='client.admin' cmd=[{"prefix": "osd dump", "format": "json"}]: dispatch 2023-11-30T22:57:45.762 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 22:57:45 smithi167 conmon[87022]: audit 2023-11-30T22:57:45.436807+0000 mon.smithi038 (mon.0) 534 : audit [INF] from='mgr.14182 172.21.15.38:0/2999689707' entity='mgr.smithi038.ldalxq' 2023-11-30T22:57:46.341 INFO:teuthology.orchestra.run.smithi038.stderr:Inferring config /var/lib/ceph/3faf8b00-8fd3-11ee-95a2-87774f69a715/mon.smithi038/config 2023-11-30T22:57:46.981 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:57:46 smithi038 conmon[81956]: cluster 2023-11-30T22:57:46.201141+0000 mgr.smithi038.ldalxq (mgr.14182) 105 : cluster [DBG] pgmap v87: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2023-11-30T22:57:47.012 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 22:57:46 smithi167 conmon[87022]: cluster 2023-11-30T22:57:46.201141+0000 mgr.smithi038.ldalxq (mgr.14182) 105 : cluster [DBG] pgmap v87: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2023-11-30T22:57:48.504 INFO:teuthology.orchestra.run.smithi038.stdout:68719476747 2023-11-30T22:57:48.504 DEBUG:teuthology.orchestra.run.smithi038:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:0dc074ce0b0b3b4f393f56dd32ef36884ebf45a9 shell --fsid 3faf8b00-8fd3-11ee-95a2-87774f69a715 -- ceph tell osd.1 flush_pg_stats 2023-11-30T22:57:49.116 INFO:teuthology.orchestra.run.smithi038.stderr:Inferring config /var/lib/ceph/3faf8b00-8fd3-11ee-95a2-87774f69a715/mon.smithi038/config 2023-11-30T22:57:49.507 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:57:49 smithi038 conmon[81956]: cluster 2023-11-30T22:57:48.201594+0000 mgr.smithi038.ldalxq 2023-11-30T22:57:49.507 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:57:49 smithi038 conmon[81956]: (mgr.14182) 106 : cluster [DBG] pgmap v88: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2023-11-30T22:57:49.507 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:57:49 smithi038 conmon[81956]: audit 2023-11-30T22:57:48.737315+0000 mon.smithi038 (mon.0) 535 2023-11-30T22:57:49.507 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:57:49 smithi038 conmon[81956]: : audit [INF] from='mgr.14182 172.21.15.38:0/2999689707' entity='mgr.smithi038.ldalxq' 2023-11-30T22:57:49.508 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:57:49 smithi038 conmon[81956]: audit 2023-11 2023-11-30T22:57:49.508 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:57:49 smithi038 conmon[81956]: -30T22:57:48.959291+0000 2023-11-30T22:57:49.508 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:57:49 smithi038 conmon[81956]: mon.smithi038 (mon.0) 536 : audit [INF] from='mgr.14182 172.21.15.38:0/2999689707' entity='mgr.smithi038.ldalxq' 2023-11-30T22:57:49.508 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:57:49 smithi038 conmon[81956]: 2023-11-30T22:57:49.508 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:57:49 smithi038 conmon[81956]: audit 2023-11-30T22:57: 2023-11-30T22:57:49.508 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:57:49 smithi038 conmon[81956]: 49.138731+0000 mon.smithi038 (mon.0) 537 2023-11-30T22:57:49.508 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:57:49 smithi038 conmon[81956]: : audit [INF] from='mgr.14182 172.21.15.38:0/2999689707' entity='mgr.smithi038.ldalxq' 2023-11-30T22:57:49.508 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:57:49 smithi038 conmon[81956]: audit 2023-11-30T22 2023-11-30T22:57:49.508 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:57:49 smithi038 conmon[81956]: :57:49.139830+0000 mon.smithi038 (mon. 2023-11-30T22:57:49.508 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:57:49 smithi038 conmon[81956]: 0) 538 : audit [INF] from='mgr.14182 172.21.15.38:0/2999689707' entity='mgr.smithi038.ldalxq' cmd=[{"prefix": "config rm", "who": "osd.0", "name": "osd_memory_target"}]: dispatch 2023-11-30T22:57:49.508 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:57:49 smithi038 conmon[81956]: audit 2023-11- 2023-11-30T22:57:49.508 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:57:49 smithi038 conmon[81956]: 30T22:57:49.140532 2023-11-30T22:57:49.509 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:57:49 smithi038 conmon[81956]: +0000 mon.smithi038 (mon.0) 539 2023-11-30T22:57:49.509 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:57:49 smithi038 conmon[81956]: : audit [INF] from='mgr.14182 172.21.15.38:0/2999689707' entity='mgr.smithi038.ldalxq' cmd=[{"prefix": "config rm", "who": "osd.2", "name": "osd_memory_target"}]: dispatch 2023-11-30T22:57:49.509 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:57:49 smithi038 conmon[81956]: audit 2023-11-30T 2023-11-30T22:57:49.509 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:57:49 smithi038 conmon[81956]: 22:57:49.141215+0000 mon.smithi038 (mon.0) 540 : audit [INF] from='mgr.14182 172.21.15.38:0/2999689707' entity='mgr.smithi038.ldalxq' cmd=[{"prefix": "config rm", "who": "osd.4", "name": "osd_memory_target"}]: dispatch 2023-11-30T22:57:49.509 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:57:49 smithi038 conmon[81956]: 2023-11-30T22:57:49.509 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:57:49 smithi038 conmon[81956]: audit 2023-11-30T22:57 2023-11-30T22:57:49.509 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:57:49 smithi038 conmon[81956]: :49.141994+0000 mon.smithi038 (mon.0) 541 : audit [INF] from='mgr.14182 172.21.15.38:0/2999689707' entity='mgr.smithi038.ldalxq' cmd=[{"prefix": "config rm", "who": "osd.6", "name": "osd_memory_target"}]: dispatch 2023-11-30T22:57:49.509 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:57:49 smithi038 conmon[81956]: audit 2023-11-30T22:57:49 2023-11-30T22:57:49.509 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:57:49 smithi038 conmon[81956]: .148750+0000 mon.smithi038 (mon.0) 542 : 2023-11-30T22:57:49.509 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:57:49 smithi038 conmon[81956]: audit [INF] from='mgr.14182 172.21.15.38:0/2999689707' entity='mgr.smithi038.ldalxq' 2023-11-30T22:57:49.512 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 22:57:49 smithi167 conmon[87022]: cluster 2023-11-30T22:57:48.201594+0000 mgr.smithi038.ldalxq (mgr.14182) 106 : cluster [DBG] pgmap v88: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2023-11-30T22:57:49.512 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 22:57:49 smithi167 conmon[87022]: audit 2023-11-30T22:57:48.737315+0000 mon.smithi038 (mon.0) 535 : audit [INF] from='mgr.14182 172.21.15.38:0/2999689707' entity='mgr.smithi038.ldalxq' 2023-11-30T22:57:49.512 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 22:57:49 smithi167 conmon[87022]: audit 2023-11-30T22:57:48.959291+0000 mon.smithi038 (mon.0) 536 : audit [INF] from='mgr.14182 172.21.15.38:0/2999689707' entity='mgr.smithi038.ldalxq' 2023-11-30T22:57:49.512 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 22:57:49 smithi167 conmon[87022]: audit 2023-11-30T22:57:49.138731+0000 mon.smithi038 (mon.0) 537 : audit [INF] from='mgr.14182 172.21.15.38:0/2999689707' entity='mgr.smithi038.ldalxq' 2023-11-30T22:57:49.512 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 22:57:49 smithi167 conmon[87022]: audit 2023-11-30T22:57:49.139830+0000 mon.smithi038 (mon.0) 538 : audit [INF] from='mgr.14182 172.21.15.38:0/2999689707' entity='mgr.smithi038.ldalxq' cmd=[{"prefix": "config rm", "who": "osd.0", "name": "osd_memory_target"}]: dispatch 2023-11-30T22:57:49.512 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 22:57:49 smithi167 conmon[87022]: audit 2023-11-30T22:57:49.140532+0000 mon.smithi038 (mon.0) 539 : audit [INF] from='mgr.14182 172.21.15.38:0/2999689707' entity='mgr.smithi038.ldalxq' cmd=[{"prefix": "config rm", "who": "osd.2", "name": "osd_memory_target"}]: dispatch 2023-11-30T22:57:49.512 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 22:57:49 smithi167 conmon[87022]: audit 2023-11-30T22:57:49.141215+0000 mon.smithi038 (mon.0) 540 : audit [INF] from='mgr.14182 172.21.15.38:0/2999689707' entity='mgr.smithi038.ldalxq' cmd=[{"prefix": "config rm", "who": "osd.4", "name": "osd_memory_target"}]: dispatch 2023-11-30T22:57:49.512 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 22:57:49 smithi167 conmon[87022]: audit 2023-11-30T22:57:49.141994+0000 mon.smithi038 (mon.0) 541 : audit [INF] from='mgr.14182 172.21.15.38:0/2999689707' entity='mgr.smithi038.ldalxq' cmd=[{"prefix": "config rm", "who": "osd.6", "name": "osd_memory_target"}]: dispatch 2023-11-30T22:57:49.513 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 22:57:49 smithi167 conmon[87022]: audit 2023-11-30T22:57:49.148750+0000 mon.smithi038 (mon.0) 542 : audit [INF] from='mgr.14182 172.21.15.38:0/2999689707' entity='mgr.smithi038.ldalxq' 2023-11-30T22:57:50.524 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:57:50 smithi038 conmon[81956]: cephadm 2023-11-30T22:57:48.731176+0000 mgr.smithi038.ldalxq (mgr.14182) 107 : cephadm [INF] Detected new or changed devices on smithi167 2023-11-30T22:57:50.524 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:57:50 smithi038 conmon[81956]: cephadm 2023-11-30T22:57:49.142581+0000 mgr.smithi038.ldalxq (mgr.14182) 108 : cephadm [INF] Adjusting osd_memory_target on smithi167 to 4004M 2023-11-30T22:57:50.762 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 22:57:50 smithi167 conmon[87022]: cephadm 2023-11-30T22:57:48.731176+0000 mgr.smithi038.ldalxq ( 2023-11-30T22:57:50.762 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 22:57:50 smithi167 conmon[87022]: mgr.14182) 107 : cephadm [INF] Detected new or changed devices on smithi167 2023-11-30T22:57:50.762 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 22:57:50 smithi167 conmon[87022]: cephadm 2023-11-30T22:57:49.142581+0000 mgr.smithi038.ldalxq (mgr.14182) 108 : cephadm [INF] Adjusting osd_memory_target on smithi167 to 4004M 2023-11-30T22:57:51.372 INFO:teuthology.orchestra.run.smithi038.stdout:73014444043 2023-11-30T22:57:51.373 DEBUG:teuthology.orchestra.run.smithi038:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:0dc074ce0b0b3b4f393f56dd32ef36884ebf45a9 shell --fsid 3faf8b00-8fd3-11ee-95a2-87774f69a715 -- ceph tell osd.2 flush_pg_stats 2023-11-30T22:57:51.524 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:57:51 smithi038 conmon[81956]: cluster 2023-11-30T22:57:50.201890+0000 mgr.smithi038.ldalxq (mgr.14182) 109 : cluster [DBG] pgmap v89: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2023-11-30T22:57:51.762 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 22:57:51 smithi167 conmon[87022]: cluster 2023-11-30T22:57:50.201890+0000 mgr.smithi038.ldalxq (mgr.14182 2023-11-30T22:57:51.762 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 22:57:51 smithi167 conmon[87022]: ) 109 : cluster [DBG] pgmap v89: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2023-11-30T22:57:51.977 INFO:teuthology.orchestra.run.smithi038.stderr:Inferring config /var/lib/ceph/3faf8b00-8fd3-11ee-95a2-87774f69a715/mon.smithi038/config 2023-11-30T22:57:53.524 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:57:53 smithi038 conmon[81956]: cluster 2023-11-30T22:57:52.202205+0000 mgr.smithi038.ldalxq (mgr.14182) 110 : cluster [DBG] pgmap v90: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2023-11-30T22:57:53.762 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 22:57:53 smithi167 conmon[87022]: cluster 2023-11-30T22:57:52.202205+0000 mgr.smithi038.ldalxq (mgr.14182) 110 : cluster 2023-11-30T22:57:53.762 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 22:57:53 smithi167 conmon[87022]: [DBG] pgmap v90: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2023-11-30T22:57:54.306 INFO:teuthology.orchestra.run.smithi038.stdout:90194313228 2023-11-30T22:57:54.306 DEBUG:teuthology.orchestra.run.smithi038:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:0dc074ce0b0b3b4f393f56dd32ef36884ebf45a9 shell --fsid 3faf8b00-8fd3-11ee-95a2-87774f69a715 -- ceph tell osd.3 flush_pg_stats 2023-11-30T22:57:54.913 INFO:teuthology.orchestra.run.smithi038.stderr:Inferring config /var/lib/ceph/3faf8b00-8fd3-11ee-95a2-87774f69a715/mon.smithi038/config 2023-11-30T22:57:55.139 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:57:54 smithi038 conmon[81956]: cephadm 2023-11-30T22:57:53.871437+0000 mgr.smithi038.ldalxq (mgr.14182) 111 : cephadm [INF] Detected new or changed devices on smithi038 2023-11-30T22:57:55.139 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:57:54 smithi038 conmon[81956]: audit 2023-11-30T22:57:53.877058+0000 mon.smithi038 (mon.0) 543 : audit [INF] from='mgr.14182 172.21.15.38:0/2999689707' entity='mgr.smithi038.ldalxq' 2023-11-30T22:57:55.139 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:57:54 smithi038 conmon[81956]: cluster 2023-11-30T22:57:54.202506+0000 mgr.smithi038.ldalxq (mgr.14182) 112 : cluster [DBG] pgmap v91: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2023-11-30T22:57:55.139 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:57:54 smithi038 conmon[81956]: audit 2023-11-30T22:57:54.412952+0000 mon.smithi038 (mon.0) 544 : audit [INF] from='mgr.14182 172.21.15.38:0/2999689707' entity='mgr.smithi038.ldalxq' 2023-11-30T22:57:55.139 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:57:54 smithi038 conmon[81956]: audit 2023-11-30T22:57:54.414048+0000 mon.smithi038 (mon.0) 545 : audit [INF] from='mgr.14182 172.21.15.38:0/2999689707' entity='mgr.smithi038.ldalxq' cmd=[{"prefix": "config rm", "who": "osd.1", "name": "osd_memory_target"}]: dispatch 2023-11-30T22:57:55.139 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:57:54 smithi038 conmon[81956]: audit 2023-11-30T22:57:54.414728+0000 mon.smithi038 (mon.0) 546 : audit [INF] from='mgr.14182 172.21.15.38:0/2999689707' entity='mgr.smithi038.ldalxq' cmd=[{"prefix": "config rm", "who": "osd.3", "name": "osd_memory_target"}]: dispatch 2023-11-30T22:57:55.139 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:57:54 smithi038 conmon[81956]: audit 2023-11-30T22:57:54.415348+0000 mon.smithi038 (mon.0) 547 : 2023-11-30T22:57:55.139 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:57:54 smithi038 conmon[81956]: audit [INF] from='mgr.14182 172.21.15.38:0/2999689707' entity='mgr.smithi038.ldalxq' cmd=[{"prefix": "config rm", "who": "osd.5", "name": "osd_memory_target"}]: dispatch 2023-11-30T22:57:55.139 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:57:54 smithi038 conmon[81956]: audit 2023-11-30T22:57:54.415951+0000 mon.smithi038 (mon.0) 548 : audit [INF] from='mgr.14182 172.21.15.38:0/2999689707' entity='mgr.smithi038.ldalxq' cmd=[{"prefix": "config rm", "who": "osd.7", "name": "osd_memory_target"}]: dispatch 2023-11-30T22:57:55.139 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:57:54 smithi038 conmon[81956]: cephadm 2023-11-30T22:57:54.416470+0000 mgr.smithi038.ldalxq (mgr.14182) 113 : cephadm [INF] Adjusting osd_memory_target on smithi038 to 3237M 2023-11-30T22:57:55.139 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:57:54 smithi038 conmon[81956]: audit 2023-11-30T22:57:54.421291+0000 mon.smithi038 (mon.0) 549 : audit [INF] from='mgr.14182 172.21.15.38:0/2999689707' entity='mgr.smithi038.ldalxq' 2023-11-30T22:57:55.140 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:57:54 smithi038 conmon[81956]: audit 2023-11-30T22:57:54.422521+0000 mon.smithi038 (mon.0) 550 : audit [DBG] from='mgr.14182 172.21.15.38:0/2999689707' entity='mgr.smithi038.ldalxq' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2023-11-30T22:57:55.140 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:57:54 smithi038 conmon[81956]: audit 2023-11-30T22:57:54.423137+0000 mon.smithi038 (mon.0) 551 : audit [INF] from='mgr.14182 172.21.15.38:0/2999689707' entity='mgr.smithi038.ldalxq' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2023-11-30T22:57:55.140 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:57:54 smithi038 conmon[81956]: audit 2023-11-30T22:57:54.427547+0000 mon.smithi038 (mon.0) 552 : audit [INF] from='mgr.14182 172.21.15.38:0/2999689707' entity='mgr.smithi038.ldalxq' 2023-11-30T22:57:55.140 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:57:54 smithi038 conmon[81956]: audit 2023-11-30T22:57:54.431186+0000 mon.smithi038 (mon.0) 553 : audit [DBG] from='mgr.14182 172.21.15.38:0/2999689707' entity='mgr.smithi038.ldalxq' cmd=[{"prefix": "osd tree", "states": ["destroyed"], "format": "json"}]: dispatch 2023-11-30T22:57:55.140 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:57:54 smithi038 conmon[81956]: audit 2023-11-30T22:57:54.434197+0000 mon.smithi038 (mon.0) 554 : audit [INF] from='mgr.14182 172.21.15.38:0/2999689707' entity='mgr.smithi038.ldalxq' cmd=[{"prefix": "auth get", "entity": "client.bootstrap-osd"}]: dispatch 2023-11-30T22:57:55.140 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:57:54 smithi038 conmon[81956]: audit 2023-11-30T22:57:54.435219+0000 mon.smithi038 (mon.0) 555 : audit [INF] from='mgr.14182 172.21.15.38:0/2999689707' entity='mgr.smithi038.ldalxq' cmd=[{"prefix": "auth get", "entity": "client.bootstrap-osd"}]: dispatch 2023-11-30T22:57:55.140 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:57:54 smithi038 conmon[81956]: audit 2023-11-30T22:57:54.435527+0000 mon.smithi038 (mon.0) 556 : audit [DBG] from='mgr.14182 172.21.15.38:0/2999689707' entity='mgr.smithi038.ldalxq' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2023-11-30T22:57:55.140 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:57:54 smithi038 conmon[81956]: audit 2023-11-30T22:57:54.436042+0000 mon.smithi038 (mon.0) 557 : audit [DBG] from='mgr.14182 172.21.15.38:0/2999689707' entity='mgr.smithi038.ldalxq' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2023-11-30T22:57:55.233 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 22:57:54 smithi167 conmon[87022]: cephadm 2023-11-30T22:57:53.871437+0000 mgr.smithi038.ldalxq (mgr.14182) 111 : cephadm [INF] Detected new or changed devices on smithi038 2023-11-30T22:57:55.233 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 22:57:54 smithi167 conmon[87022]: audit 2023-11-30T22:57:53.877058+0000 mon.smithi038 (mon.0) 543 : audit [INF] from='mgr.14182 172.21.15.38:0/2999689707' entity='mgr.smithi038.ldalxq' 2023-11-30T22:57:55.233 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 22:57:54 smithi167 conmon[87022]: cluster 2023-11-30T22:57:54.202506+0000 mgr.smithi038.ldalxq (mgr.14182) 112 : cluster [DBG] pgmap v91: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2023-11-30T22:57:55.233 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 22:57:54 smithi167 conmon[87022]: audit 2023-11-30T22:57:54.412952+0000 mon.smithi038 (mon.0) 544 : audit [INF] from='mgr.14182 172.21.15.38:0/2999689707' entity='mgr.smithi038.ldalxq' 2023-11-30T22:57:55.233 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 22:57:54 smithi167 conmon[87022]: audit 2023-11-30T22:57:54.414048+0000 mon.smithi038 (mon.0) 545 : audit [INF] from='mgr.14182 172.21.15.38:0/2999689707' entity='mgr.smithi038.ldalxq' cmd=[{"prefix": "config rm", "who": "osd.1", "name": "osd_memory_target"}]: dispatch 2023-11-30T22:57:55.234 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 22:57:54 smithi167 conmon[87022]: audit 2023-11-30T22:57:54.414728+0000 mon.smithi038 (mon.0) 546 : audit [INF] from='mgr.14182 172.21.15.38:0/2999689707' entity='mgr.smithi038.ldalxq' cmd=[{"prefix": "config rm", "who": "osd.3", "name": "osd_memory_target"}]: dispatch 2023-11-30T22:57:55.234 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 22:57:54 smithi167 conmon[87022]: audit 2023-11-30T22:57:54.415348+0000 mon.smithi038 (mon.0) 547 : audit [INF] from='mgr.14182 172.21.15.38:0/2999689707' entity='mgr.smithi038.ldalxq' cmd=[{"prefix": "config rm", "who": "osd.5", "name": "osd_memory_target"}]: dispatch 2023-11-30T22:57:55.234 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 22:57:54 smithi167 conmon[87022]: audit 2023-11-30T22:57:54.415951+0000 mon.smithi038 (mon.0) 548 : audit [INF] from='mgr.14182 172.21.15.38:0/2999689707' entity='mgr.smithi038.ldalxq' cmd=[{"prefix": "config rm", "who": "osd.7", "name": "osd_memory_target"}]: dispatch 2023-11-30T22:57:55.234 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 22:57:54 smithi167 conmon[87022]: cephadm 2023-11-30T22:57:54.416470+0000 mgr.smithi038.ldalxq (mgr.14182) 113 : cephadm [INF] Adjusting osd_memory_target on smithi038 to 3237M 2023-11-30T22:57:55.234 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 22:57:54 smithi167 conmon[87022]: audit 2023-11-30T22:57:54.421291+0000 mon.smithi038 (mon.0) 549 : audit [INF] from='mgr.14182 172.21.15.38:0/2999689707' entity='mgr.smithi038.ldalxq' 2023-11-30T22:57:55.234 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 22:57:54 smithi167 conmon[87022]: audit 2023-11-30T22:57:54.422521+0000 mon.smithi038 (mon.0) 550 : audit [DBG] from='mgr.14182 172.21.15.38:0/2999689707' entity='mgr.smithi038.ldalxq' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2023-11-30T22:57:55.234 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 22:57:54 smithi167 conmon[87022]: audit 2023-11-30T22:57:54.423137+0000 mon.smithi038 (mon.0) 2023-11-30T22:57:55.234 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 22:57:54 smithi167 conmon[87022]: 551 : audit [INF] from='mgr.14182 172.21.15.38:0/2999689707' entity='mgr.smithi038.ldalxq' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2023-11-30T22:57:55.234 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 22:57:54 smithi167 conmon[87022]: audit 2023-11-30T22:57:54.427547+0000 mon.smithi038 (mon.0) 552 : audit [INF] from='mgr.14182 172.21.15.38:0/2999689707' entity='mgr.smithi038.ldalxq' 2023-11-30T22:57:55.234 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 22:57:54 smithi167 conmon[87022]: audit 2023-11-30T22:57:54.431186+0000 mon.smithi038 (mon.0) 553 : audit [DBG] from='mgr.14182 172.21.15.38:0/2999689707' entity='mgr.smithi038.ldalxq' cmd=[{"prefix": "osd tree", "states": ["destroyed"], "format": "json"}]: dispatch 2023-11-30T22:57:55.234 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 22:57:54 smithi167 conmon[87022]: audit 2023-11-30T22:57:54.434197+0000 mon.smithi038 (mon.0) 554 : audit [INF] from='mgr.14182 172.21.15.38:0/2999689707' entity='mgr.smithi038.ldalxq' cmd=[{"prefix": "auth get", "entity": "client.bootstrap-osd"}]: dispatch 2023-11-30T22:57:55.234 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 22:57:54 smithi167 conmon[87022]: audit 2023-11-30T22:57:54.435219+0000 mon.smithi038 (mon.0) 555 : audit [INF] from='mgr.14182 172.21.15.38:0/2999689707' entity='mgr.smithi038.ldalxq' cmd=[{"prefix": "auth get", "entity": "client.bootstrap-osd"}]: dispatch 2023-11-30T22:57:55.235 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 22:57:54 smithi167 conmon[87022]: audit 2023- 2023-11-30T22:57:55.235 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 22:57:54 smithi167 conmon[87022]: 11-30T22:57:54.435527+0000 2023-11-30T22:57:55.235 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 22:57:54 smithi167 conmon[87022]: mon.smithi038 (mon.0) 556 : audit [DBG] from='mgr.14182 172.21.15.38:0/2999689707' entity='mgr.smithi038.ldalxq' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2023-11-30T22:57:55.235 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 22:57:54 smithi167 conmon[87022]: 2023-11-30T22:57:55.235 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 22:57:54 smithi167 conmon[87022]: audit 2023-11-30T22:57:55.235 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 22:57:54 smithi167 conmon[87022]: 2023-11-30T22:57:54.436042+0000 2023-11-30T22:57:55.235 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 22:57:54 smithi167 conmon[87022]: mon.smithi038 (mon.0) 557 : audit [DBG] from='mgr.14182 172.21.15.38:0/2999689707' entity='mgr.smithi038.ldalxq' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2023-11-30T22:57:55.235 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 22:57:54 smithi167 conmon[87022]: 2023-11-30T22:57:57.012 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 22:57:56 smithi167 conmon[87022]: cluster 2023-11-30T22:57:56.202812+0000 mgr.smithi038.ldalxq (mgr.14182) 114 : cluster [DBG] pgmap v92: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2023-11-30T22:57:57.025 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:57:56 smithi038 conmon[81956]: cluster 2023-11-30T22:57:56.202812+0000 mgr.smithi038.ldalxq (mgr.14182) 114 : cluster [DBG] pgmap v92: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2023-11-30T22:57:57.210 INFO:teuthology.orchestra.run.smithi038.stdout:98784247820 2023-11-30T22:57:57.210 DEBUG:teuthology.orchestra.run.smithi038:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:0dc074ce0b0b3b4f393f56dd32ef36884ebf45a9 shell --fsid 3faf8b00-8fd3-11ee-95a2-87774f69a715 -- ceph tell osd.4 flush_pg_stats 2023-11-30T22:57:57.812 INFO:teuthology.orchestra.run.smithi038.stderr:Inferring config /var/lib/ceph/3faf8b00-8fd3-11ee-95a2-87774f69a715/mon.smithi038/config 2023-11-30T22:57:59.429 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:57:59 smithi038 conmon[81956]: cluster 2023-11-30T22:57: 2023-11-30T22:57:59.429 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:57:59 smithi038 conmon[81956]: 58.203314+0000 mgr.smithi038.ldalxq (mgr.14182) 115 : cluster [DBG] pgmap v93: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2023-11-30T22:57:59.512 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 22:57:59 smithi167 conmon[87022]: cluster 2023-11-30T22:57:58.203314+0000 mgr.smithi038.ldalxq (mgr.14182) 115 : cluster [DBG] pgmap v93: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2023-11-30T22:58:00.019 INFO:teuthology.orchestra.run.smithi038.stdout:111669149707 2023-11-30T22:58:00.019 DEBUG:teuthology.orchestra.run.smithi038:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:0dc074ce0b0b3b4f393f56dd32ef36884ebf45a9 shell --fsid 3faf8b00-8fd3-11ee-95a2-87774f69a715 -- ceph tell osd.5 flush_pg_stats 2023-11-30T22:58:00.690 INFO:teuthology.orchestra.run.smithi038.stderr:Inferring config /var/lib/ceph/3faf8b00-8fd3-11ee-95a2-87774f69a715/mon.smithi038/config 2023-11-30T22:58:01.515 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 22:58:01 smithi167 conmon[87022]: cluster 2023-11-30T22:58:00.203600+0000 mgr.smithi038.ldalxq (mgr. 2023-11-30T22:58:01.516 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 22:58:01 smithi167 conmon[87022]: 14182) 116 : cluster [DBG] pgmap v94: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2023-11-30T22:58:01.524 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:58:01 smithi038 conmon[81956]: cluster 2023-11-30T22:58:00.203600+0000 mgr.smithi038.ldalxq (mgr.14182) 116 : cluster [DBG] pgmap v94: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2023-11-30T22:58:02.724 INFO:teuthology.orchestra.run.smithi038.stdout:124554051596 2023-11-30T22:58:02.725 DEBUG:teuthology.orchestra.run.smithi038:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:0dc074ce0b0b3b4f393f56dd32ef36884ebf45a9 shell --fsid 3faf8b00-8fd3-11ee-95a2-87774f69a715 -- ceph tell osd.6 flush_pg_stats 2023-11-30T22:58:03.524 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:58:03 smithi038 conmon[81956]: cluster 2023-11-30T22:58:02.203891+0000 mgr.smithi038.ldalxq (mgr.14182) 117 : cluster [DBG] pgmap v95: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2023-11-30T22:58:03.524 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:58:03 smithi038 conmon[81956]: audit 2023-11-30T22:58:02.655202+0000 mon.smithi038 (mon.0) 558 : audit [INF] from='mgr.14182 172.21.15.38:0/2999689707' entity='mgr.smithi038.ldalxq' 2023-11-30T22:58:03.762 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 22:58:03 smithi167 conmon[87022]: cluster 2023-11-30T22:58:02.203891+0000 mgr.smithi038.ldalxq (mgr.14182) 117 : cluster [DBG] pgmap v95: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2023-11-30T22:58:03.762 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 22:58:03 smithi167 conmon[87022]: audit 2023-11-30T 2023-11-30T22:58:03.762 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 22:58:03 smithi167 conmon[87022]: 22:58:02.655202+0000 mon.smithi038 (mon.0) 558 : audit [INF] from='mgr.14182 172.21.15.38:0/2999689707' entity='mgr.smithi038.ldalxq' 2023-11-30T22:58:04.064 INFO:teuthology.orchestra.run.smithi038.stderr:Inferring config /var/lib/ceph/3faf8b00-8fd3-11ee-95a2-87774f69a715/mon.smithi038/config 2023-11-30T22:58:05.524 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:58:05 smithi038 conmon[81956]: cluster 2023-11-30T22:58:04.204198+0000 mgr.smithi038.ldalxq (mgr.14182) 118 : cluster [DBG] pgmap v96: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2023-11-30T22:58:05.762 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 22:58:05 smithi167 conmon[87022]: cluster 2023-11-30T22:58:04.204198+0000 mgr.smithi038.ldalxq (mgr.14182) 118 : cluster [DBG] 2023-11-30T22:58:05.762 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 22:58:05 smithi167 conmon[87022]: pgmap v96: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2023-11-30T22:58:06.074 INFO:teuthology.orchestra.run.smithi038.stdout:128849018893 2023-11-30T22:58:06.074 DEBUG:teuthology.orchestra.run.smithi038:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:0dc074ce0b0b3b4f393f56dd32ef36884ebf45a9 shell --fsid 3faf8b00-8fd3-11ee-95a2-87774f69a715 -- ceph tell osd.7 flush_pg_stats 2023-11-30T22:58:06.678 INFO:teuthology.orchestra.run.smithi038.stderr:Inferring config /var/lib/ceph/3faf8b00-8fd3-11ee-95a2-87774f69a715/mon.smithi038/config 2023-11-30T22:58:06.762 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 22:58:06 smithi167 conmon[87022]: audit 2023-11-30T22:58:05.328814+0000 mon.smithi038 (mon.0) 559 2023-11-30T22:58:06.762 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 22:58:06 smithi167 conmon[87022]: : audit [INF] from='mgr.14182 172.21.15.38:0/2999689707' entity='mgr.smithi038.ldalxq' 2023-11-30T22:58:06.762 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 22:58:06 smithi167 conmon[87022]: audit 2023-11-30T22:58:05.330684+0000 mon.smithi038 (mon.0) 560 : audit [DBG] from='mgr.14182 172.21.15.38:0/2999689707' entity='mgr.smithi038.ldalxq' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2023-11-30T22:58:06.774 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:58:06 smithi038 conmon[81956]: audit 2023-11-30T22:58:05.328814+0000 mon.smithi038 (mon.0 2023-11-30T22:58:06.774 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:58:06 smithi038 conmon[81956]: ) 559 : audit [INF] from='mgr.14182 172.21.15.38:0/2999689707' entity='mgr.smithi038.ldalxq' 2023-11-30T22:58:06.774 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:58:06 smithi038 conmon[81956]: audit 2023-11-30T22:58:05.330684+0000 mon.smithi038 (mon.0) 560 : audit [DBG] from='mgr.14182 172.21.15.38:0/2999689707' entity='mgr.smithi038.ldalxq' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2023-11-30T22:58:07.471 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:58:07 smithi038 conmon[81956]: cluster 2023-11-30T22:58:06.204514+0000 mgr.smithi038.ldalxq (mgr.14182) 119 : cluster [DBG] pgmap v97: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2023-11-30T22:58:07.762 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 22:58:07 smithi167 conmon[87022]: cluster 2023-11-30T22:58:06.204514+0000 mgr.smithi038.ldalxq (mgr.14182) 2023-11-30T22:58:07.762 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 22:58:07 smithi167 conmon[87022]: 119 : cluster [DBG] pgmap v97: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2023-11-30T22:58:08.637 INFO:teuthology.orchestra.run.smithi038.stdout:146028888075 2023-11-30T22:58:08.638 DEBUG:teuthology.orchestra.run.smithi038:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:0dc074ce0b0b3b4f393f56dd32ef36884ebf45a9 shell --fsid 3faf8b00-8fd3-11ee-95a2-87774f69a715 -- ceph osd last-stat-seq osd.0 2023-11-30T22:58:09.255 INFO:teuthology.orchestra.run.smithi038.stderr:Inferring config /var/lib/ceph/3faf8b00-8fd3-11ee-95a2-87774f69a715/mon.smithi038/config 2023-11-30T22:58:09.512 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 22:58:09 smithi167 conmon[87022]: cluster 2023-11-30T22:58:08.204825+0000 mgr.smithi038.ldalxq (mgr.14182) 120 : cluster [DBG] pgmap v98: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2023-11-30T22:58:09.512 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 22:58:09 smithi167 conmon[87022]: audit 2023-11-30T22:58:08.240695+0000 mon.smithi038 (mon.0) 561 : audit [INF] from='mgr.14182 172.21.15.38:0/2999689707' entity='mgr.smithi038.ldalxq' 2023-11-30T22:58:09.523 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:58:09 smithi038 conmon[81956]: cluster 2023-11-30T22:58:08.204825+0000 2023-11-30T22:58:09.524 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:58:09 smithi038 conmon[81956]: mgr.smithi038.ldalxq (mgr.14182) 120 : cluster [DBG] pgmap v98: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2023-11-30T22:58:09.524 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:58:09 smithi038 conmon[81956]: audit 2023-11-30T22:58:08.240695+0000 mon.smithi038 (mon.0) 561 : audit [INF] from='mgr.14182 172.21.15.38:0/2999689707' entity='mgr.smithi038.ldalxq' 2023-11-30T22:58:10.973 INFO:teuthology.orchestra.run.smithi038.stdout:68719476752 2023-11-30T22:58:11.262 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:58:11 smithi038 conmon[81956]: cluster 2023-11-30T22:58:10.205123+0000 mgr.smithi038.ldalxq (mgr 2023-11-30T22:58:11.262 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:58:11 smithi038 conmon[81956]: .14182) 121 : cluster [DBG] pgmap v99: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2023-11-30T22:58:11.426 INFO:tasks.cephadm.ceph_manager.ceph:need seq 68719476747 got 68719476752 for osd.0 2023-11-30T22:58:11.426 DEBUG:teuthology.orchestra.run.smithi038:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:0dc074ce0b0b3b4f393f56dd32ef36884ebf45a9 shell --fsid 3faf8b00-8fd3-11ee-95a2-87774f69a715 -- ceph osd last-stat-seq osd.1 2023-11-30T22:58:11.512 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 22:58:11 smithi167 conmon[87022]: cluster 2023-11-30T22:58:10.205123+0000 mgr.smithi038.ldalxq (mgr.14182) 121 : cluster [DBG] pgmap v99: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2023-11-30T22:58:11.512 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 22:58:11 smithi167 conmon[87022]: audit 2023-11-30T22:58:10 2023-11-30T22:58:11.512 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 22:58:11 smithi167 conmon[87022]: .972946+0000 mon.smithi038 (mon.0) 562 : audit [DBG] from='client.? 172.21.15.38:0/3125556228' entity='client.admin' cmd=[{"prefix": "osd last-stat-seq", "id": 0}]: dispatch 2023-11-30T22:58:11.523 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:58:11 smithi038 conmon[81956]: audit 2023-11-30T22:58:10.972946+0000 mon.smithi038 (mon.0) 562 : audit [DBG] from='client.? 172.21.15.38:0/3125556228' entity='client.admin' cmd=[{"prefix": "osd last-stat-seq", "id": 0}]: dispatch 2023-11-30T22:58:12.030 INFO:teuthology.orchestra.run.smithi038.stderr:Inferring config /var/lib/ceph/3faf8b00-8fd3-11ee-95a2-87774f69a715/mon.smithi038/config 2023-11-30T22:58:13.262 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 22:58:12 smithi167 conmon[87022]: audit 2023-11-30T22:58:11.968578+0000 mon.smithi038 (mon.0) 563 : audit [INF] from='mgr.14182 172.21.15.38:0/2999689707' entity='mgr.smithi038.ldalxq' 2023-11-30T22:58:13.262 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 22:58:12 smithi167 conmon[87022]: audit 2023-11-30T22:58:13.262 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 22:58:12 smithi167 conmon[87022]: 2023-11-30T22:58:11.969436+0000 mon.smithi038 (mon.0) 564 : audit [DBG] from='mgr.14182 172.21.15.38:0/2999689707' entity='mgr.smithi038.ldalxq' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2023-11-30T22:58:13.262 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 22:58:12 smithi167 conmon[87022]: audit 2023-11-30T22:58:11.970116+0000 mon.smithi038 (mon.0) 565 : audit [INF] from='mgr.14182 172.21.15.38:0/2999689707' entity='mgr.smithi038.ldalxq' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2023-11-30T22:58:13.262 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 22:58:12 smithi167 conmon[87022]: audit 2023-11-30T22:58:11.973842+0000 mon.smithi038 (mon.0) 566 : audit 2023-11-30T22:58:13.263 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 22:58:12 smithi167 conmon[87022]: [INF] from='mgr.14182 172.21.15.38:0/2999689707' entity='mgr.smithi038.ldalxq' 2023-11-30T22:58:13.263 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 22:58:12 smithi167 conmon[87022]: audit 2023-11-30T22:58: 2023-11-30T22:58:13.263 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 22:58:12 smithi167 conmon[87022]: 11.977390+0000 mon.smithi038 (mon.0) 567 : audit [DBG] 2023-11-30T22:58:13.263 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 22:58:12 smithi167 conmon[87022]: from='mgr.14182 172.21.15.38:0/2999689707' entity='mgr.smithi038.ldalxq' cmd=[{"prefix": "osd tree", "states": ["destroyed"], "format": "json"}]: dispatch 2023-11-30T22:58:13.263 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 22:58:12 smithi167 conmon[87022]: cluster 2023-11-30T22:58:12. 2023-11-30T22:58:13.263 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 22:58:12 smithi167 conmon[87022]: 205410+0000 mgr.smithi038.ldalxq (mgr.14182) 122 : cluster [DBG] 2023-11-30T22:58:13.263 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 22:58:12 smithi167 conmon[87022]: pgmap v100: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2023-11-30T22:58:13.274 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:58:12 smithi038 conmon[81956]: audit 2023-11-30T22:58:11.968578+0000 mon.smithi038 (mon.0) 563 : audit [INF] from='mgr.14182 172.21.15.38:0/2999689707' entity='mgr.smithi038.ldalxq' 2023-11-30T22:58:13.274 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:58:12 smithi038 conmon[81956]: audit 2023-11-30T22:58:11.969436+0000 mon.smithi038 (mon.0) 564 : audit [DBG] from='mgr.14182 172.21.15.38:0/2999689707' entity='mgr.smithi038.ldalxq' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2023-11-30T22:58:13.274 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:58:12 smithi038 conmon[81956]: audit 2023-11-30T22:58:11.970116+0000 mon.smithi038 (mon.0) 565 : audit [INF] from='mgr.14182 172.21.15.38:0/2999689707' entity='mgr.smithi038.ldalxq' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2023-11-30T22:58:13.274 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:58:12 smithi038 conmon[81956]: audit 2023-11-30T22:58:11.973842+0000 mon.smithi038 (mon.0) 566 : audit [INF] from='mgr.14182 172.21.15.38:0/2999689707' entity='mgr.smithi038.ldalxq' 2023-11-30T22:58:13.274 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:58:12 smithi038 conmon[81956]: audit 2023-11-30T22:58:11.977390+0000 mon.smithi038 (mon.0) 567 : audit [DBG] from='mgr.14182 172.21.15.38:0/2999689707' entity='mgr.smithi038.ldalxq' cmd=[{"prefix": "osd tree", "states": ["destroyed"], "format": "json"}]: dispatch 2023-11-30T22:58:13.274 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:58:12 smithi038 conmon[81956]: cluster 2023-11-30T22:58:12.205410+0000 mgr.smithi038.ldalxq (mgr.14182) 122 : cluster [DBG] pgmap v100: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2023-11-30T22:58:13.409 INFO:teuthology.orchestra.run.smithi038.stdout:73014444048 2023-11-30T22:58:13.851 INFO:tasks.cephadm.ceph_manager.ceph:need seq 73014444043 got 73014444048 for osd.1 2023-11-30T22:58:13.852 DEBUG:teuthology.orchestra.run.smithi038:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:0dc074ce0b0b3b4f393f56dd32ef36884ebf45a9 shell --fsid 3faf8b00-8fd3-11ee-95a2-87774f69a715 -- ceph osd last-stat-seq osd.2 2023-11-30T22:58:14.261 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 22:58:13 smithi167 conmon[87022]: audit 2023-11-30T22:58:13.409770+0000 mon.smithi038 (mon.0) 568 : audit 2023-11-30T22:58:14.262 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 22:58:13 smithi167 conmon[87022]: [DBG] from='client.? 172.21.15.38:0/170831437' entity='client.admin' cmd=[{"prefix": "osd last-stat-seq", "id": 1}]: dispatch 2023-11-30T22:58:14.273 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:58:13 smithi038 conmon[81956]: audit 2023-11-30T22:58:13.409770+0000 mon.smithi038 2023-11-30T22:58:14.274 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:58:13 smithi038 conmon[81956]: (mon.0) 568 : audit [DBG] from='client.? 172.21.15.38:0/170831437' entity='client.admin' cmd=[{"prefix": "osd last-stat-seq", "id": 1}]: dispatch 2023-11-30T22:58:14.449 INFO:teuthology.orchestra.run.smithi038.stderr:Inferring config /var/lib/ceph/3faf8b00-8fd3-11ee-95a2-87774f69a715/mon.smithi038/config 2023-11-30T22:58:15.262 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 22:58:14 smithi167 conmon[87022]: cluster 2023-11-30T22:58:14.205721+0000 mgr.smithi038.ldalxq (mgr.14182) 123 : cluster 2023-11-30T22:58:15.262 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 22:58:14 smithi167 conmon[87022]: [DBG] pgmap v101: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2023-11-30T22:58:15.273 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:58:14 smithi038 conmon[81956]: cluster 2023-11-30T22:58:14.205721+0000 mgr.smithi038.ldalxq (mgr.14182) 123 : cluster [DBG] pgmap v101: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2023-11-30T22:58:15.944 INFO:teuthology.orchestra.run.smithi038.stdout:90194313232 2023-11-30T22:58:16.369 INFO:tasks.cephadm.ceph_manager.ceph:need seq 90194313228 got 90194313232 for osd.2 2023-11-30T22:58:16.369 DEBUG:teuthology.orchestra.run.smithi038:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:0dc074ce0b0b3b4f393f56dd32ef36884ebf45a9 shell --fsid 3faf8b00-8fd3-11ee-95a2-87774f69a715 -- ceph osd last-stat-seq osd.3 2023-11-30T22:58:16.966 INFO:teuthology.orchestra.run.smithi038.stderr:Inferring config /var/lib/ceph/3faf8b00-8fd3-11ee-95a2-87774f69a715/mon.smithi038/config 2023-11-30T22:58:17.024 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:58:16 smithi038 conmon[81956]: audit 2023-11-30T22:58:15.944022+0000 mon.smithi038 ( 2023-11-30T22:58:17.024 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:58:16 smithi038 conmon[81956]: mon.0) 569 : audit [DBG] from='client.? 172.21.15.38:0/2178835984' entity='client.admin' cmd=[{"prefix": "osd last-stat-seq", "id": 2}]: dispatch 2023-11-30T22:58:17.024 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:58:16 smithi038 conmon[81956]: cluster 2023-11-30T22:58:16.206099+0000 mgr.smithi038.ldalxq (mgr.14182) 124 : cluster [DBG] pgmap v102: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2023-11-30T22:58:17.262 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 22:58:16 smithi167 conmon[87022]: audit 2023-11-30T22:58:15.944022+0000 mon.smithi038 (mon.0) 569 : audit [DBG] from='client.? 172.21.15.38:0/2178835984' entity='client.admin' cmd=[{"prefix": "osd last-stat-seq", "id": 2}]: dispatch 2023-11-30T22:58:17.262 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 22:58:16 smithi167 conmon[87022]: cluster 2023-11-30T22:58:16.206099 2023-11-30T22:58:17.262 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 22:58:16 smithi167 conmon[87022]: +0000 mgr.smithi038.ldalxq (mgr.14182) 124 : cluster [DBG] pgmap v102: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2023-11-30T22:58:18.421 INFO:teuthology.orchestra.run.smithi038.stdout:98784247825 2023-11-30T22:58:18.886 INFO:tasks.cephadm.ceph_manager.ceph:need seq 98784247820 got 98784247825 for osd.3 2023-11-30T22:58:18.886 DEBUG:teuthology.orchestra.run.smithi038:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:0dc074ce0b0b3b4f393f56dd32ef36884ebf45a9 shell --fsid 3faf8b00-8fd3-11ee-95a2-87774f69a715 -- ceph osd last-stat-seq osd.4 2023-11-30T22:58:19.482 INFO:teuthology.orchestra.run.smithi038.stderr:Inferring config /var/lib/ceph/3faf8b00-8fd3-11ee-95a2-87774f69a715/mon.smithi038/config 2023-11-30T22:58:19.512 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 22:58:19 smithi167 conmon[87022]: cluster 2023-11-30T22:58:18.206428+0000 mgr.smithi038.ldalxq (mgr.14182) 125 : cluster [DBG] pgmap v103: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2023-11-30T22:58:19.512 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 22:58:19 smithi167 conmon[87022]: audit 2023-11-30T22:58: 2023-11-30T22:58:19.512 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 22:58:19 smithi167 conmon[87022]: 18.420913+0000 mon.smithi038 (mon.0) 570 : audit [DBG] from='client.? 172.21.15.38:0/1719195941' entity='client.admin' cmd=[{"prefix": "osd last-stat-seq", "id": 3}]: dispatch 2023-11-30T22:58:19.524 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:58:19 smithi038 conmon[81956]: cluster 2023-11-30T22:58:18.206428+0000 mgr.smithi038.ldalxq 2023-11-30T22:58:19.524 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:58:19 smithi038 conmon[81956]: (mgr.14182) 125 : cluster [DBG] pgmap v103: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2023-11-30T22:58:19.524 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:58:19 smithi038 conmon[81956]: audit 2023-11-30T22:58:18.420913+0000 mon.smithi038 (mon.0) 570 : audit [DBG] from='client.? 172.21.15.38:0/1719195941' entity='client.admin' cmd=[{"prefix": "osd last-stat-seq", "id": 3}]: dispatch 2023-11-30T22:58:20.953 INFO:teuthology.orchestra.run.smithi038.stdout:111669149712 2023-11-30T22:58:21.389 INFO:tasks.cephadm.ceph_manager.ceph:need seq 111669149707 got 111669149712 for osd.4 2023-11-30T22:58:21.390 DEBUG:teuthology.orchestra.run.smithi038:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:0dc074ce0b0b3b4f393f56dd32ef36884ebf45a9 shell --fsid 3faf8b00-8fd3-11ee-95a2-87774f69a715 -- ceph osd last-stat-seq osd.5 2023-11-30T22:58:21.524 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:58:21 smithi038 conmon[81956]: cluster 2023-11-30T22:58:20.206768+0000 mgr.smithi038.ldalxq (mgr.14182) 126 : cluster [DBG] pgmap v104: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2023-11-30T22:58:21.524 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:58:21 smithi038 conmon[81956]: audit 2023-11-30T22:58:20.952192+0000 mon.smithi038 (mon.0) 571 : audit [DBG] from='client.? 172.21.15.38:0/2129102973' entity='client.admin' cmd=[{"prefix": "osd last-stat-seq", "id": 4}]: dispatch 2023-11-30T22:58:21.762 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 22:58:21 smithi167 conmon[87022]: cluster 2023-11-30T22:58:20.206768+0000 mgr.smithi038.ldalxq (mgr.14182) 126 : cluster [DBG] 2023-11-30T22:58:21.762 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 22:58:21 smithi167 conmon[87022]: pgmap v104: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2023-11-30T22:58:21.762 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 22:58:21 smithi167 conmon[87022]: audit 2023-11-30T22:58:20.952192+0000 mon.smithi038 (mon.0) 571 : audit [DBG] from='client.? 172.21.15.38:0/2129102973' entity='client.admin' cmd=[{"prefix": "osd last-stat-seq", "id": 4}]: dispatch 2023-11-30T22:58:21.986 INFO:teuthology.orchestra.run.smithi038.stderr:Inferring config /var/lib/ceph/3faf8b00-8fd3-11ee-95a2-87774f69a715/mon.smithi038/config 2023-11-30T22:58:23.476 INFO:teuthology.orchestra.run.smithi038.stdout:124554051600 2023-11-30T22:58:23.501 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:58:23 smithi038 conmon[81956]: cluster 2023-11-30T22:58:22.207074+0000 mgr.smithi038.ldalxq (mgr 2023-11-30T22:58:23.501 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:58:23 smithi038 conmon[81956]: .14182) 127 : cluster [DBG] pgmap v105: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2023-11-30T22:58:23.762 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 22:58:23 smithi167 conmon[87022]: cluster 2023-11-30T22:58:22.207074+0000 mgr.smithi038.ldalxq (mgr.14182) 127 : cluster [DBG] pgmap v105: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2023-11-30T22:58:23.807 INFO:tasks.cephadm.ceph_manager.ceph:need seq 124554051596 got 124554051600 for osd.5 2023-11-30T22:58:23.807 DEBUG:teuthology.orchestra.run.smithi038:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:0dc074ce0b0b3b4f393f56dd32ef36884ebf45a9 shell --fsid 3faf8b00-8fd3-11ee-95a2-87774f69a715 -- ceph osd last-stat-seq osd.6 2023-11-30T22:58:24.404 INFO:teuthology.orchestra.run.smithi038.stderr:Inferring config /var/lib/ceph/3faf8b00-8fd3-11ee-95a2-87774f69a715/mon.smithi038/config 2023-11-30T22:58:24.602 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:58:24 smithi038 conmon[81956]: audit 2023-11-30T22:58:23.476588+0000 mon.smithi038 (mon.0) 572 : audit [DBG] from='client.? 172.21.15.38:0/962855397' entity='client.admin' cmd=[{"prefix": "osd last-stat-seq", "id": 5}]: dispatch 2023-11-30T22:58:24.762 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 22:58:24 smithi167 conmon[87022]: audit 2023-11-30T22:58:23.476588+0000 mon.smithi038 (mon.0) 572 : audit [DBG] 2023-11-30T22:58:24.762 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 22:58:24 smithi167 conmon[87022]: from='client.? 172.21.15.38:0/962855397' entity='client.admin' cmd=[{"prefix": "osd last-stat-seq", "id": 5}]: dispatch 2023-11-30T22:58:25.535 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:58:25 smithi038 conmon[81956]: cluster 2023-11-30T22:58: 2023-11-30T22:58:25.535 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:58:25 smithi038 conmon[81956]: 24.207409+0000 mgr.smithi038.ldalxq (mgr.14182) 128 : cluster [DBG] pgmap v106: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2023-11-30T22:58:25.762 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 22:58:25 smithi167 conmon[87022]: cluster 2023-11-30T22:58:24.207409+0000 mgr.smithi038.ldalxq (mgr.14182) 128 : cluster [DBG] pgmap v106: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2023-11-30T22:58:25.894 INFO:teuthology.orchestra.run.smithi038.stdout:128849018896 2023-11-30T22:58:26.315 INFO:tasks.cephadm.ceph_manager.ceph:need seq 128849018893 got 128849018896 for osd.6 2023-11-30T22:58:26.316 DEBUG:teuthology.orchestra.run.smithi038:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:0dc074ce0b0b3b4f393f56dd32ef36884ebf45a9 shell --fsid 3faf8b00-8fd3-11ee-95a2-87774f69a715 -- ceph osd last-stat-seq osd.7 2023-11-30T22:58:26.915 INFO:teuthology.orchestra.run.smithi038.stderr:Inferring config /var/lib/ceph/3faf8b00-8fd3-11ee-95a2-87774f69a715/mon.smithi038/config 2023-11-30T22:58:27.024 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:58:26 smithi038 conmon[81956]: audit 2023-11-30T22:58:25. 2023-11-30T22:58:27.024 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:58:26 smithi038 conmon[81956]: 894780+0000 mon.smithi038 (mon.0) 573 : audit [DBG] from='client.? 172.21.15.38:0/3802298022' entity='client.admin' cmd=[{"prefix": "osd last-stat-seq", "id": 6}]: dispatch 2023-11-30T22:58:27.024 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:58:26 smithi038 conmon[81956]: cluster 2023-11-30T22:58:26.207715+0000 mgr.smithi038.ldalxq (mgr.14182) 129 : cluster [DBG] pgmap v107: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2023-11-30T22:58:27.262 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 22:58:26 smithi167 conmon[87022]: audit 2023-11-30T22:58:25.894780+0000 mon.smithi038 (mon.0) 573 : audit [DBG] from='client.? 172.21.15.38:0/3802298022' entity='client.admin' cmd=[{"prefix": "osd last-stat-seq", "id": 6}]: dispatch 2023-11-30T22:58:27.262 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 22:58:26 smithi167 conmon[87022]: cluster 2023-11-30T22:58:26.207715+0000 mgr.smithi038.ldalxq (mgr.14182) 129 : cluster [DBG] pgmap v107: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2023-11-30T22:58:28.371 INFO:teuthology.orchestra.run.smithi038.stdout:146028888079 2023-11-30T22:58:28.826 INFO:tasks.cephadm.ceph_manager.ceph:need seq 146028888075 got 146028888079 for osd.7 2023-11-30T22:58:28.826 INFO:tasks.cephadm.ceph_manager.ceph:waiting for clean 2023-11-30T22:58:28.826 DEBUG:teuthology.orchestra.run.smithi038:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:0dc074ce0b0b3b4f393f56dd32ef36884ebf45a9 shell --fsid 3faf8b00-8fd3-11ee-95a2-87774f69a715 -- ceph pg dump --format=json 2023-11-30T22:58:29.425 INFO:teuthology.orchestra.run.smithi038.stderr:Inferring config /var/lib/ceph/3faf8b00-8fd3-11ee-95a2-87774f69a715/mon.smithi038/config 2023-11-30T22:58:29.524 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:58:29 smithi038 conmon[81956]: cluster 2023-11-30T22:58:28.207990+0000 mgr.smithi038.ldalxq (mgr.14182) 130 : cluster [DBG] pgmap v108: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2023-11-30T22:58:29.524 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:58:29 smithi038 conmon[81956]: audit 2023-11-30T22:58:28.370475+0000 mon.smithi038 (mon.0) 574 : audit [DBG] from='client.? 172.21.15.38:0/3146668459' entity='client.admin' cmd=[{"prefix": "osd last-stat-seq", "id": 7}]: dispatch 2023-11-30T22:58:29.762 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 22:58:29 smithi167 conmon[87022]: cluster 2023-11-30T22:58:28.207990+0000 mgr.smithi038.ldalxq (mgr.14182) 130 : cluster [DBG] pgmap v108: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2023-11-30T22:58:29.762 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 22:58:29 smithi167 conmon[87022]: audit 2023-11-30T22:58:28.370475+0000 mon.smithi038 (mon.0) 574 : audit [DBG] from='client.? 172.21.15.38:0/3146668459' entity='client.admin' cmd=[{"prefix": "osd last-stat-seq", "id": 7}]: dispatch 2023-11-30T22:58:30.923 INFO:teuthology.orchestra.run.smithi038.stdout: 2023-11-30T22:58:30.924 INFO:teuthology.orchestra.run.smithi038.stderr:dumped all 2023-11-30T22:58:31.524 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:58:31 smithi038 conmon[81956]: cluster 2023-11-30T22:58:30.208434+0000 mgr.smithi038.ldalxq (mgr. 2023-11-30T22:58:31.524 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:58:31 smithi038 conmon[81956]: 14182) 131 : cluster [DBG] pgmap v109: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2023-11-30T22:58:31.537 INFO:teuthology.orchestra.run.smithi038.stdout:{"pg_ready":true,"pg_map":{"version":109,"stamp":"2023-11-30T22:58:30.208245+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":2379580,"kb_used_data":2812,"kb_used_omap":0,"kb_used_meta":2376704,"kb_avail":747548868,"statfs":{"total":767926730752,"available":765490040832,"internally_reserved":0,"allocated":2879488,"data_stored":1117693,"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":36,"state":"active+clean","last_fresh":"2023-11-30T22:57:25.887594+0000","last_change":"2023-11-30T22:57:25.887594+0000","last_active":"2023-11-30T22:57:25.887594+0000","last_peered":"2023-11-30T22:57:25.887594+0000","last_clean":"2023-11-30T22:57:25.887594+0000","last_became_active":"2023-11-30T22:57:25.887213+0000","last_became_peered":"2023-11-30T22:57:25.887213+0000","last_unstale":"2023-11-30T22:57:25.887594+0000","last_undegraded":"2023-11-30T22:57:25.887594+0000","last_fullsized":"2023-11-30T22:57:25.887594+0000","mapping_epoch":35,"log_start":"0'0","ondisk_log_start":"0'0","created":22,"last_epoch_clean":36,"parent":"0.0","parent_split_bits":0,"last_scrub":"0'0","last_scrub_stamp":"2023-11-30T22:57:10.770098+0000","last_deep_scrub":"0'0","last_deep_scrub_stamp":"2023-11-30T22:57:10.770098+0000","last_clean_scrub_stamp":"2023-11-30T22:57:10.770098+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":4}],"osd_stats":[{"osd":7,"up_from":34,"seq":146028888080,"num_pgs":1,"num_osds":1,"num_per_pool_osds":1,"num_per_pool_omap_osds":1,"kb":93741056,"kb_used":297444,"kb_used_data":348,"kb_used_omap":0,"kb_used_meta":297088,"kb_avail":93443612,"statfs":{"total":95990841344,"available":95686258688,"internally_reserved":0,"allocated":356352,"data_stored":139436,"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":"Thu Nov 30 22:58:24 2023","interfaces":[{"interface":"back","average":{"1min":0.50800000000000001,"5min":0.50800000000000001,"15min":0.50800000000000001},"min":{"1min":0.28000000000000003,"5min":0.28000000000000003,"15min":0.28000000000000003},"max":{"1min":0.85799999999999998,"5min":0.85799999999999998,"15min":0.85799999999999998},"last":0.40999999999999998},{"interface":"front","average":{"1min":0.504,"5min":0.504,"15min":0.504},"min":{"1min":0.35199999999999998,"5min":0.35199999999999998,"15min":0.35199999999999998},"max":{"1min":0.80300000000000005,"5min":0.80300000000000005,"15min":0.80300000000000005},"last":0.49199999999999999}]},{"osd":1,"last update":"Thu Nov 30 22:58:24 2023","interfaces":[{"interface":"back","average":{"1min":0.37,"5min":0.37,"15min":0.37},"min":{"1min":0.245,"5min":0.245,"15min":0.245},"max":{"1min":0.56899999999999995,"5min":0.56899999999999995,"15min":0.56899999999999995},"last":0.34799999999999998},{"interface":"front","average":{"1min":0.39100000000000001,"5min":0.39100000000000001,"15min":0.39100000000000001},"min":{"1min":0.27100000000000002,"5min":0.27100000000000002,"15min":0.27100000000000002},"max":{"1min":0.60299999999999998,"5min":0.60299999999999998,"15min":0.60299999999999998},"last":0.29499999999999998}]},{"osd":2,"last update":"Thu Nov 30 22:58:24 2023","interfaces":[{"interface":"back","average":{"1min":0.52000000000000002,"5min":0.52000000000000002,"15min":0.52000000000000002},"min":{"1min":0.34200000000000003,"5min":0.34200000000000003,"15min":0.34200000000000003},"max":{"1min":0.88600000000000001,"5min":0.88600000000000001,"15min":0.88600000000000001},"last":0.47399999999999998},{"interface":"front","average":{"1min":0.54300000000000004,"5min":0.54300000000000004,"15min":0.54300000000000004},"min":{"1min":0.38,"5min":0.38,"15min":0.38},"max":{"1min":0.83699999999999997,"5min":0.83699999999999997,"15min":0.83699999999999997},"last":0.58399999999999996}]},{"osd":3,"last update":"Thu Nov 30 22:58:24 2023","interfaces":[{"interface":"back","average":{"1min":0.433,"5min":0.433,"15min":0.433},"min":{"1min":0.316,"5min":0.316,"15min":0.316},"max":{"1min":0.69299999999999995,"5min":0.69299999999999995,"15min":0.69299999999999995},"last":0.315},{"interface":"front","average":{"1min":0.46200000000000002,"5min":0.46200000000000002,"15min":0.46200000000000002},"min":{"1min":0.33900000000000002,"5min":0.33900000000000002,"15min":0.33900000000000002},"max":{"1min":0.65600000000000003,"5min":0.65600000000000003,"15min":0.65600000000000003},"last":0.55300000000000005}]},{"osd":4,"last update":"Thu Nov 30 22:58:24 2023","interfaces":[{"interface":"back","average":{"1min":0.57299999999999995,"5min":0.57299999999999995,"15min":0.57299999999999995},"min":{"1min":0.37,"5min":0.37,"15min":0.37},"max":{"1min":0.81599999999999995,"5min":0.81599999999999995,"15min":0.81599999999999995},"last":0.44600000000000001},{"interface":"front","average":{"1min":0.58299999999999996,"5min":0.58299999999999996,"15min":0.58299999999999996},"min":{"1min":0.39500000000000002,"5min":0.39500000000000002,"15min":0.39500000000000002},"max":{"1min":0.81599999999999995,"5min":0.81599999999999995,"15min":0.81599999999999995},"last":0.60499999999999998}]},{"osd":5,"last update":"Thu Nov 30 22:58:24 2023","interfaces":[{"interface":"back","average":{"1min":0.48299999999999998,"5min":0.48299999999999998,"15min":0.48299999999999998},"min":{"1min":0.33300000000000002,"5min":0.33300000000000002,"15min":0.33300000000000002},"max":{"1min":0.77000000000000002,"5min":0.77000000000000002,"15min":0.77000000000000002},"last":0.54300000000000004},{"interface":"front","average":{"1min":0.55900000000000005,"5min":0.55900000000000005,"15min":0.55900000000000005},"min":{"1min":0.38200000000000001,"5min":0.38200000000000001,"15min":0.38200000000000001},"max":{"1min":1.948,"5min":1.948,"15min":1.948},"last":0.41699999999999998}]},{"osd":6,"last update":"Thu Nov 30 22:58:24 2023","interfaces":[{"interface":"back","average":{"1min":0.59699999999999998,"5min":0.59699999999999998,"15min":0.59699999999999998},"min":{"1min":0.45900000000000002,"5min":0.45900000000000002,"15min":0.45900000000000002},"max":{"1min":0.79300000000000004,"5min":0.79300000000000004,"15min":0.79300000000000004},"last":0.56799999999999995},{"interface":"front","average":{"1min":0.63300000000000001,"5min":0.63300000000000001,"15min":0.63300000000000001},"min":{"1min":0.47099999999999997,"5min":0.47099999999999997,"15min":0.47099999999999997},"max":{"1min":1.044,"5min":1.044,"15min":1.044},"last":0.50600000000000001}]}]},{"osd":6,"up_from":30,"seq":128849018898,"num_pgs":0,"num_osds":1,"num_per_pool_osds":1,"num_per_pool_omap_osds":0,"kb":93741056,"kb_used":297448,"kb_used_data":352,"kb_used_omap":0,"kb_used_meta":297088,"kb_avail":93443608,"statfs":{"total":95990841344,"available":95686254592,"internally_reserved":0,"allocated":360448,"data_stored":139751,"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":"Thu Nov 30 22:58:19 2023","interfaces":[{"interface":"back","average":{"1min":0.41099999999999998,"5min":0.41099999999999998,"15min":0.41099999999999998},"min":{"1min":0.26400000000000001,"5min":0.26400000000000001,"15min":0.26400000000000001},"max":{"1min":0.67700000000000005,"5min":0.67700000000000005,"15min":0.67700000000000005},"last":0.315},{"interface":"front","average":{"1min":0.41399999999999998,"5min":0.41399999999999998,"15min":0.41399999999999998},"min":{"1min":0.26200000000000001,"5min":0.26200000000000001,"15min":0.26200000000000001},"max":{"1min":0.66100000000000003,"5min":0.66100000000000003,"15min":0.66100000000000003},"last":0.39400000000000002}]},{"osd":1,"last update":"Thu Nov 30 22:58:19 2023","interfaces":[{"interface":"back","average":{"1min":0.52800000000000002,"5min":0.52800000000000002,"15min":0.52800000000000002},"min":{"1min":0.371,"5min":0.371,"15min":0.371},"max":{"1min":0.78400000000000003,"5min":0.78400000000000003,"15min":0.78400000000000003},"last":0.433},{"interface":"front","average":{"1min":0.51000000000000001,"5min":0.51000000000000001,"15min":0.51000000000000001},"min":{"1min":0.34399999999999997,"5min":0.34399999999999997,"15min":0.34399999999999997},"max":{"1min":0.85199999999999998,"5min":0.85199999999999998,"15min":0.85199999999999998},"last":0.47199999999999998}]},{"osd":2,"last update":"Thu Nov 30 22:58:19 2023","interfaces":[{"interface":"back","average":{"1min":0.46899999999999997,"5min":0.46899999999999997,"15min":0.46899999999999997},"min":{"1min":0.309,"5min":0.309,"15min":0.309},"max":{"1min":0.74399999999999999,"5min":0.74399999999999999,"15min":0.74399999999999999},"last":0.41499999999999998},{"interface":"front","average":{"1min":0.48599999999999999,"5min":0.48599999999999999,"15min":0.48599999999999999},"min":{"1min":0.378,"5min":0.378,"15min":0.378},"max":{"1min":0.65500000000000003,"5min":0.65500000000000003,"15min":0.65500000000000003},"last":0.51800000000000002}]},{"osd":3,"last update":"Thu Nov 30 22:58:19 2023","interfaces":[{"interface":"back","average":{"1min":0.56399999999999995,"5min":0.56399999999999995,"15min":0.56399999999999995},"min":{"1min":0.39400000000000002,"5min":0.39400000000000002,"15min":0.39400000000000002},"max":{"1min":0.90300000000000002,"5min":0.90300000000000002,"15min":0.90300000000000002},"last":0.49299999999999999},{"interface":"front","average":{"1min":0.56699999999999995,"5min":0.56699999999999995,"15min":0.56699999999999995},"min":{"1min":0.38800000000000001,"5min":0.38800000000000001,"15min":0.38800000000000001},"max":{"1min":0.77200000000000002,"5min":0.77200000000000002,"15min":0.77200000000000002},"last":0.59199999999999997}]},{"osd":4,"last update":"Thu Nov 30 22:58:19 2023","interfaces":[{"interface":"back","average":{"1min":0.53500000000000003,"5min":0.53500000000000003,"15min":0.53500000000000003},"min":{"1min":0.35099999999999998,"5min":0.35099999999999998,"15min":0.35099999999999998},"max":{"1min":0.77900000000000003,"5min":0.77900000000000003,"15min":0.77900000000000003},"last":0.57999999999999996},{"interface":"front","average":{"1min":0.53100000000000003,"5min":0.53100000000000003,"15min":0.53100000000000003},"min":{"1min":0.29899999999999999,"5min":0.29899999999999999,"15min":0.29899999999999999},"max":{"1min":0.81899999999999995,"5min":0.81899999999999995,"15min":0.81899999999999995},"last":0.60799999999999998}]},{"osd":5,"last update":"Thu Nov 30 22:58:19 2023","interfaces":[{"interface":"back","average":{"1min":0.629,"5min":0.629,"15min":0.629},"min":{"1min":0.433,"5min":0.433,"15min":0.433},"max":{"1min":0.96999999999999997,"5min":0.96999999999999997,"15min":0.96999999999999997},"last":0.623},{"interface":"front","average":{"1min":0.626,"5min":0.626,"15min":0.626},"min":{"1min":0.435,"5min":0.435,"15min":0.435},"max":{"1min":1.0009999999999999,"5min":1.0009999999999999,"15min":1.0009999999999999},"last":0.55800000000000005}]},{"osd":7,"last update":"Thu Nov 30 22:58:28 2023","interfaces":[{"interface":"back","average":{"1min":0.61699999999999999,"5min":0.61699999999999999,"15min":0.61699999999999999},"min":{"1min":0.42599999999999999,"5min":0.42599999999999999,"15min":0.42599999999999999},"max":{"1min":0.77500000000000002,"5min":0.77500000000000002,"15min":0.77500000000000002},"last":0.53900000000000003},{"interface":"front","average":{"1min":0.64500000000000002,"5min":0.64500000000000002,"15min":0.64500000000000002},"min":{"1min":0.46700000000000003,"5min":0.46700000000000003,"15min":0.46700000000000003},"max":{"1min":0.83199999999999996,"5min":0.83199999999999996,"15min":0.83199999999999996},"last":0.66500000000000004}]}]},{"osd":1,"up_from":17,"seq":73014444051,"num_pgs":0,"num_osds":1,"num_per_pool_osds":1,"num_per_pool_omap_osds":0,"kb":93741056,"kb_used":297448,"kb_used_data":352,"kb_used_omap":0,"kb_used_meta":297088,"kb_avail":93443608,"statfs":{"total":95990841344,"available":95686254592,"internally_reserved":0,"allocated":360448,"data_stored":139751,"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":"Thu Nov 30 22:58:10 2023","interfaces":[{"interface":"back","average":{"1min":0.629,"5min":0.629,"15min":0.629},"min":{"1min":0.32300000000000001,"5min":0.32300000000000001,"15min":0.32300000000000001},"max":{"1min":3.2890000000000001,"5min":3.2890000000000001,"15min":3.2890000000000001},"last":0.60199999999999998},{"interface":"front","average":{"1min":0.5,"5min":0.5,"15min":0.5},"min":{"1min":0.31,"5min":0.31,"15min":0.31},"max":{"1min":0.67700000000000005,"5min":0.67700000000000005,"15min":0.67700000000000005},"last":0.65800000000000003}]},{"osd":2,"last update":"Thu Nov 30 22:58:10 2023","interfaces":[{"interface":"back","average":{"1min":0.51900000000000002,"5min":0.51900000000000002,"15min":0.51900000000000002},"min":{"1min":0.35499999999999998,"5min":0.35499999999999998,"15min":0.35499999999999998},"max":{"1min":0.67700000000000005,"5min":0.67700000000000005,"15min":0.67700000000000005},"last":0.69099999999999995},{"interface":"front","average":{"1min":0.52500000000000002,"5min":0.52500000000000002,"15min":0.52500000000000002},"min":{"1min":0.33400000000000002,"5min":0.33400000000000002,"15min":0.33400000000000002},"max":{"1min":0.70299999999999996,"5min":0.70299999999999996,"15min":0.70299999999999996},"last":0.56399999999999995}]},{"osd":3,"last update":"Thu Nov 30 22:58:12 2023","interfaces":[{"interface":"back","average":{"1min":0.45700000000000002,"5min":0.45700000000000002,"15min":0.45700000000000002},"min":{"1min":0.25700000000000001,"5min":0.25700000000000001,"15min":0.25700000000000001},"max":{"1min":2.161,"5min":2.161,"15min":2.161},"last":0.505},{"interface":"front","average":{"1min":0.375,"5min":0.375,"15min":0.375},"min":{"1min":0.249,"5min":0.249,"15min":0.249},"max":{"1min":0.53400000000000003,"5min":0.53400000000000003,"15min":0.53400000000000003},"last":0.44500000000000001}]},{"osd":4,"last update":"Thu Nov 30 22:58:18 2023","interfaces":[{"interface":"back","average":{"1min":0.68899999999999995,"5min":0.68899999999999995,"15min":0.68899999999999995},"min":{"1min":0.39800000000000002,"5min":0.39800000000000002,"15min":0.39800000000000002},"max":{"1min":3.2709999999999999,"5min":3.2709999999999999,"15min":3.2709999999999999},"last":0.625},{"interface":"front","average":{"1min":0.54500000000000004,"5min":0.54500000000000004,"15min":0.54500000000000004},"min":{"1min":0.40200000000000002,"5min":0.40200000000000002,"15min":0.40200000000000002},"max":{"1min":0.70899999999999996,"5min":0.70899999999999996,"15min":0.70899999999999996},"last":0.61899999999999999}]},{"osd":5,"last update":"Thu Nov 30 22:58:18 2023","interfaces":[{"interface":"back","average":{"1min":0.55900000000000005,"5min":0.55900000000000005,"15min":0.55900000000000005},"min":{"1min":0.314,"5min":0.314,"15min":0.314},"max":{"1min":3.2149999999999999,"5min":3.2149999999999999,"15min":3.2149999999999999},"last":0.54500000000000004},{"interface":"front","average":{"1min":0.42899999999999999,"5min":0.42899999999999999,"15min":0.42899999999999999},"min":{"1min":0.318,"5min":0.318,"15min":0.318},"max":{"1min":0.56399999999999995,"5min":0.56399999999999995,"15min":0.56399999999999995},"last":0.46600000000000003}]},{"osd":6,"last update":"Thu Nov 30 22:58:22 2023","interfaces":[{"interface":"back","average":{"1min":0.53800000000000003,"5min":0.53800000000000003,"15min":0.53800000000000003},"min":{"1min":0.36799999999999999,"5min":0.36799999999999999,"15min":0.36799999999999999},"max":{"1min":0.71699999999999997,"5min":0.71699999999999997,"15min":0.71699999999999997},"last":0.59499999999999997},{"interface":"front","average":{"1min":0.70599999999999996,"5min":0.70599999999999996,"15min":0.70599999999999996},"min":{"1min":0.35699999999999998,"5min":0.35699999999999998,"15min":0.35699999999999998},"max":{"1min":3.2469999999999999,"5min":3.2469999999999999,"15min":3.2469999999999999},"last":0.64600000000000002}]},{"osd":7,"last update":"Thu Jan 1 00:00:00 1970","interfaces":[{"interface":"back","average":{"1min":0,"5min":0,"15min":0},"min":{"1min":0,"5min":0,"15min":0},"max":{"1min":0,"5min":0,"15min":0},"last":0.57899999999999996}]}]},{"osd":0,"up_from":16,"seq":68719476756,"num_pgs":1,"num_osds":1,"num_per_pool_osds":1,"num_per_pool_omap_osds":1,"kb":93741056,"kb_used":297448,"kb_used_data":352,"kb_used_omap":0,"kb_used_meta":297088,"kb_avail":93443608,"statfs":{"total":95990841344,"available":95686254592,"internally_reserved":0,"allocated":360448,"data_stored":139751,"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":"Thu Nov 30 22:58:07 2023","interfaces":[{"interface":"back","average":{"1min":0.498,"5min":0.498,"15min":0.498},"min":{"1min":0.30399999999999999,"5min":0.30399999999999999,"15min":0.30399999999999999},"max":{"1min":0.72799999999999998,"5min":0.72799999999999998,"15min":0.72799999999999998},"last":0.47599999999999998},{"interface":"front","average":{"1min":0.48799999999999999,"5min":0.48799999999999999,"15min":0.48799999999999999},"min":{"1min":0.33800000000000002,"5min":0.33800000000000002,"15min":0.33800000000000002},"max":{"1min":0.77500000000000002,"5min":0.77500000000000002,"15min":0.77500000000000002},"last":0.52900000000000003}]},{"osd":2,"last update":"Thu Nov 30 22:58:13 2023","interfaces":[{"interface":"back","average":{"1min":0.46700000000000003,"5min":0.46700000000000003,"15min":0.46700000000000003},"min":{"1min":0.252,"5min":0.252,"15min":0.252},"max":{"1min":0.83399999999999996,"5min":0.83399999999999996,"15min":0.83399999999999996},"last":0.44},{"interface":"front","average":{"1min":0.40999999999999998,"5min":0.40999999999999998,"15min":0.40999999999999998},"min":{"1min":0.24299999999999999,"5min":0.24299999999999999,"15min":0.24299999999999999},"max":{"1min":0.59399999999999997,"5min":0.59399999999999997,"15min":0.59399999999999997},"last":0.495}]},{"osd":3,"last update":"Thu Nov 30 22:58:13 2023","interfaces":[{"interface":"back","average":{"1min":0.52800000000000002,"5min":0.52800000000000002,"15min":0.52800000000000002},"min":{"1min":0.34699999999999998,"5min":0.34699999999999998,"15min":0.34699999999999998},"max":{"1min":0.80300000000000005,"5min":0.80300000000000005,"15min":0.80300000000000005},"last":0.58899999999999997},{"interface":"front","average":{"1min":0.56599999999999995,"5min":0.56599999999999995,"15min":0.56599999999999995},"min":{"1min":0.36099999999999999,"5min":0.36099999999999999,"15min":0.36099999999999999},"max":{"1min":0.74199999999999999,"5min":0.74199999999999999,"15min":0.74199999999999999},"last":0.57599999999999996}]},{"osd":4,"last update":"Thu Nov 30 22:58:19 2023","interfaces":[{"interface":"back","average":{"1min":0.47699999999999998,"5min":0.47699999999999998,"15min":0.47699999999999998},"min":{"1min":0.26700000000000002,"5min":0.26700000000000002,"15min":0.26700000000000002},"max":{"1min":0.79100000000000004,"5min":0.79100000000000004,"15min":0.79100000000000004},"last":0.55600000000000005},{"interface":"front","average":{"1min":0.501,"5min":0.501,"15min":0.501},"min":{"1min":0.251,"5min":0.251,"15min":0.251},"max":{"1min":0.81599999999999995,"5min":0.81599999999999995,"15min":0.81599999999999995},"last":0.63300000000000001}]},{"osd":5,"last update":"Thu Nov 30 22:58:19 2023","interfaces":[{"interface":"back","average":{"1min":0.61199999999999999,"5min":0.61199999999999999,"15min":0.61199999999999999},"min":{"1min":0.372,"5min":0.372,"15min":0.372},"max":{"1min":0.84899999999999998,"5min":0.84899999999999998,"15min":0.84899999999999998},"last":0.67800000000000005},{"interface":"front","average":{"1min":0.64700000000000002,"5min":0.64700000000000002,"15min":0.64700000000000002},"min":{"1min":0.42699999999999999,"5min":0.42699999999999999,"15min":0.42699999999999999},"max":{"1min":1.0149999999999999,"5min":1.0149999999999999,"15min":1.0149999999999999},"last":0.64700000000000002}]},{"osd":6,"last update":"Thu Nov 30 22:58:19 2023","interfaces":[{"interface":"back","average":{"1min":0.58299999999999996,"5min":0.58299999999999996,"15min":0.58299999999999996},"min":{"1min":0.32200000000000001,"5min":0.32200000000000001,"15min":0.32200000000000001},"max":{"1min":0.95499999999999996,"5min":0.95499999999999996,"15min":0.95499999999999996},"last":0.621},{"interface":"front","average":{"1min":0.57399999999999995,"5min":0.57399999999999995,"15min":0.57399999999999995},"min":{"1min":0.377,"5min":0.377,"15min":0.377},"max":{"1min":0.85899999999999999,"5min":0.85899999999999999,"15min":0.85899999999999999},"last":0.70099999999999996}]},{"osd":7,"last update":"Thu Nov 30 22:58:25 2023","interfaces":[{"interface":"back","average":{"1min":0.63,"5min":0.63,"15min":0.63},"min":{"1min":0.40200000000000002,"5min":0.40200000000000002,"15min":0.40200000000000002},"max":{"1min":0.79900000000000004,"5min":0.79900000000000004,"15min":0.79900000000000004},"last":0.747},{"interface":"front","average":{"1min":0.64500000000000002,"5min":0.64500000000000002,"15min":0.64500000000000002},"min":{"1min":0.41599999999999998,"5min":0.41599999999999998,"15min":0.41599999999999998},"max":{"1min":0.82499999999999996,"5min":0.82499999999999996,"15min":0.82499999999999996},"last":0.71399999999999997}]}]},{"osd":2,"up_from":21,"seq":90194313235,"num_pgs":0,"num_osds":1,"num_per_pool_osds":1,"num_per_pool_omap_osds":0,"kb":93741056,"kb_used":297448,"kb_used_data":352,"kb_used_omap":0,"kb_used_meta":297088,"kb_avail":93443608,"statfs":{"total":95990841344,"available":95686254592,"internally_reserved":0,"allocated":360448,"data_stored":139751,"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":"Thu Nov 30 22:58:10 2023","interfaces":[{"interface":"back","average":{"1min":0.36399999999999999,"5min":0.36399999999999999,"15min":0.36399999999999999},"min":{"1min":0.23599999999999999,"5min":0.23599999999999999,"15min":0.23599999999999999},"max":{"1min":0.505,"5min":0.505,"15min":0.505},"last":0.47199999999999998},{"interface":"front","average":{"1min":0.35999999999999999,"5min":0.35999999999999999,"15min":0.35999999999999999},"min":{"1min":0.23100000000000001,"5min":0.23100000000000001,"15min":0.23100000000000001},"max":{"1min":0.64800000000000002,"5min":0.64800000000000002,"15min":0.64800000000000002},"last":0.36299999999999999}]},{"osd":1,"last update":"Thu Nov 30 22:58:10 2023","interfaces":[{"interface":"back","average":{"1min":0.54500000000000004,"5min":0.54500000000000004,"15min":0.54500000000000004},"min":{"1min":0.432,"5min":0.432,"15min":0.432},"max":{"1min":0.69499999999999995,"5min":0.69499999999999995,"15min":0.69499999999999995},"last":0.59499999999999997},{"interface":"front","average":{"1min":0.54600000000000004,"5min":0.54600000000000004,"15min":0.54600000000000004},"min":{"1min":0.41899999999999998,"5min":0.41899999999999998,"15min":0.41899999999999998},"max":{"1min":0.73299999999999998,"5min":0.73299999999999998,"15min":0.73299999999999998},"last":0.38500000000000001}]},{"osd":3,"last update":"Thu Nov 30 22:58:12 2023","interfaces":[{"interface":"back","average":{"1min":0.495,"5min":0.495,"15min":0.495},"min":{"1min":0.35699999999999998,"5min":0.35699999999999998,"15min":0.35699999999999998},"max":{"1min":0.70999999999999996,"5min":0.70999999999999996,"15min":0.70999999999999996},"last":0.43099999999999999},{"interface":"front","average":{"1min":0.51800000000000002,"5min":0.51800000000000002,"15min":0.51800000000000002},"min":{"1min":0.372,"5min":0.372,"15min":0.372},"max":{"1min":0.72999999999999998,"5min":0.72999999999999998,"15min":0.72999999999999998},"last":0.44700000000000001}]},{"osd":4,"last update":"Thu Nov 30 22:58:18 2023","interfaces":[{"interface":"back","average":{"1min":0.47899999999999998,"5min":0.47899999999999998,"15min":0.47899999999999998},"min":{"1min":0.26300000000000001,"5min":0.26300000000000001,"15min":0.26300000000000001},"max":{"1min":0.71499999999999997,"5min":0.71499999999999997,"15min":0.71499999999999997},"last":0.495},{"interface":"front","average":{"1min":0.49099999999999999,"5min":0.49099999999999999,"15min":0.49099999999999999},"min":{"1min":0.32100000000000001,"5min":0.32100000000000001,"15min":0.32100000000000001},"max":{"1min":0.72099999999999997,"5min":0.72099999999999997,"15min":0.72099999999999997},"last":0.55300000000000005}]},{"osd":5,"last update":"Thu Nov 30 22:58:23 2023","interfaces":[{"interface":"back","average":{"1min":0.55400000000000005,"5min":0.55400000000000005,"15min":0.55400000000000005},"min":{"1min":0.36599999999999999,"5min":0.36599999999999999,"15min":0.36599999999999999},"max":{"1min":0.81200000000000006,"5min":0.81200000000000006,"15min":0.81200000000000006},"last":0.501},{"interface":"front","average":{"1min":0.55500000000000005,"5min":0.55500000000000005,"15min":0.55500000000000005},"min":{"1min":0.38900000000000001,"5min":0.38900000000000001,"15min":0.38900000000000001},"max":{"1min":0.83099999999999996,"5min":0.83099999999999996,"15min":0.83099999999999996},"last":0.51800000000000002}]},{"osd":6,"last update":"Thu Nov 30 22:58:23 2023","interfaces":[{"interface":"back","average":{"1min":0.54600000000000004,"5min":0.54600000000000004,"15min":0.54600000000000004},"min":{"1min":0.34300000000000003,"5min":0.34300000000000003,"15min":0.34300000000000003},"max":{"1min":0.77900000000000003,"5min":0.77900000000000003,"15min":0.77900000000000003},"last":0.61799999999999999},{"interface":"front","average":{"1min":0.54600000000000004,"5min":0.54600000000000004,"15min":0.54600000000000004},"min":{"1min":0.33700000000000002,"5min":0.33700000000000002,"15min":0.33700000000000002},"max":{"1min":0.86499999999999999,"5min":0.86499999999999999,"15min":0.86499999999999999},"last":0.53500000000000003}]},{"osd":7,"last update":"Thu Jan 1 00:00:00 1970","interfaces":[{"interface":"back","average":{"1min":0,"5min":0,"15min":0},"min":{"1min":0,"5min":0,"15min":0},"max":{"1min":0,"5min":0,"15min":0},"last":0.54400000000000004}]}]},{"osd":3,"up_from":23,"seq":98784247827,"num_pgs":1,"num_osds":1,"num_per_pool_osds":1,"num_per_pool_omap_osds":1,"kb":93741056,"kb_used":297448,"kb_used_data":352,"kb_used_omap":0,"kb_used_meta":297088,"kb_avail":93443608,"statfs":{"total":95990841344,"available":95686254592,"internally_reserved":0,"allocated":360448,"data_stored":139751,"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":"Thu Nov 30 22:58:12 2023","interfaces":[{"interface":"back","average":{"1min":0.52500000000000002,"5min":0.52500000000000002,"15min":0.52500000000000002},"min":{"1min":0.36399999999999999,"5min":0.36399999999999999,"15min":0.36399999999999999},"max":{"1min":0.70199999999999996,"5min":0.70199999999999996,"15min":0.70199999999999996},"last":0.627},{"interface":"front","average":{"1min":0.51700000000000002,"5min":0.51700000000000002,"15min":0.51700000000000002},"min":{"1min":0.36199999999999999,"5min":0.36199999999999999,"15min":0.36199999999999999},"max":{"1min":0.83299999999999996,"5min":0.83299999999999996,"15min":0.83299999999999996},"last":0.77600000000000002}]},{"osd":1,"last update":"Thu Nov 30 22:58:12 2023","interfaces":[{"interface":"back","average":{"1min":0.36699999999999999,"5min":0.36699999999999999,"15min":0.36699999999999999},"min":{"1min":0.26800000000000002,"5min":0.26800000000000002,"15min":0.26800000000000002},"max":{"1min":0.56499999999999995,"5min":0.56499999999999995,"15min":0.56499999999999995},"last":0.40799999999999997},{"interface":"front","average":{"1min":0.36899999999999999,"5min":0.36899999999999999,"15min":0.36899999999999999},"min":{"1min":0.26100000000000001,"5min":0.26100000000000001,"15min":0.26100000000000001},"max":{"1min":0.72299999999999998,"5min":0.72299999999999998,"15min":0.72299999999999998},"last":0.432}]},{"osd":2,"last update":"Thu Nov 30 22:58:12 2023","interfaces":[{"interface":"back","average":{"1min":0.53500000000000003,"5min":0.53500000000000003,"15min":0.53500000000000003},"min":{"1min":0.37,"5min":0.37,"15min":0.37},"max":{"1min":0.80700000000000005,"5min":0.80700000000000005,"15min":0.80700000000000005},"last":0.63200000000000001},{"interface":"front","average":{"1min":0.54500000000000004,"5min":0.54500000000000004,"15min":0.54500000000000004},"min":{"1min":0.36199999999999999,"5min":0.36199999999999999,"15min":0.36199999999999999},"max":{"1min":0.77800000000000002,"5min":0.77800000000000002,"15min":0.77800000000000002},"last":0.76000000000000001}]},{"osd":4,"last update":"Thu Nov 30 22:58:15 2023","interfaces":[{"interface":"back","average":{"1min":0.51800000000000002,"5min":0.51800000000000002,"15min":0.51800000000000002},"min":{"1min":0.32600000000000001,"5min":0.32600000000000001,"15min":0.32600000000000001},"max":{"1min":0.84499999999999997,"5min":0.84499999999999997,"15min":0.84499999999999997},"last":0.79200000000000004},{"interface":"front","average":{"1min":0.54700000000000004,"5min":0.54700000000000004,"15min":0.54700000000000004},"min":{"1min":0.40300000000000002,"5min":0.40300000000000002,"15min":0.40300000000000002},"max":{"1min":0.75900000000000001,"5min":0.75900000000000001,"15min":0.75900000000000001},"last":0.66200000000000003}]},{"osd":5,"last update":"Thu Nov 30 22:58:19 2023","interfaces":[{"interface":"back","average":{"1min":0.41699999999999998,"5min":0.41699999999999998,"15min":0.41699999999999998},"min":{"1min":0.30599999999999999,"5min":0.30599999999999999,"15min":0.30599999999999999},"max":{"1min":0.60299999999999998,"5min":0.60299999999999998,"15min":0.60299999999999998},"last":0.45200000000000001},{"interface":"front","average":{"1min":0.439,"5min":0.439,"15min":0.439},"min":{"1min":0.29599999999999999,"5min":0.29599999999999999,"15min":0.29599999999999999},"max":{"1min":0.76000000000000001,"5min":0.76000000000000001,"15min":0.76000000000000001},"last":0.47999999999999998}]},{"osd":6,"last update":"Thu Nov 30 22:58:21 2023","interfaces":[{"interface":"back","average":{"1min":0.56200000000000006,"5min":0.56200000000000006,"15min":0.56200000000000006},"min":{"1min":0.35999999999999999,"5min":0.35999999999999999,"15min":0.35999999999999999},"max":{"1min":0.78900000000000003,"5min":0.78900000000000003,"15min":0.78900000000000003},"last":0.64300000000000002},{"interface":"front","average":{"1min":0.55000000000000004,"5min":0.55000000000000004,"15min":0.55000000000000004},"min":{"1min":0.39200000000000002,"5min":0.39200000000000002,"15min":0.39200000000000002},"max":{"1min":0.88400000000000001,"5min":0.88400000000000001,"15min":0.88400000000000001},"last":0.83299999999999996}]},{"osd":7,"last update":"Thu Nov 30 22:58:27 2023","interfaces":[{"interface":"back","average":{"1min":0.46800000000000003,"5min":0.46800000000000003,"15min":0.46800000000000003},"min":{"1min":0.30199999999999999,"5min":0.30199999999999999,"15min":0.30199999999999999},"max":{"1min":0.67200000000000004,"5min":0.67200000000000004,"15min":0.67200000000000004},"last":0.41999999999999998},{"interface":"front","average":{"1min":0.50600000000000001,"5min":0.50600000000000001,"15min":0.50600000000000001},"min":{"1min":0.36199999999999999,"5min":0.36199999999999999,"15min":0.36199999999999999},"max":{"1min":0.70999999999999996,"5min":0.70999999999999996,"15min":0.70999999999999996},"last":0.48999999999999999}]}]},{"osd":4,"up_from":26,"seq":111669149714,"num_pgs":0,"num_osds":1,"num_per_pool_osds":1,"num_per_pool_omap_osds":0,"kb":93741056,"kb_used":297448,"kb_used_data":352,"kb_used_omap":0,"kb_used_meta":297088,"kb_avail":93443608,"statfs":{"total":95990841344,"available":95686254592,"internally_reserved":0,"allocated":360448,"data_stored":139751,"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":"Thu Nov 30 22:58:14 2023","interfaces":[{"interface":"back","average":{"1min":0.34999999999999998,"5min":0.34999999999999998,"15min":0.34999999999999998},"min":{"1min":0.245,"5min":0.245,"15min":0.245},"max":{"1min":0.46899999999999997,"5min":0.46899999999999997,"15min":0.46899999999999997},"last":0.33800000000000002},{"interface":"front","average":{"1min":0.374,"5min":0.374,"15min":0.374},"min":{"1min":0.21199999999999999,"5min":0.21199999999999999,"15min":0.21199999999999999},"max":{"1min":0.54400000000000004,"5min":0.54400000000000004,"15min":0.54400000000000004},"last":0.40400000000000003}]},{"osd":1,"last update":"Thu Nov 30 22:58:14 2023","interfaces":[{"interface":"back","average":{"1min":0.503,"5min":0.503,"15min":0.503},"min":{"1min":0.376,"5min":0.376,"15min":0.376},"max":{"1min":0.65500000000000003,"5min":0.65500000000000003,"15min":0.65500000000000003},"last":0.45700000000000002},{"interface":"front","average":{"1min":0.48899999999999999,"5min":0.48899999999999999,"15min":0.48899999999999999},"min":{"1min":0.39300000000000002,"5min":0.39300000000000002,"15min":0.39300000000000002},"max":{"1min":0.629,"5min":0.629,"15min":0.629},"last":0.56999999999999995}]},{"osd":2,"last update":"Thu Nov 30 22:58:14 2023","interfaces":[{"interface":"back","average":{"1min":0.39500000000000002,"5min":0.39500000000000002,"15min":0.39500000000000002},"min":{"1min":0.27300000000000002,"5min":0.27300000000000002,"15min":0.27300000000000002},"max":{"1min":0.59599999999999997,"5min":0.59599999999999997,"15min":0.59599999999999997},"last":0.443},{"interface":"front","average":{"1min":0.438,"5min":0.438,"15min":0.438},"min":{"1min":0.27300000000000002,"5min":0.27300000000000002,"15min":0.27300000000000002},"max":{"1min":0.68200000000000005,"5min":0.68200000000000005,"15min":0.68200000000000005},"last":0.47399999999999998}]},{"osd":3,"last update":"Thu Nov 30 22:58:14 2023","interfaces":[{"interface":"back","average":{"1min":0.53400000000000003,"5min":0.53400000000000003,"15min":0.53400000000000003},"min":{"1min":0.34499999999999997,"5min":0.34499999999999997,"15min":0.34499999999999997},"max":{"1min":0.70299999999999996,"5min":0.70299999999999996,"15min":0.70299999999999996},"last":0.51600000000000001},{"interface":"front","average":{"1min":0.51600000000000001,"5min":0.51600000000000001,"15min":0.51600000000000001},"min":{"1min":0.36899999999999999,"5min":0.36899999999999999,"15min":0.36899999999999999},"max":{"1min":0.73499999999999999,"5min":0.73499999999999999,"15min":0.73499999999999999},"last":0.503}]},{"osd":5,"last update":"Thu Nov 30 22:58:19 2023","interfaces":[{"interface":"back","average":{"1min":0.53300000000000003,"5min":0.53300000000000003,"15min":0.53300000000000003},"min":{"1min":0.35499999999999998,"5min":0.35499999999999998,"15min":0.35499999999999998},"max":{"1min":0.71999999999999997,"5min":0.71999999999999997,"15min":0.71999999999999997},"last":0.49399999999999999},{"interface":"front","average":{"1min":0.56299999999999994,"5min":0.56299999999999994,"15min":0.56299999999999994},"min":{"1min":0.38200000000000001,"5min":0.38200000000000001,"15min":0.38200000000000001},"max":{"1min":0.76300000000000001,"5min":0.76300000000000001,"15min":0.76300000000000001},"last":0.55800000000000005}]},{"osd":6,"last update":"Thu Nov 30 22:58:24 2023","interfaces":[{"interface":"back","average":{"1min":0.50700000000000001,"5min":0.50700000000000001,"15min":0.50700000000000001},"min":{"1min":0.40200000000000002,"5min":0.40200000000000002,"15min":0.40200000000000002},"max":{"1min":0.70399999999999996,"5min":0.70399999999999996,"15min":0.70399999999999996},"last":0.53700000000000003},{"interface":"front","average":{"1min":0.503,"5min":0.503,"15min":0.503},"min":{"1min":0.36099999999999999,"5min":0.36099999999999999,"15min":0.36099999999999999},"max":{"1min":0.72899999999999998,"5min":0.72899999999999998,"15min":0.72899999999999998},"last":0.52900000000000003}]},{"osd":7,"last update":"Thu Nov 30 22:58:27 2023","interfaces":[{"interface":"back","average":{"1min":0.59199999999999997,"5min":0.59199999999999997,"15min":0.59199999999999997},"min":{"1min":0.42999999999999999,"5min":0.42999999999999999,"15min":0.42999999999999999},"max":{"1min":0.79200000000000004,"5min":0.79200000000000004,"15min":0.79200000000000004},"last":0.60299999999999998},{"interface":"front","average":{"1min":0.77700000000000002,"5min":0.77700000000000002,"15min":0.77700000000000002},"min":{"1min":0.45900000000000002,"5min":0.45900000000000002,"15min":0.45900000000000002},"max":{"1min":3.3199999999999998,"5min":3.3199999999999998,"15min":3.3199999999999998},"last":0.59399999999999997}]}]},{"osd":5,"up_from":29,"seq":124554051602,"num_pgs":0,"num_osds":1,"num_per_pool_osds":1,"num_per_pool_omap_osds":0,"kb":93741056,"kb_used":297448,"kb_used_data":352,"kb_used_omap":0,"kb_used_meta":297088,"kb_avail":93443608,"statfs":{"total":95990841344,"available":95686254592,"internally_reserved":0,"allocated":360448,"data_stored":139751,"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":"Thu Nov 30 22:58:20 2023","interfaces":[{"interface":"back","average":{"1min":0.50800000000000001,"5min":0.50800000000000001,"15min":0.50800000000000001},"min":{"1min":0.375,"5min":0.375,"15min":0.375},"max":{"1min":0.69899999999999995,"5min":0.69899999999999995,"15min":0.69899999999999995},"last":0.51000000000000001},{"interface":"front","average":{"1min":0.50600000000000001,"5min":0.50600000000000001,"15min":0.50600000000000001},"min":{"1min":0.39400000000000002,"5min":0.39400000000000002,"15min":0.39400000000000002},"max":{"1min":0.65100000000000002,"5min":0.65100000000000002,"15min":0.65100000000000002},"last":0.60099999999999998}]},{"osd":1,"last update":"Thu Nov 30 22:58:20 2023","interfaces":[{"interface":"back","average":{"1min":0.38100000000000001,"5min":0.38100000000000001,"15min":0.38100000000000001},"min":{"1min":0.27100000000000002,"5min":0.27100000000000002,"15min":0.27100000000000002},"max":{"1min":0.51200000000000001,"5min":0.51200000000000001,"15min":0.51200000000000001},"last":0.33900000000000002},{"interface":"front","average":{"1min":0.378,"5min":0.378,"15min":0.378},"min":{"1min":0.25800000000000001,"5min":0.25800000000000001,"15min":0.25800000000000001},"max":{"1min":0.53600000000000003,"5min":0.53600000000000003,"15min":0.53600000000000003},"last":0.28100000000000003}]},{"osd":2,"last update":"Thu Nov 30 22:58:20 2023","interfaces":[{"interface":"back","average":{"1min":0.52800000000000002,"5min":0.52800000000000002,"15min":0.52800000000000002},"min":{"1min":0.36399999999999999,"5min":0.36399999999999999,"15min":0.36399999999999999},"max":{"1min":0.69299999999999995,"5min":0.69299999999999995,"15min":0.69299999999999995},"last":0.56000000000000005},{"interface":"front","average":{"1min":0.54400000000000004,"5min":0.54400000000000004,"15min":0.54400000000000004},"min":{"1min":0.47499999999999998,"5min":0.47499999999999998,"15min":0.47499999999999998},"max":{"1min":0.77900000000000003,"5min":0.77900000000000003,"15min":0.77900000000000003},"last":0.53600000000000003}]},{"osd":3,"last update":"Thu Nov 30 22:58:20 2023","interfaces":[{"interface":"back","average":{"1min":0.40400000000000003,"5min":0.40400000000000003,"15min":0.40400000000000003},"min":{"1min":0.29399999999999998,"5min":0.29399999999999998,"15min":0.29399999999999998},"max":{"1min":0.57999999999999996,"5min":0.57999999999999996,"15min":0.57999999999999996},"last":0.378},{"interface":"front","average":{"1min":0.44500000000000001,"5min":0.44500000000000001,"15min":0.44500000000000001},"min":{"1min":0.32800000000000001,"5min":0.32800000000000001,"15min":0.32800000000000001},"max":{"1min":0.64100000000000001,"5min":0.64100000000000001,"15min":0.64100000000000001},"last":0.30399999999999999}]},{"osd":4,"last update":"Thu Nov 30 22:58:20 2023","interfaces":[{"interface":"back","average":{"1min":0.53300000000000003,"5min":0.53300000000000003,"15min":0.53300000000000003},"min":{"1min":0.38700000000000001,"5min":0.38700000000000001,"15min":0.38700000000000001},"max":{"1min":0.69899999999999995,"5min":0.69899999999999995,"15min":0.69899999999999995},"last":0.499},{"interface":"front","average":{"1min":0.56000000000000005,"5min":0.56000000000000005,"15min":0.56000000000000005},"min":{"1min":0.45000000000000001,"5min":0.45000000000000001,"15min":0.45000000000000001},"max":{"1min":0.73099999999999998,"5min":0.73099999999999998,"15min":0.73099999999999998},"last":0.58999999999999997}]},{"osd":6,"last update":"Thu Nov 30 22:58:20 2023","interfaces":[{"interface":"back","average":{"1min":0.55900000000000005,"5min":0.55900000000000005,"15min":0.55900000000000005},"min":{"1min":0.38500000000000001,"5min":0.38500000000000001,"15min":0.38500000000000001},"max":{"1min":0.69099999999999995,"5min":0.69099999999999995,"15min":0.69099999999999995},"last":0.51900000000000002},{"interface":"front","average":{"1min":0.57399999999999995,"5min":0.57399999999999995,"15min":0.57399999999999995},"min":{"1min":0.46700000000000003,"5min":0.46700000000000003,"15min":0.46700000000000003},"max":{"1min":0.81000000000000005,"5min":0.81000000000000005,"15min":0.81000000000000005},"last":0.58099999999999996}]},{"osd":7,"last update":"Thu Nov 30 22:58:23 2023","interfaces":[{"interface":"back","average":{"1min":0.46999999999999997,"5min":0.46999999999999997,"15min":0.46999999999999997},"min":{"1min":0.34200000000000003,"5min":0.34200000000000003,"15min":0.34200000000000003},"max":{"1min":0.65000000000000002,"5min":0.65000000000000002,"15min":0.65000000000000002},"last":0.41999999999999998},{"interface":"front","average":{"1min":0.501,"5min":0.501,"15min":0.501},"min":{"1min":0.40600000000000003,"5min":0.40600000000000003,"15min":0.40600000000000003},"max":{"1min":0.66200000000000003,"5min":0.66200000000000003,"15min":0.66200000000000003},"last":0.45400000000000001}]}]}],"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":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-11-30T22:58:31.539 DEBUG:teuthology.orchestra.run.smithi038:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:0dc074ce0b0b3b4f393f56dd32ef36884ebf45a9 shell --fsid 3faf8b00-8fd3-11ee-95a2-87774f69a715 -- ceph pg dump --format=json 2023-11-30T22:58:31.762 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 22:58:31 smithi167 conmon[87022]: cluster 2023-11-30T22:58:30.208434+0000 mgr.smithi038.ldalxq (mgr.14182) 131 : cluster [DBG] pgmap v109: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2023-11-30T22:58:31.762 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 22:58:31 smithi167 conmon[87022]: 2023-11-30T22:58:32.138 INFO:teuthology.orchestra.run.smithi038.stderr:Inferring config /var/lib/ceph/3faf8b00-8fd3-11ee-95a2-87774f69a715/mon.smithi038/config 2023-11-30T22:58:32.524 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:58:32 smithi038 conmon[81956]: audit 2023-11-30T22:58:30.918942+0000 2023-11-30T22:58:32.524 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:58:32 smithi038 conmon[81956]: mgr.smithi038.ldalxq (mgr.14182) 132 : audit [DBG] from='client.14468 -' entity='client.admin' cmd=[{"prefix": "pg dump", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-11-30T22:58:32.762 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 22:58:32 smithi167 conmon[87022]: audit 2023-11-30T22:58:30.918942+0000 mgr.smithi038.ldalxq (mgr.14182) 2023-11-30T22:58:32.762 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 22:58:32 smithi167 conmon[87022]: 132 : audit [DBG] from='client.14468 -' entity='client.admin' cmd=[{"prefix": "pg dump", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-11-30T22:58:33.524 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:58:33 smithi038 conmon[81956]: cluster 2023-11-30T22:58:32.208745+0000 mgr.smithi038.ldalxq (mgr.14182) 133 : cluster [DBG] pgmap v110: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2023-11-30T22:58:33.607 INFO:teuthology.orchestra.run.smithi038.stdout: 2023-11-30T22:58:33.609 INFO:teuthology.orchestra.run.smithi038.stderr:dumped all 2023-11-30T22:58:33.762 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 22:58:33 smithi167 conmon[87022]: cluster 2023-11-30T22:58:32.208745+0000 mgr.smithi038.ldalxq (mgr 2023-11-30T22:58:33.762 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 22:58:33 smithi167 conmon[87022]: .14182) 133 : cluster [DBG] pgmap v110: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2023-11-30T22:58:34.055 INFO:teuthology.orchestra.run.smithi038.stdout:{"pg_ready":true,"pg_map":{"version":110,"stamp":"2023-11-30T22:58:32.208617+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":2379580,"kb_used_data":2812,"kb_used_omap":0,"kb_used_meta":2376704,"kb_avail":747548868,"statfs":{"total":767926730752,"available":765490040832,"internally_reserved":0,"allocated":2879488,"data_stored":1117693,"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":36,"state":"active+clean","last_fresh":"2023-11-30T22:57:25.887594+0000","last_change":"2023-11-30T22:57:25.887594+0000","last_active":"2023-11-30T22:57:25.887594+0000","last_peered":"2023-11-30T22:57:25.887594+0000","last_clean":"2023-11-30T22:57:25.887594+0000","last_became_active":"2023-11-30T22:57:25.887213+0000","last_became_peered":"2023-11-30T22:57:25.887213+0000","last_unstale":"2023-11-30T22:57:25.887594+0000","last_undegraded":"2023-11-30T22:57:25.887594+0000","last_fullsized":"2023-11-30T22:57:25.887594+0000","mapping_epoch":35,"log_start":"0'0","ondisk_log_start":"0'0","created":22,"last_epoch_clean":36,"parent":"0.0","parent_split_bits":0,"last_scrub":"0'0","last_scrub_stamp":"2023-11-30T22:57:10.770098+0000","last_deep_scrub":"0'0","last_deep_scrub_stamp":"2023-11-30T22:57:10.770098+0000","last_clean_scrub_stamp":"2023-11-30T22:57:10.770098+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":4}],"osd_stats":[{"osd":7,"up_from":34,"seq":146028888080,"num_pgs":1,"num_osds":1,"num_per_pool_osds":1,"num_per_pool_omap_osds":1,"kb":93741056,"kb_used":297444,"kb_used_data":348,"kb_used_omap":0,"kb_used_meta":297088,"kb_avail":93443612,"statfs":{"total":95990841344,"available":95686258688,"internally_reserved":0,"allocated":356352,"data_stored":139436,"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":"Thu Nov 30 22:58:24 2023","interfaces":[{"interface":"back","average":{"1min":0.50800000000000001,"5min":0.50800000000000001,"15min":0.50800000000000001},"min":{"1min":0.28000000000000003,"5min":0.28000000000000003,"15min":0.28000000000000003},"max":{"1min":0.85799999999999998,"5min":0.85799999999999998,"15min":0.85799999999999998},"last":0.40999999999999998},{"interface":"front","average":{"1min":0.504,"5min":0.504,"15min":0.504},"min":{"1min":0.35199999999999998,"5min":0.35199999999999998,"15min":0.35199999999999998},"max":{"1min":0.80300000000000005,"5min":0.80300000000000005,"15min":0.80300000000000005},"last":0.49199999999999999}]},{"osd":1,"last update":"Thu Nov 30 22:58:24 2023","interfaces":[{"interface":"back","average":{"1min":0.37,"5min":0.37,"15min":0.37},"min":{"1min":0.245,"5min":0.245,"15min":0.245},"max":{"1min":0.56899999999999995,"5min":0.56899999999999995,"15min":0.56899999999999995},"last":0.34799999999999998},{"interface":"front","average":{"1min":0.39100000000000001,"5min":0.39100000000000001,"15min":0.39100000000000001},"min":{"1min":0.27100000000000002,"5min":0.27100000000000002,"15min":0.27100000000000002},"max":{"1min":0.60299999999999998,"5min":0.60299999999999998,"15min":0.60299999999999998},"last":0.29499999999999998}]},{"osd":2,"last update":"Thu Nov 30 22:58:24 2023","interfaces":[{"interface":"back","average":{"1min":0.52000000000000002,"5min":0.52000000000000002,"15min":0.52000000000000002},"min":{"1min":0.34200000000000003,"5min":0.34200000000000003,"15min":0.34200000000000003},"max":{"1min":0.88600000000000001,"5min":0.88600000000000001,"15min":0.88600000000000001},"last":0.47399999999999998},{"interface":"front","average":{"1min":0.54300000000000004,"5min":0.54300000000000004,"15min":0.54300000000000004},"min":{"1min":0.38,"5min":0.38,"15min":0.38},"max":{"1min":0.83699999999999997,"5min":0.83699999999999997,"15min":0.83699999999999997},"last":0.58399999999999996}]},{"osd":3,"last update":"Thu Nov 30 22:58:24 2023","interfaces":[{"interface":"back","average":{"1min":0.433,"5min":0.433,"15min":0.433},"min":{"1min":0.316,"5min":0.316,"15min":0.316},"max":{"1min":0.69299999999999995,"5min":0.69299999999999995,"15min":0.69299999999999995},"last":0.315},{"interface":"front","average":{"1min":0.46200000000000002,"5min":0.46200000000000002,"15min":0.46200000000000002},"min":{"1min":0.33900000000000002,"5min":0.33900000000000002,"15min":0.33900000000000002},"max":{"1min":0.65600000000000003,"5min":0.65600000000000003,"15min":0.65600000000000003},"last":0.55300000000000005}]},{"osd":4,"last update":"Thu Nov 30 22:58:24 2023","interfaces":[{"interface":"back","average":{"1min":0.57299999999999995,"5min":0.57299999999999995,"15min":0.57299999999999995},"min":{"1min":0.37,"5min":0.37,"15min":0.37},"max":{"1min":0.81599999999999995,"5min":0.81599999999999995,"15min":0.81599999999999995},"last":0.44600000000000001},{"interface":"front","average":{"1min":0.58299999999999996,"5min":0.58299999999999996,"15min":0.58299999999999996},"min":{"1min":0.39500000000000002,"5min":0.39500000000000002,"15min":0.39500000000000002},"max":{"1min":0.81599999999999995,"5min":0.81599999999999995,"15min":0.81599999999999995},"last":0.60499999999999998}]},{"osd":5,"last update":"Thu Nov 30 22:58:24 2023","interfaces":[{"interface":"back","average":{"1min":0.48299999999999998,"5min":0.48299999999999998,"15min":0.48299999999999998},"min":{"1min":0.33300000000000002,"5min":0.33300000000000002,"15min":0.33300000000000002},"max":{"1min":0.77000000000000002,"5min":0.77000000000000002,"15min":0.77000000000000002},"last":0.54300000000000004},{"interface":"front","average":{"1min":0.55900000000000005,"5min":0.55900000000000005,"15min":0.55900000000000005},"min":{"1min":0.38200000000000001,"5min":0.38200000000000001,"15min":0.38200000000000001},"max":{"1min":1.948,"5min":1.948,"15min":1.948},"last":0.41699999999999998}]},{"osd":6,"last update":"Thu Nov 30 22:58:24 2023","interfaces":[{"interface":"back","average":{"1min":0.59699999999999998,"5min":0.59699999999999998,"15min":0.59699999999999998},"min":{"1min":0.45900000000000002,"5min":0.45900000000000002,"15min":0.45900000000000002},"max":{"1min":0.79300000000000004,"5min":0.79300000000000004,"15min":0.79300000000000004},"last":0.56799999999999995},{"interface":"front","average":{"1min":0.63300000000000001,"5min":0.63300000000000001,"15min":0.63300000000000001},"min":{"1min":0.47099999999999997,"5min":0.47099999999999997,"15min":0.47099999999999997},"max":{"1min":1.044,"5min":1.044,"15min":1.044},"last":0.50600000000000001}]}]},{"osd":6,"up_from":30,"seq":128849018898,"num_pgs":0,"num_osds":1,"num_per_pool_osds":1,"num_per_pool_omap_osds":0,"kb":93741056,"kb_used":297448,"kb_used_data":352,"kb_used_omap":0,"kb_used_meta":297088,"kb_avail":93443608,"statfs":{"total":95990841344,"available":95686254592,"internally_reserved":0,"allocated":360448,"data_stored":139751,"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":"Thu Nov 30 22:58:19 2023","interfaces":[{"interface":"back","average":{"1min":0.41099999999999998,"5min":0.41099999999999998,"15min":0.41099999999999998},"min":{"1min":0.26400000000000001,"5min":0.26400000000000001,"15min":0.26400000000000001},"max":{"1min":0.67700000000000005,"5min":0.67700000000000005,"15min":0.67700000000000005},"last":0.315},{"interface":"front","average":{"1min":0.41399999999999998,"5min":0.41399999999999998,"15min":0.41399999999999998},"min":{"1min":0.26200000000000001,"5min":0.26200000000000001,"15min":0.26200000000000001},"max":{"1min":0.66100000000000003,"5min":0.66100000000000003,"15min":0.66100000000000003},"last":0.39400000000000002}]},{"osd":1,"last update":"Thu Nov 30 22:58:19 2023","interfaces":[{"interface":"back","average":{"1min":0.52800000000000002,"5min":0.52800000000000002,"15min":0.52800000000000002},"min":{"1min":0.371,"5min":0.371,"15min":0.371},"max":{"1min":0.78400000000000003,"5min":0.78400000000000003,"15min":0.78400000000000003},"last":0.433},{"interface":"front","average":{"1min":0.51000000000000001,"5min":0.51000000000000001,"15min":0.51000000000000001},"min":{"1min":0.34399999999999997,"5min":0.34399999999999997,"15min":0.34399999999999997},"max":{"1min":0.85199999999999998,"5min":0.85199999999999998,"15min":0.85199999999999998},"last":0.47199999999999998}]},{"osd":2,"last update":"Thu Nov 30 22:58:19 2023","interfaces":[{"interface":"back","average":{"1min":0.46899999999999997,"5min":0.46899999999999997,"15min":0.46899999999999997},"min":{"1min":0.309,"5min":0.309,"15min":0.309},"max":{"1min":0.74399999999999999,"5min":0.74399999999999999,"15min":0.74399999999999999},"last":0.41499999999999998},{"interface":"front","average":{"1min":0.48599999999999999,"5min":0.48599999999999999,"15min":0.48599999999999999},"min":{"1min":0.378,"5min":0.378,"15min":0.378},"max":{"1min":0.65500000000000003,"5min":0.65500000000000003,"15min":0.65500000000000003},"last":0.51800000000000002}]},{"osd":3,"last update":"Thu Nov 30 22:58:19 2023","interfaces":[{"interface":"back","average":{"1min":0.56399999999999995,"5min":0.56399999999999995,"15min":0.56399999999999995},"min":{"1min":0.39400000000000002,"5min":0.39400000000000002,"15min":0.39400000000000002},"max":{"1min":0.90300000000000002,"5min":0.90300000000000002,"15min":0.90300000000000002},"last":0.49299999999999999},{"interface":"front","average":{"1min":0.56699999999999995,"5min":0.56699999999999995,"15min":0.56699999999999995},"min":{"1min":0.38800000000000001,"5min":0.38800000000000001,"15min":0.38800000000000001},"max":{"1min":0.77200000000000002,"5min":0.77200000000000002,"15min":0.77200000000000002},"last":0.59199999999999997}]},{"osd":4,"last update":"Thu Nov 30 22:58:19 2023","interfaces":[{"interface":"back","average":{"1min":0.53500000000000003,"5min":0.53500000000000003,"15min":0.53500000000000003},"min":{"1min":0.35099999999999998,"5min":0.35099999999999998,"15min":0.35099999999999998},"max":{"1min":0.77900000000000003,"5min":0.77900000000000003,"15min":0.77900000000000003},"last":0.57999999999999996},{"interface":"front","average":{"1min":0.53100000000000003,"5min":0.53100000000000003,"15min":0.53100000000000003},"min":{"1min":0.29899999999999999,"5min":0.29899999999999999,"15min":0.29899999999999999},"max":{"1min":0.81899999999999995,"5min":0.81899999999999995,"15min":0.81899999999999995},"last":0.60799999999999998}]},{"osd":5,"last update":"Thu Nov 30 22:58:19 2023","interfaces":[{"interface":"back","average":{"1min":0.629,"5min":0.629,"15min":0.629},"min":{"1min":0.433,"5min":0.433,"15min":0.433},"max":{"1min":0.96999999999999997,"5min":0.96999999999999997,"15min":0.96999999999999997},"last":0.623},{"interface":"front","average":{"1min":0.626,"5min":0.626,"15min":0.626},"min":{"1min":0.435,"5min":0.435,"15min":0.435},"max":{"1min":1.0009999999999999,"5min":1.0009999999999999,"15min":1.0009999999999999},"last":0.55800000000000005}]},{"osd":7,"last update":"Thu Nov 30 22:58:28 2023","interfaces":[{"interface":"back","average":{"1min":0.61699999999999999,"5min":0.61699999999999999,"15min":0.61699999999999999},"min":{"1min":0.42599999999999999,"5min":0.42599999999999999,"15min":0.42599999999999999},"max":{"1min":0.77500000000000002,"5min":0.77500000000000002,"15min":0.77500000000000002},"last":0.53900000000000003},{"interface":"front","average":{"1min":0.64500000000000002,"5min":0.64500000000000002,"15min":0.64500000000000002},"min":{"1min":0.46700000000000003,"5min":0.46700000000000003,"15min":0.46700000000000003},"max":{"1min":0.83199999999999996,"5min":0.83199999999999996,"15min":0.83199999999999996},"last":0.66500000000000004}]}]},{"osd":1,"up_from":17,"seq":73014444052,"num_pgs":0,"num_osds":1,"num_per_pool_osds":1,"num_per_pool_omap_osds":0,"kb":93741056,"kb_used":297448,"kb_used_data":352,"kb_used_omap":0,"kb_used_meta":297088,"kb_avail":93443608,"statfs":{"total":95990841344,"available":95686254592,"internally_reserved":0,"allocated":360448,"data_stored":139751,"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":"Thu Nov 30 22:58:10 2023","interfaces":[{"interface":"back","average":{"1min":0.629,"5min":0.629,"15min":0.629},"min":{"1min":0.32300000000000001,"5min":0.32300000000000001,"15min":0.32300000000000001},"max":{"1min":3.2890000000000001,"5min":3.2890000000000001,"15min":3.2890000000000001},"last":0.41899999999999998},{"interface":"front","average":{"1min":0.5,"5min":0.5,"15min":0.5},"min":{"1min":0.31,"5min":0.31,"15min":0.31},"max":{"1min":0.67700000000000005,"5min":0.67700000000000005,"15min":0.67700000000000005},"last":0.34000000000000002}]},{"osd":2,"last update":"Thu Nov 30 22:58:10 2023","interfaces":[{"interface":"back","average":{"1min":0.51900000000000002,"5min":0.51900000000000002,"15min":0.51900000000000002},"min":{"1min":0.35499999999999998,"5min":0.35499999999999998,"15min":0.35499999999999998},"max":{"1min":0.67700000000000005,"5min":0.67700000000000005,"15min":0.67700000000000005},"last":0.54200000000000004},{"interface":"front","average":{"1min":0.52500000000000002,"5min":0.52500000000000002,"15min":0.52500000000000002},"min":{"1min":0.33400000000000002,"5min":0.33400000000000002,"15min":0.33400000000000002},"max":{"1min":0.70299999999999996,"5min":0.70299999999999996,"15min":0.70299999999999996},"last":0.434}]},{"osd":3,"last update":"Thu Nov 30 22:58:12 2023","interfaces":[{"interface":"back","average":{"1min":0.45700000000000002,"5min":0.45700000000000002,"15min":0.45700000000000002},"min":{"1min":0.25700000000000001,"5min":0.25700000000000001,"15min":0.25700000000000001},"max":{"1min":2.161,"5min":2.161,"15min":2.161},"last":0.38600000000000001},{"interface":"front","average":{"1min":0.375,"5min":0.375,"15min":0.375},"min":{"1min":0.249,"5min":0.249,"15min":0.249},"max":{"1min":0.53400000000000003,"5min":0.53400000000000003,"15min":0.53400000000000003},"last":0.35699999999999998}]},{"osd":4,"last update":"Thu Nov 30 22:58:18 2023","interfaces":[{"interface":"back","average":{"1min":0.68899999999999995,"5min":0.68899999999999995,"15min":0.68899999999999995},"min":{"1min":0.39800000000000002,"5min":0.39800000000000002,"15min":0.39800000000000002},"max":{"1min":3.2709999999999999,"5min":3.2709999999999999,"15min":3.2709999999999999},"last":0.46100000000000002},{"interface":"front","average":{"1min":0.54500000000000004,"5min":0.54500000000000004,"15min":0.54500000000000004},"min":{"1min":0.40200000000000002,"5min":0.40200000000000002,"15min":0.40200000000000002},"max":{"1min":0.70899999999999996,"5min":0.70899999999999996,"15min":0.70899999999999996},"last":0.48099999999999998}]},{"osd":5,"last update":"Thu Nov 30 22:58:18 2023","interfaces":[{"interface":"back","average":{"1min":0.55900000000000005,"5min":0.55900000000000005,"15min":0.55900000000000005},"min":{"1min":0.314,"5min":0.314,"15min":0.314},"max":{"1min":3.2149999999999999,"5min":3.2149999999999999,"15min":3.2149999999999999},"last":0.371},{"interface":"front","average":{"1min":0.42899999999999999,"5min":0.42899999999999999,"15min":0.42899999999999999},"min":{"1min":0.318,"5min":0.318,"15min":0.318},"max":{"1min":0.56399999999999995,"5min":0.56399999999999995,"15min":0.56399999999999995},"last":0.44600000000000001}]},{"osd":6,"last update":"Thu Nov 30 22:58:22 2023","interfaces":[{"interface":"back","average":{"1min":0.53800000000000003,"5min":0.53800000000000003,"15min":0.53800000000000003},"min":{"1min":0.36799999999999999,"5min":0.36799999999999999,"15min":0.36799999999999999},"max":{"1min":0.71699999999999997,"5min":0.71699999999999997,"15min":0.71699999999999997},"last":0.46700000000000003},{"interface":"front","average":{"1min":0.70599999999999996,"5min":0.70599999999999996,"15min":0.70599999999999996},"min":{"1min":0.35699999999999998,"5min":0.35699999999999998,"15min":0.35699999999999998},"max":{"1min":3.2469999999999999,"5min":3.2469999999999999,"15min":3.2469999999999999},"last":0.49099999999999999}]},{"osd":7,"last update":"Thu Nov 30 22:58:28 2023","interfaces":[{"interface":"back","average":{"1min":0.50900000000000001,"5min":0.50900000000000001,"15min":0.50900000000000001},"min":{"1min":0.378,"5min":0.378,"15min":0.378},"max":{"1min":0.60599999999999998,"5min":0.60599999999999998,"15min":0.60599999999999998},"last":0.51400000000000001},{"interface":"front","average":{"1min":0.48699999999999999,"5min":0.48699999999999999,"15min":0.48699999999999999},"min":{"1min":0.39800000000000002,"5min":0.39800000000000002,"15min":0.39800000000000002},"max":{"1min":0.61499999999999999,"5min":0.61499999999999999,"15min":0.61499999999999999},"last":0.504}]}]},{"osd":0,"up_from":16,"seq":68719476756,"num_pgs":1,"num_osds":1,"num_per_pool_osds":1,"num_per_pool_omap_osds":1,"kb":93741056,"kb_used":297448,"kb_used_data":352,"kb_used_omap":0,"kb_used_meta":297088,"kb_avail":93443608,"statfs":{"total":95990841344,"available":95686254592,"internally_reserved":0,"allocated":360448,"data_stored":139751,"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":"Thu Nov 30 22:58:07 2023","interfaces":[{"interface":"back","average":{"1min":0.498,"5min":0.498,"15min":0.498},"min":{"1min":0.30399999999999999,"5min":0.30399999999999999,"15min":0.30399999999999999},"max":{"1min":0.72799999999999998,"5min":0.72799999999999998,"15min":0.72799999999999998},"last":0.47599999999999998},{"interface":"front","average":{"1min":0.48799999999999999,"5min":0.48799999999999999,"15min":0.48799999999999999},"min":{"1min":0.33800000000000002,"5min":0.33800000000000002,"15min":0.33800000000000002},"max":{"1min":0.77500000000000002,"5min":0.77500000000000002,"15min":0.77500000000000002},"last":0.52900000000000003}]},{"osd":2,"last update":"Thu Nov 30 22:58:13 2023","interfaces":[{"interface":"back","average":{"1min":0.46700000000000003,"5min":0.46700000000000003,"15min":0.46700000000000003},"min":{"1min":0.252,"5min":0.252,"15min":0.252},"max":{"1min":0.83399999999999996,"5min":0.83399999999999996,"15min":0.83399999999999996},"last":0.44},{"interface":"front","average":{"1min":0.40999999999999998,"5min":0.40999999999999998,"15min":0.40999999999999998},"min":{"1min":0.24299999999999999,"5min":0.24299999999999999,"15min":0.24299999999999999},"max":{"1min":0.59399999999999997,"5min":0.59399999999999997,"15min":0.59399999999999997},"last":0.495}]},{"osd":3,"last update":"Thu Nov 30 22:58:13 2023","interfaces":[{"interface":"back","average":{"1min":0.52800000000000002,"5min":0.52800000000000002,"15min":0.52800000000000002},"min":{"1min":0.34699999999999998,"5min":0.34699999999999998,"15min":0.34699999999999998},"max":{"1min":0.80300000000000005,"5min":0.80300000000000005,"15min":0.80300000000000005},"last":0.58899999999999997},{"interface":"front","average":{"1min":0.56599999999999995,"5min":0.56599999999999995,"15min":0.56599999999999995},"min":{"1min":0.36099999999999999,"5min":0.36099999999999999,"15min":0.36099999999999999},"max":{"1min":0.74199999999999999,"5min":0.74199999999999999,"15min":0.74199999999999999},"last":0.57599999999999996}]},{"osd":4,"last update":"Thu Nov 30 22:58:19 2023","interfaces":[{"interface":"back","average":{"1min":0.47699999999999998,"5min":0.47699999999999998,"15min":0.47699999999999998},"min":{"1min":0.26700000000000002,"5min":0.26700000000000002,"15min":0.26700000000000002},"max":{"1min":0.79100000000000004,"5min":0.79100000000000004,"15min":0.79100000000000004},"last":0.55600000000000005},{"interface":"front","average":{"1min":0.501,"5min":0.501,"15min":0.501},"min":{"1min":0.251,"5min":0.251,"15min":0.251},"max":{"1min":0.81599999999999995,"5min":0.81599999999999995,"15min":0.81599999999999995},"last":0.63300000000000001}]},{"osd":5,"last update":"Thu Nov 30 22:58:19 2023","interfaces":[{"interface":"back","average":{"1min":0.61199999999999999,"5min":0.61199999999999999,"15min":0.61199999999999999},"min":{"1min":0.372,"5min":0.372,"15min":0.372},"max":{"1min":0.84899999999999998,"5min":0.84899999999999998,"15min":0.84899999999999998},"last":0.67800000000000005},{"interface":"front","average":{"1min":0.64700000000000002,"5min":0.64700000000000002,"15min":0.64700000000000002},"min":{"1min":0.42699999999999999,"5min":0.42699999999999999,"15min":0.42699999999999999},"max":{"1min":1.0149999999999999,"5min":1.0149999999999999,"15min":1.0149999999999999},"last":0.64700000000000002}]},{"osd":6,"last update":"Thu Nov 30 22:58:19 2023","interfaces":[{"interface":"back","average":{"1min":0.58299999999999996,"5min":0.58299999999999996,"15min":0.58299999999999996},"min":{"1min":0.32200000000000001,"5min":0.32200000000000001,"15min":0.32200000000000001},"max":{"1min":0.95499999999999996,"5min":0.95499999999999996,"15min":0.95499999999999996},"last":0.621},{"interface":"front","average":{"1min":0.57399999999999995,"5min":0.57399999999999995,"15min":0.57399999999999995},"min":{"1min":0.377,"5min":0.377,"15min":0.377},"max":{"1min":0.85899999999999999,"5min":0.85899999999999999,"15min":0.85899999999999999},"last":0.70099999999999996}]},{"osd":7,"last update":"Thu Nov 30 22:58:25 2023","interfaces":[{"interface":"back","average":{"1min":0.63,"5min":0.63,"15min":0.63},"min":{"1min":0.40200000000000002,"5min":0.40200000000000002,"15min":0.40200000000000002},"max":{"1min":0.79900000000000004,"5min":0.79900000000000004,"15min":0.79900000000000004},"last":0.747},{"interface":"front","average":{"1min":0.64500000000000002,"5min":0.64500000000000002,"15min":0.64500000000000002},"min":{"1min":0.41599999999999998,"5min":0.41599999999999998,"15min":0.41599999999999998},"max":{"1min":0.82499999999999996,"5min":0.82499999999999996,"15min":0.82499999999999996},"last":0.71399999999999997}]}]},{"osd":2,"up_from":21,"seq":90194313236,"num_pgs":0,"num_osds":1,"num_per_pool_osds":1,"num_per_pool_omap_osds":0,"kb":93741056,"kb_used":297448,"kb_used_data":352,"kb_used_omap":0,"kb_used_meta":297088,"kb_avail":93443608,"statfs":{"total":95990841344,"available":95686254592,"internally_reserved":0,"allocated":360448,"data_stored":139751,"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":"Thu Nov 30 22:58:10 2023","interfaces":[{"interface":"back","average":{"1min":0.36399999999999999,"5min":0.36399999999999999,"15min":0.36399999999999999},"min":{"1min":0.23599999999999999,"5min":0.23599999999999999,"15min":0.23599999999999999},"max":{"1min":0.505,"5min":0.505,"15min":0.505},"last":0.29299999999999998},{"interface":"front","average":{"1min":0.35999999999999999,"5min":0.35999999999999999,"15min":0.35999999999999999},"min":{"1min":0.23100000000000001,"5min":0.23100000000000001,"15min":0.23100000000000001},"max":{"1min":0.64800000000000002,"5min":0.64800000000000002,"15min":0.64800000000000002},"last":0.316}]},{"osd":1,"last update":"Thu Nov 30 22:58:10 2023","interfaces":[{"interface":"back","average":{"1min":0.54500000000000004,"5min":0.54500000000000004,"15min":0.54500000000000004},"min":{"1min":0.432,"5min":0.432,"15min":0.432},"max":{"1min":0.69499999999999995,"5min":0.69499999999999995,"15min":0.69499999999999995},"last":0.63300000000000001},{"interface":"front","average":{"1min":0.54600000000000004,"5min":0.54600000000000004,"15min":0.54600000000000004},"min":{"1min":0.41899999999999998,"5min":0.41899999999999998,"15min":0.41899999999999998},"max":{"1min":0.73299999999999998,"5min":0.73299999999999998,"15min":0.73299999999999998},"last":0.65600000000000003}]},{"osd":3,"last update":"Thu Nov 30 22:58:12 2023","interfaces":[{"interface":"back","average":{"1min":0.495,"5min":0.495,"15min":0.495},"min":{"1min":0.35699999999999998,"5min":0.35699999999999998,"15min":0.35699999999999998},"max":{"1min":0.70999999999999996,"5min":0.70999999999999996,"15min":0.70999999999999996},"last":0.622},{"interface":"front","average":{"1min":0.51800000000000002,"5min":0.51800000000000002,"15min":0.51800000000000002},"min":{"1min":0.372,"5min":0.372,"15min":0.372},"max":{"1min":0.72999999999999998,"5min":0.72999999999999998,"15min":0.72999999999999998},"last":0.50600000000000001}]},{"osd":4,"last update":"Thu Nov 30 22:58:18 2023","interfaces":[{"interface":"back","average":{"1min":0.47899999999999998,"5min":0.47899999999999998,"15min":0.47899999999999998},"min":{"1min":0.26300000000000001,"5min":0.26300000000000001,"15min":0.26300000000000001},"max":{"1min":0.71499999999999997,"5min":0.71499999999999997,"15min":0.71499999999999997},"last":0.40100000000000002},{"interface":"front","average":{"1min":0.49099999999999999,"5min":0.49099999999999999,"15min":0.49099999999999999},"min":{"1min":0.32100000000000001,"5min":0.32100000000000001,"15min":0.32100000000000001},"max":{"1min":0.72099999999999997,"5min":0.72099999999999997,"15min":0.72099999999999997},"last":0.34000000000000002}]},{"osd":5,"last update":"Thu Nov 30 22:58:23 2023","interfaces":[{"interface":"back","average":{"1min":0.55400000000000005,"5min":0.55400000000000005,"15min":0.55400000000000005},"min":{"1min":0.36599999999999999,"5min":0.36599999999999999,"15min":0.36599999999999999},"max":{"1min":0.81200000000000006,"5min":0.81200000000000006,"15min":0.81200000000000006},"last":0.57799999999999996},{"interface":"front","average":{"1min":0.55500000000000005,"5min":0.55500000000000005,"15min":0.55500000000000005},"min":{"1min":0.38900000000000001,"5min":0.38900000000000001,"15min":0.38900000000000001},"max":{"1min":0.83099999999999996,"5min":0.83099999999999996,"15min":0.83099999999999996},"last":0.48399999999999999}]},{"osd":6,"last update":"Thu Nov 30 22:58:23 2023","interfaces":[{"interface":"back","average":{"1min":0.54600000000000004,"5min":0.54600000000000004,"15min":0.54600000000000004},"min":{"1min":0.34300000000000003,"5min":0.34300000000000003,"15min":0.34300000000000003},"max":{"1min":0.77900000000000003,"5min":0.77900000000000003,"15min":0.77900000000000003},"last":0.41199999999999998},{"interface":"front","average":{"1min":0.54600000000000004,"5min":0.54600000000000004,"15min":0.54600000000000004},"min":{"1min":0.33700000000000002,"5min":0.33700000000000002,"15min":0.33700000000000002},"max":{"1min":0.86499999999999999,"5min":0.86499999999999999,"15min":0.86499999999999999},"last":0.46500000000000002}]},{"osd":7,"last update":"Thu Nov 30 22:58:26 2023","interfaces":[{"interface":"back","average":{"1min":0.59699999999999998,"5min":0.59699999999999998,"15min":0.59699999999999998},"min":{"1min":0.46000000000000002,"5min":0.46000000000000002,"15min":0.46000000000000002},"max":{"1min":0.72799999999999998,"5min":0.72799999999999998,"15min":0.72799999999999998},"last":0.56799999999999995},{"interface":"front","average":{"1min":0.61699999999999999,"5min":0.61699999999999999,"15min":0.61699999999999999},"min":{"1min":0.46999999999999997,"5min":0.46999999999999997,"15min":0.46999999999999997},"max":{"1min":0.755,"5min":0.755,"15min":0.755},"last":0.59699999999999998}]}]},{"osd":3,"up_from":23,"seq":98784247827,"num_pgs":1,"num_osds":1,"num_per_pool_osds":1,"num_per_pool_omap_osds":1,"kb":93741056,"kb_used":297448,"kb_used_data":352,"kb_used_omap":0,"kb_used_meta":297088,"kb_avail":93443608,"statfs":{"total":95990841344,"available":95686254592,"internally_reserved":0,"allocated":360448,"data_stored":139751,"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":"Thu Nov 30 22:58:12 2023","interfaces":[{"interface":"back","average":{"1min":0.52500000000000002,"5min":0.52500000000000002,"15min":0.52500000000000002},"min":{"1min":0.36399999999999999,"5min":0.36399999999999999,"15min":0.36399999999999999},"max":{"1min":0.70199999999999996,"5min":0.70199999999999996,"15min":0.70199999999999996},"last":0.627},{"interface":"front","average":{"1min":0.51700000000000002,"5min":0.51700000000000002,"15min":0.51700000000000002},"min":{"1min":0.36199999999999999,"5min":0.36199999999999999,"15min":0.36199999999999999},"max":{"1min":0.83299999999999996,"5min":0.83299999999999996,"15min":0.83299999999999996},"last":0.77600000000000002}]},{"osd":1,"last update":"Thu Nov 30 22:58:12 2023","interfaces":[{"interface":"back","average":{"1min":0.36699999999999999,"5min":0.36699999999999999,"15min":0.36699999999999999},"min":{"1min":0.26800000000000002,"5min":0.26800000000000002,"15min":0.26800000000000002},"max":{"1min":0.56499999999999995,"5min":0.56499999999999995,"15min":0.56499999999999995},"last":0.40799999999999997},{"interface":"front","average":{"1min":0.36899999999999999,"5min":0.36899999999999999,"15min":0.36899999999999999},"min":{"1min":0.26100000000000001,"5min":0.26100000000000001,"15min":0.26100000000000001},"max":{"1min":0.72299999999999998,"5min":0.72299999999999998,"15min":0.72299999999999998},"last":0.432}]},{"osd":2,"last update":"Thu Nov 30 22:58:12 2023","interfaces":[{"interface":"back","average":{"1min":0.53500000000000003,"5min":0.53500000000000003,"15min":0.53500000000000003},"min":{"1min":0.37,"5min":0.37,"15min":0.37},"max":{"1min":0.80700000000000005,"5min":0.80700000000000005,"15min":0.80700000000000005},"last":0.63200000000000001},{"interface":"front","average":{"1min":0.54500000000000004,"5min":0.54500000000000004,"15min":0.54500000000000004},"min":{"1min":0.36199999999999999,"5min":0.36199999999999999,"15min":0.36199999999999999},"max":{"1min":0.77800000000000002,"5min":0.77800000000000002,"15min":0.77800000000000002},"last":0.76000000000000001}]},{"osd":4,"last update":"Thu Nov 30 22:58:15 2023","interfaces":[{"interface":"back","average":{"1min":0.51800000000000002,"5min":0.51800000000000002,"15min":0.51800000000000002},"min":{"1min":0.32600000000000001,"5min":0.32600000000000001,"15min":0.32600000000000001},"max":{"1min":0.84499999999999997,"5min":0.84499999999999997,"15min":0.84499999999999997},"last":0.79200000000000004},{"interface":"front","average":{"1min":0.54700000000000004,"5min":0.54700000000000004,"15min":0.54700000000000004},"min":{"1min":0.40300000000000002,"5min":0.40300000000000002,"15min":0.40300000000000002},"max":{"1min":0.75900000000000001,"5min":0.75900000000000001,"15min":0.75900000000000001},"last":0.66200000000000003}]},{"osd":5,"last update":"Thu Nov 30 22:58:19 2023","interfaces":[{"interface":"back","average":{"1min":0.41699999999999998,"5min":0.41699999999999998,"15min":0.41699999999999998},"min":{"1min":0.30599999999999999,"5min":0.30599999999999999,"15min":0.30599999999999999},"max":{"1min":0.60299999999999998,"5min":0.60299999999999998,"15min":0.60299999999999998},"last":0.45200000000000001},{"interface":"front","average":{"1min":0.439,"5min":0.439,"15min":0.439},"min":{"1min":0.29599999999999999,"5min":0.29599999999999999,"15min":0.29599999999999999},"max":{"1min":0.76000000000000001,"5min":0.76000000000000001,"15min":0.76000000000000001},"last":0.47999999999999998}]},{"osd":6,"last update":"Thu Nov 30 22:58:21 2023","interfaces":[{"interface":"back","average":{"1min":0.56200000000000006,"5min":0.56200000000000006,"15min":0.56200000000000006},"min":{"1min":0.35999999999999999,"5min":0.35999999999999999,"15min":0.35999999999999999},"max":{"1min":0.78900000000000003,"5min":0.78900000000000003,"15min":0.78900000000000003},"last":0.64300000000000002},{"interface":"front","average":{"1min":0.55000000000000004,"5min":0.55000000000000004,"15min":0.55000000000000004},"min":{"1min":0.39200000000000002,"5min":0.39200000000000002,"15min":0.39200000000000002},"max":{"1min":0.88400000000000001,"5min":0.88400000000000001,"15min":0.88400000000000001},"last":0.83299999999999996}]},{"osd":7,"last update":"Thu Nov 30 22:58:27 2023","interfaces":[{"interface":"back","average":{"1min":0.46800000000000003,"5min":0.46800000000000003,"15min":0.46800000000000003},"min":{"1min":0.30199999999999999,"5min":0.30199999999999999,"15min":0.30199999999999999},"max":{"1min":0.67200000000000004,"5min":0.67200000000000004,"15min":0.67200000000000004},"last":0.41999999999999998},{"interface":"front","average":{"1min":0.50600000000000001,"5min":0.50600000000000001,"15min":0.50600000000000001},"min":{"1min":0.36199999999999999,"5min":0.36199999999999999,"15min":0.36199999999999999},"max":{"1min":0.70999999999999996,"5min":0.70999999999999996,"15min":0.70999999999999996},"last":0.48999999999999999}]}]},{"osd":4,"up_from":26,"seq":111669149714,"num_pgs":0,"num_osds":1,"num_per_pool_osds":1,"num_per_pool_omap_osds":0,"kb":93741056,"kb_used":297448,"kb_used_data":352,"kb_used_omap":0,"kb_used_meta":297088,"kb_avail":93443608,"statfs":{"total":95990841344,"available":95686254592,"internally_reserved":0,"allocated":360448,"data_stored":139751,"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":"Thu Nov 30 22:58:14 2023","interfaces":[{"interface":"back","average":{"1min":0.34999999999999998,"5min":0.34999999999999998,"15min":0.34999999999999998},"min":{"1min":0.245,"5min":0.245,"15min":0.245},"max":{"1min":0.46899999999999997,"5min":0.46899999999999997,"15min":0.46899999999999997},"last":0.33800000000000002},{"interface":"front","average":{"1min":0.374,"5min":0.374,"15min":0.374},"min":{"1min":0.21199999999999999,"5min":0.21199999999999999,"15min":0.21199999999999999},"max":{"1min":0.54400000000000004,"5min":0.54400000000000004,"15min":0.54400000000000004},"last":0.40400000000000003}]},{"osd":1,"last update":"Thu Nov 30 22:58:14 2023","interfaces":[{"interface":"back","average":{"1min":0.503,"5min":0.503,"15min":0.503},"min":{"1min":0.376,"5min":0.376,"15min":0.376},"max":{"1min":0.65500000000000003,"5min":0.65500000000000003,"15min":0.65500000000000003},"last":0.45700000000000002},{"interface":"front","average":{"1min":0.48899999999999999,"5min":0.48899999999999999,"15min":0.48899999999999999},"min":{"1min":0.39300000000000002,"5min":0.39300000000000002,"15min":0.39300000000000002},"max":{"1min":0.629,"5min":0.629,"15min":0.629},"last":0.56999999999999995}]},{"osd":2,"last update":"Thu Nov 30 22:58:14 2023","interfaces":[{"interface":"back","average":{"1min":0.39500000000000002,"5min":0.39500000000000002,"15min":0.39500000000000002},"min":{"1min":0.27300000000000002,"5min":0.27300000000000002,"15min":0.27300000000000002},"max":{"1min":0.59599999999999997,"5min":0.59599999999999997,"15min":0.59599999999999997},"last":0.443},{"interface":"front","average":{"1min":0.438,"5min":0.438,"15min":0.438},"min":{"1min":0.27300000000000002,"5min":0.27300000000000002,"15min":0.27300000000000002},"max":{"1min":0.68200000000000005,"5min":0.68200000000000005,"15min":0.68200000000000005},"last":0.47399999999999998}]},{"osd":3,"last update":"Thu Nov 30 22:58:14 2023","interfaces":[{"interface":"back","average":{"1min":0.53400000000000003,"5min":0.53400000000000003,"15min":0.53400000000000003},"min":{"1min":0.34499999999999997,"5min":0.34499999999999997,"15min":0.34499999999999997},"max":{"1min":0.70299999999999996,"5min":0.70299999999999996,"15min":0.70299999999999996},"last":0.51600000000000001},{"interface":"front","average":{"1min":0.51600000000000001,"5min":0.51600000000000001,"15min":0.51600000000000001},"min":{"1min":0.36899999999999999,"5min":0.36899999999999999,"15min":0.36899999999999999},"max":{"1min":0.73499999999999999,"5min":0.73499999999999999,"15min":0.73499999999999999},"last":0.503}]},{"osd":5,"last update":"Thu Nov 30 22:58:19 2023","interfaces":[{"interface":"back","average":{"1min":0.53300000000000003,"5min":0.53300000000000003,"15min":0.53300000000000003},"min":{"1min":0.35499999999999998,"5min":0.35499999999999998,"15min":0.35499999999999998},"max":{"1min":0.71999999999999997,"5min":0.71999999999999997,"15min":0.71999999999999997},"last":0.49399999999999999},{"interface":"front","average":{"1min":0.56299999999999994,"5min":0.56299999999999994,"15min":0.56299999999999994},"min":{"1min":0.38200000000000001,"5min":0.38200000000000001,"15min":0.38200000000000001},"max":{"1min":0.76300000000000001,"5min":0.76300000000000001,"15min":0.76300000000000001},"last":0.55800000000000005}]},{"osd":6,"last update":"Thu Nov 30 22:58:24 2023","interfaces":[{"interface":"back","average":{"1min":0.50700000000000001,"5min":0.50700000000000001,"15min":0.50700000000000001},"min":{"1min":0.40200000000000002,"5min":0.40200000000000002,"15min":0.40200000000000002},"max":{"1min":0.70399999999999996,"5min":0.70399999999999996,"15min":0.70399999999999996},"last":0.53700000000000003},{"interface":"front","average":{"1min":0.503,"5min":0.503,"15min":0.503},"min":{"1min":0.36099999999999999,"5min":0.36099999999999999,"15min":0.36099999999999999},"max":{"1min":0.72899999999999998,"5min":0.72899999999999998,"15min":0.72899999999999998},"last":0.52900000000000003}]},{"osd":7,"last update":"Thu Nov 30 22:58:27 2023","interfaces":[{"interface":"back","average":{"1min":0.59199999999999997,"5min":0.59199999999999997,"15min":0.59199999999999997},"min":{"1min":0.42999999999999999,"5min":0.42999999999999999,"15min":0.42999999999999999},"max":{"1min":0.79200000000000004,"5min":0.79200000000000004,"15min":0.79200000000000004},"last":0.60299999999999998},{"interface":"front","average":{"1min":0.77700000000000002,"5min":0.77700000000000002,"15min":0.77700000000000002},"min":{"1min":0.45900000000000002,"5min":0.45900000000000002,"15min":0.45900000000000002},"max":{"1min":3.3199999999999998,"5min":3.3199999999999998,"15min":3.3199999999999998},"last":0.59399999999999997}]}]},{"osd":5,"up_from":29,"seq":124554051602,"num_pgs":0,"num_osds":1,"num_per_pool_osds":1,"num_per_pool_omap_osds":0,"kb":93741056,"kb_used":297448,"kb_used_data":352,"kb_used_omap":0,"kb_used_meta":297088,"kb_avail":93443608,"statfs":{"total":95990841344,"available":95686254592,"internally_reserved":0,"allocated":360448,"data_stored":139751,"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":"Thu Nov 30 22:58:20 2023","interfaces":[{"interface":"back","average":{"1min":0.50800000000000001,"5min":0.50800000000000001,"15min":0.50800000000000001},"min":{"1min":0.375,"5min":0.375,"15min":0.375},"max":{"1min":0.69899999999999995,"5min":0.69899999999999995,"15min":0.69899999999999995},"last":0.51000000000000001},{"interface":"front","average":{"1min":0.50600000000000001,"5min":0.50600000000000001,"15min":0.50600000000000001},"min":{"1min":0.39400000000000002,"5min":0.39400000000000002,"15min":0.39400000000000002},"max":{"1min":0.65100000000000002,"5min":0.65100000000000002,"15min":0.65100000000000002},"last":0.60099999999999998}]},{"osd":1,"last update":"Thu Nov 30 22:58:20 2023","interfaces":[{"interface":"back","average":{"1min":0.38100000000000001,"5min":0.38100000000000001,"15min":0.38100000000000001},"min":{"1min":0.27100000000000002,"5min":0.27100000000000002,"15min":0.27100000000000002},"max":{"1min":0.51200000000000001,"5min":0.51200000000000001,"15min":0.51200000000000001},"last":0.33900000000000002},{"interface":"front","average":{"1min":0.378,"5min":0.378,"15min":0.378},"min":{"1min":0.25800000000000001,"5min":0.25800000000000001,"15min":0.25800000000000001},"max":{"1min":0.53600000000000003,"5min":0.53600000000000003,"15min":0.53600000000000003},"last":0.28100000000000003}]},{"osd":2,"last update":"Thu Nov 30 22:58:20 2023","interfaces":[{"interface":"back","average":{"1min":0.52800000000000002,"5min":0.52800000000000002,"15min":0.52800000000000002},"min":{"1min":0.36399999999999999,"5min":0.36399999999999999,"15min":0.36399999999999999},"max":{"1min":0.69299999999999995,"5min":0.69299999999999995,"15min":0.69299999999999995},"last":0.56000000000000005},{"interface":"front","average":{"1min":0.54400000000000004,"5min":0.54400000000000004,"15min":0.54400000000000004},"min":{"1min":0.47499999999999998,"5min":0.47499999999999998,"15min":0.47499999999999998},"max":{"1min":0.77900000000000003,"5min":0.77900000000000003,"15min":0.77900000000000003},"last":0.53600000000000003}]},{"osd":3,"last update":"Thu Nov 30 22:58:20 2023","interfaces":[{"interface":"back","average":{"1min":0.40400000000000003,"5min":0.40400000000000003,"15min":0.40400000000000003},"min":{"1min":0.29399999999999998,"5min":0.29399999999999998,"15min":0.29399999999999998},"max":{"1min":0.57999999999999996,"5min":0.57999999999999996,"15min":0.57999999999999996},"last":0.378},{"interface":"front","average":{"1min":0.44500000000000001,"5min":0.44500000000000001,"15min":0.44500000000000001},"min":{"1min":0.32800000000000001,"5min":0.32800000000000001,"15min":0.32800000000000001},"max":{"1min":0.64100000000000001,"5min":0.64100000000000001,"15min":0.64100000000000001},"last":0.30399999999999999}]},{"osd":4,"last update":"Thu Nov 30 22:58:20 2023","interfaces":[{"interface":"back","average":{"1min":0.53300000000000003,"5min":0.53300000000000003,"15min":0.53300000000000003},"min":{"1min":0.38700000000000001,"5min":0.38700000000000001,"15min":0.38700000000000001},"max":{"1min":0.69899999999999995,"5min":0.69899999999999995,"15min":0.69899999999999995},"last":0.499},{"interface":"front","average":{"1min":0.56000000000000005,"5min":0.56000000000000005,"15min":0.56000000000000005},"min":{"1min":0.45000000000000001,"5min":0.45000000000000001,"15min":0.45000000000000001},"max":{"1min":0.73099999999999998,"5min":0.73099999999999998,"15min":0.73099999999999998},"last":0.58999999999999997}]},{"osd":6,"last update":"Thu Nov 30 22:58:20 2023","interfaces":[{"interface":"back","average":{"1min":0.55900000000000005,"5min":0.55900000000000005,"15min":0.55900000000000005},"min":{"1min":0.38500000000000001,"5min":0.38500000000000001,"15min":0.38500000000000001},"max":{"1min":0.69099999999999995,"5min":0.69099999999999995,"15min":0.69099999999999995},"last":0.51900000000000002},{"interface":"front","average":{"1min":0.57399999999999995,"5min":0.57399999999999995,"15min":0.57399999999999995},"min":{"1min":0.46700000000000003,"5min":0.46700000000000003,"15min":0.46700000000000003},"max":{"1min":0.81000000000000005,"5min":0.81000000000000005,"15min":0.81000000000000005},"last":0.58099999999999996}]},{"osd":7,"last update":"Thu Nov 30 22:58:23 2023","interfaces":[{"interface":"back","average":{"1min":0.46999999999999997,"5min":0.46999999999999997,"15min":0.46999999999999997},"min":{"1min":0.34200000000000003,"5min":0.34200000000000003,"15min":0.34200000000000003},"max":{"1min":0.65000000000000002,"5min":0.65000000000000002,"15min":0.65000000000000002},"last":0.41999999999999998},{"interface":"front","average":{"1min":0.501,"5min":0.501,"15min":0.501},"min":{"1min":0.40600000000000003,"5min":0.40600000000000003,"15min":0.40600000000000003},"max":{"1min":0.66200000000000003,"5min":0.66200000000000003,"15min":0.66200000000000003},"last":0.45400000000000001}]}]}],"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":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-11-30T22:58:34.056 INFO:tasks.cephadm.ceph_manager.ceph:clean! 2023-11-30T22:58:34.056 INFO:tasks.ceph:Waiting until ceph cluster ceph is healthy... 2023-11-30T22:58:34.056 INFO:tasks.cephadm.ceph_manager.ceph:wait_until_healthy 2023-11-30T22:58:34.057 DEBUG:teuthology.orchestra.run.smithi038:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:0dc074ce0b0b3b4f393f56dd32ef36884ebf45a9 shell --fsid 3faf8b00-8fd3-11ee-95a2-87774f69a715 -- ceph health --format=json 2023-11-30T22:58:34.654 INFO:teuthology.orchestra.run.smithi038.stderr:Inferring config /var/lib/ceph/3faf8b00-8fd3-11ee-95a2-87774f69a715/mon.smithi038/config 2023-11-30T22:58:35.762 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 22:58:35 smithi167 conmon[87022]: audit 2023-11-30T22:58:33.604903+0000 mgr.smithi038.ldalxq (mgr.14182) 134 : audit [DBG] from='client.14472 -' entity='client.admin' cmd=[{"prefix": "pg dump", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-11-30T22:58:35.762 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 22:58:35 smithi167 conmon[87022]: cluster 2023-11-30T22:58:34.209037+0000 mgr.smithi038.ldalxq (mgr.14182) 135 : cluster [DBG] pgmap v111: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2023-11-30T22:58:35.769 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:58:35 smithi038 conmon[81956]: audit 2023-11-30T22:58:33.604903+0000 mgr.smithi038.ldalxq ( 2023-11-30T22:58:35.769 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:58:35 smithi038 conmon[81956]: mgr.14182) 134 : audit [DBG] from='client.14472 -' entity='client.admin' cmd=[{"prefix": "pg dump", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-11-30T22:58:35.769 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:58:35 smithi038 conmon[81956]: cluster 2023-11-30T22:58:34.209037+0000 mgr.smithi038.ldalxq (mgr.14182) 135 : cluster [DBG] pgmap v111: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2023-11-30T22:58:36.206 INFO:teuthology.orchestra.run.smithi038.stdout: 2023-11-30T22:58:36.663 INFO:teuthology.orchestra.run.smithi038.stdout:{"status":"HEALTH_OK","checks":{},"mutes":[]} 2023-11-30T22:58:36.663 INFO:tasks.cephadm.ceph_manager.ceph:wait_until_healthy done 2023-11-30T22:58:36.664 INFO:tasks.cephadm:Setup complete, yielding 2023-11-30T22:58:36.664 INFO:teuthology.run_tasks:Running task cephadm.shell... 2023-11-30T22:58:36.676 INFO:tasks.cephadm:Running commands on role host.a host ubuntu@smithi038.front.sepia.ceph.com 2023-11-30T22:58:36.677 DEBUG:teuthology.orchestra.run.smithi038:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:0dc074ce0b0b3b4f393f56dd32ef36884ebf45a9 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 3faf8b00-8fd3-11ee-95a2-87774f69a715 -- bash -c 'ceph orch status' 2023-11-30T22:58:37.024 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:58:36 smithi038 conmon[81956]: audit 2023-11-30T22:58:36.205926+0000 mon.smithi038 (mon.0) 575 : audit [DBG] from='client.? 172.21.15.38:0/3954404539' entity='client.admin' cmd=[{"prefix": "health", "format": "json"}]: dispatch 2023-11-30T22:58:37.024 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:58:36 smithi038 conmon[81956]: cluster 2023-11-30T22:58:36.209310+0000 mgr.smithi038.ldalxq (mgr.14182) 136 : cluster [DBG] pgmap v112: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2023-11-30T22:58:37.262 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 22:58:36 smithi167 conmon[87022]: audit 2023-11-30T22:58:36.205926+0000 mon.smithi038 (mon.0) 575 : audit [DBG] from='client.? 172.21.15.38:0/3954404539' entity='client.admin' cmd=[{"prefix": "health", "format": "json"}]: dispatch 2023-11-30T22:58:37.262 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 22:58:36 smithi167 conmon[87022]: cluster 2023-11-30T22:58:36. 2023-11-30T22:58:37.262 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 22:58:36 smithi167 conmon[87022]: 209310+0000 mgr.smithi038.ldalxq (mgr.14182) 136 : cluster [DBG] pgmap v112: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2023-11-30T22:58:38.424 INFO:teuthology.orchestra.run.smithi038.stdout:Backend: cephadm 2023-11-30T22:58:38.424 INFO:teuthology.orchestra.run.smithi038.stdout:Available: Yes 2023-11-30T22:58:38.424 INFO:teuthology.orchestra.run.smithi038.stdout:Paused: No 2023-11-30T22:58:38.911 DEBUG:teuthology.orchestra.run.smithi038:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:0dc074ce0b0b3b4f393f56dd32ef36884ebf45a9 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 3faf8b00-8fd3-11ee-95a2-87774f69a715 -- bash -c 'ceph orch ps' 2023-11-30T22:58:39.524 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:58:39 smithi038 conmon[81956]: cluster 2023-11-30T22:58:38.209607+0000 mgr.smithi038.ldalxq (mgr.14182 2023-11-30T22:58:39.524 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:58:39 smithi038 conmon[81956]: ) 137 : cluster [DBG] pgmap v113: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2023-11-30T22:58:39.524 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:58:39 smithi038 conmon[81956]: audit 2023-11-30T22:58:38.423016+0000 mgr.smithi038.ldalxq (mgr.14182) 138 : audit [DBG] from='client.14480 -' entity='client.admin' cmd=[{"prefix": "orch status", "target": ["mon-mgr", ""]}]: dispatch 2023-11-30T22:58:39.762 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 22:58:39 smithi167 conmon[87022]: cluster 2023-11-30T22:58:38.209607+0000 mgr.smithi038.ldalxq (mgr.14182) 137 : 2023-11-30T22:58:39.762 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 22:58:39 smithi167 conmon[87022]: cluster [DBG] pgmap v113: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2023-11-30T22:58:39.762 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 22:58:39 smithi167 conmon[87022]: audit 2023-11-30T22:58:38.423016+0000 mgr.smithi038.ldalxq (mgr.14182) 138 : audit [DBG] from='client.14480 -' entity='client.admin' cmd=[{"prefix": "orch status", "target": ["mon-mgr", ""]}]: dispatch 2023-11-30T22:58:40.699 INFO:teuthology.orchestra.run.smithi038.stdout:NAME HOST PORTS STATUS REFRESHED AGE MEM USE MEM LIM VERSION IMAGE ID CONTAINER ID 2023-11-30T22:58:40.699 INFO:teuthology.orchestra.run.smithi038.stdout:alertmanager.smithi038 smithi038 *:9093,9094 running (72s) 28s ago 3m 13.5M - 0.23.0 ba2b418f427c 021b42e5153c 2023-11-30T22:58:40.699 INFO:teuthology.orchestra.run.smithi038.stdout:crash.smithi038 smithi038 running (3m) 28s ago 3m 7302k - 16.2.14-328-g0dc074ce d30c4dc4d760 7dde6132dccf 2023-11-30T22:58:40.699 INFO:teuthology.orchestra.run.smithi038.stdout:crash.smithi167 smithi167 running (2m) 32s ago 2m 7411k - 16.2.14-328-g0dc074ce d30c4dc4d760 dde4c29159d2 2023-11-30T22:58:40.699 INFO:teuthology.orchestra.run.smithi038.stdout:grafana.smithi038 smithi038 *:3000 running (66s) 28s ago 3m 47.8M - 8.3.5 dad864ee21e9 e2cdbec850a4 2023-11-30T22:58:40.699 INFO:teuthology.orchestra.run.smithi038.stdout:mgr.smithi038.ldalxq smithi038 *:9283 running (4m) 28s ago 4m 448M - 16.2.14-328-g0dc074ce d30c4dc4d760 d6ccd81e5fbd 2023-11-30T22:58:40.699 INFO:teuthology.orchestra.run.smithi038.stdout:mgr.smithi167.wfawnr smithi167 *:8443,9283 running (2m) 32s ago 2m 392M - 16.2.14-328-g0dc074ce d30c4dc4d760 90927719e4bf 2023-11-30T22:58:40.700 INFO:teuthology.orchestra.run.smithi038.stdout:mon.smithi038 smithi038 running (4m) 28s ago 4m 78.6M 2048M 16.2.14-328-g0dc074ce d30c4dc4d760 e3e9b03c01a7 2023-11-30T22:58:40.700 INFO:teuthology.orchestra.run.smithi038.stdout:mon.smithi167 smithi167 running (2m) 32s ago 2m 69.0M 2048M 16.2.14-328-g0dc074ce d30c4dc4d760 ec7f0d15a936 2023-11-30T22:58:40.700 INFO:teuthology.orchestra.run.smithi038.stdout:node-exporter.smithi038 smithi038 *:9100 running (3m) 28s ago 3m 21.9M - 1.3.1 1dbe0e931976 92707fe9ead9 2023-11-30T22:58:40.700 INFO:teuthology.orchestra.run.smithi038.stdout:node-exporter.smithi167 smithi167 *:9100 running (2m) 32s ago 2m 24.7M - 1.3.1 1dbe0e931976 4b02b89c4810 2023-11-30T22:58:40.700 INFO:teuthology.orchestra.run.smithi038.stdout:osd.0 smithi167 running (102s) 32s ago 101s 35.5M 4004M 16.2.14-328-g0dc074ce d30c4dc4d760 2241a89e77e4 2023-11-30T22:58:40.700 INFO:teuthology.orchestra.run.smithi038.stdout:osd.1 smithi038 running (100s) 28s ago 100s 36.9M 3237M 16.2.14-328-g0dc074ce d30c4dc4d760 cc4af24fb4ea 2023-11-30T22:58:40.700 INFO:teuthology.orchestra.run.smithi038.stdout:osd.2 smithi167 running (97s) 32s ago 96s 36.8M 4004M 16.2.14-328-g0dc074ce d30c4dc4d760 e9cbd2d5cbd8 2023-11-30T22:58:40.700 INFO:teuthology.orchestra.run.smithi038.stdout:osd.3 smithi038 running (94s) 28s ago 94s 34.2M 3237M 16.2.14-328-g0dc074ce d30c4dc4d760 2f086b72e7ec 2023-11-30T22:58:40.700 INFO:teuthology.orchestra.run.smithi038.stdout:osd.4 smithi167 running (92s) 32s ago 92s 31.5M 4004M 16.2.14-328-g0dc074ce d30c4dc4d760 cf3c061b5e98 2023-11-30T22:58:40.700 INFO:teuthology.orchestra.run.smithi038.stdout:osd.5 smithi038 running (89s) 28s ago 88s 34.0M 3237M 16.2.14-328-g0dc074ce d30c4dc4d760 b92cff7ba6d8 2023-11-30T22:58:40.700 INFO:teuthology.orchestra.run.smithi038.stdout:osd.6 smithi167 running (87s) 32s ago 87s 33.9M 4004M 16.2.14-328-g0dc074ce d30c4dc4d760 9c8712410bf2 2023-11-30T22:58:40.700 INFO:teuthology.orchestra.run.smithi038.stdout:osd.7 smithi038 running (83s) 28s ago 83s 36.2M 3237M 16.2.14-328-g0dc074ce d30c4dc4d760 acdf87229b37 2023-11-30T22:58:40.700 INFO:teuthology.orchestra.run.smithi038.stdout:prometheus.smithi038 smithi038 *:9095 running (62s) 28s ago 2m 46.6M - 2.33.4 514e6a882f6e 910b7bfba1ee 2023-11-30T22:58:41.157 DEBUG:teuthology.orchestra.run.smithi038:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:0dc074ce0b0b3b4f393f56dd32ef36884ebf45a9 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 3faf8b00-8fd3-11ee-95a2-87774f69a715 -- bash -c 'ceph orch ls' 2023-11-30T22:58:41.524 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:58:41 smithi038 conmon[81956]: cluster 2023-11-30T22:58:40.209902+0000 mgr.smithi038.ldalxq (mgr.14182) 139 : cluster [DBG] pgmap v114: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2023-11-30T22:58:41.762 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 22:58:41 smithi167 conmon[87022]: cluster 2023-11-30T22:58:40.209902+0000 mgr.smithi038.ldalxq (mgr.14182) 139 : cluster [DBG] 2023-11-30T22:58:41.762 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 22:58:41 smithi167 conmon[87022]: pgmap v114: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2023-11-30T22:58:42.486 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:58:42 smithi038 conmon[81956]: audit 2023-11-30T22:58:40.690818+0000 2023-11-30T22:58:42.486 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:58:42 smithi038 conmon[81956]: mgr.smithi038.ldalxq (mgr.14182) 140 : audit [DBG] from='client.14484 -' entity='client.admin' cmd=[{"prefix": "orch ps", "target": ["mon-mgr", ""]}]: dispatch 2023-11-30T22:58:42.762 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 22:58:42 smithi167 conmon[87022]: audit 2023-11-30T22:58:40.690818+0000 mgr.smithi038.ldalxq (mgr.14182) 140 2023-11-30T22:58:42.762 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 22:58:42 smithi167 conmon[87022]: : audit [DBG] from='client.14484 -' entity='client.admin' cmd=[{"prefix": "orch ps", "target": ["mon-mgr", ""]}]: dispatch 2023-11-30T22:58:42.907 INFO:teuthology.orchestra.run.smithi038.stdout:NAME PORTS RUNNING REFRESHED AGE PLACEMENT 2023-11-30T22:58:42.907 INFO:teuthology.orchestra.run.smithi038.stdout:alertmanager ?:9093,9094 1/1 30s ago 3m count:1 2023-11-30T22:58:42.907 INFO:teuthology.orchestra.run.smithi038.stdout:crash 2/2 34s ago 4m * 2023-11-30T22:58:42.907 INFO:teuthology.orchestra.run.smithi038.stdout:grafana ?:3000 1/1 30s ago 3m count:1 2023-11-30T22:58:42.907 INFO:teuthology.orchestra.run.smithi038.stdout:mgr 2/2 34s ago 4m count:2 2023-11-30T22:58:42.907 INFO:teuthology.orchestra.run.smithi038.stdout:mon 2/2 34s ago 2m smithi038:172.21.15.38=smithi038;smithi167:172.21.15.167=smithi167;count:2 2023-11-30T22:58:42.907 INFO:teuthology.orchestra.run.smithi038.stdout:node-exporter ?:9100 2/2 34s ago 3m * 2023-11-30T22:58:42.907 INFO:teuthology.orchestra.run.smithi038.stdout:osd.all-available-devices 8 34s ago 2m * 2023-11-30T22:58:42.907 INFO:teuthology.orchestra.run.smithi038.stdout:prometheus ?:9095 1/1 30s ago 3m count:1 2023-11-30T22:58:43.405 DEBUG:teuthology.orchestra.run.smithi038:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:0dc074ce0b0b3b4f393f56dd32ef36884ebf45a9 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 3faf8b00-8fd3-11ee-95a2-87774f69a715 -- bash -c 'ceph orch host ls' 2023-11-30T22:58:43.762 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 22:58:43 smithi167 conmon[87022]: cluster 2023-11-30T22:58:42.210182+0000 mgr.smithi038.ldalxq (mgr.14182) 141 2023-11-30T22:58:43.762 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 22:58:43 smithi167 conmon[87022]: : cluster [DBG] pgmap v115: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2023-11-30T22:58:43.774 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:58:43 smithi038 conmon[81956]: cluster 2023-11-30T22:58:42.210182+0000 mgr.smithi038.ldalxq 2023-11-30T22:58:43.774 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:58:43 smithi038 conmon[81956]: (mgr.14182) 141 : cluster [DBG] pgmap v115: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2023-11-30T22:58:44.524 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:58:44 smithi038 conmon[81956]: audit 2023-11-30T22:58:42.903278+0000 mgr.smithi038.ldalxq (mgr.14182) 142 : audit [DBG] from='client.14488 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""]}]: dispatch 2023-11-30T22:58:44.762 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 22:58:44 smithi167 conmon[87022]: audit 2023-11-30T22:58:42.903278+0000 mgr.smithi038.ldalxq (mgr.14182) 2023-11-30T22:58:44.762 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 22:58:44 smithi167 conmon[87022]: 142 : audit [DBG] from='client.14488 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""]}]: dispatch 2023-11-30T22:58:45.160 INFO:teuthology.orchestra.run.smithi038.stdout:HOST ADDR LABELS STATUS 2023-11-30T22:58:45.160 INFO:teuthology.orchestra.run.smithi038.stdout:smithi038 172.21.15.38 2023-11-30T22:58:45.160 INFO:teuthology.orchestra.run.smithi038.stdout:smithi167 172.21.15.167 2023-11-30T22:58:45.160 INFO:teuthology.orchestra.run.smithi038.stdout:2 hosts in cluster 2023-11-30T22:58:45.523 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:58:45 smithi038 conmon[81956]: cluster 2023-11-30T22:58:44.210488+0000 mgr.smithi038.ldalxq 2023-11-30T22:58:45.524 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:58:45 smithi038 conmon[81956]: (mgr.14182) 143 : cluster [DBG] pgmap v116: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2023-11-30T22:58:45.545 DEBUG:teuthology.orchestra.run.smithi038:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:0dc074ce0b0b3b4f393f56dd32ef36884ebf45a9 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 3faf8b00-8fd3-11ee-95a2-87774f69a715 -- bash -c 'ceph orch device ls' 2023-11-30T22:58:45.762 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 22:58:45 smithi167 conmon[87022]: cluster 2023-11-30T22:58:44.210488+0000 mgr.smithi038.ldalxq (mgr.14182) 143 : cluster [DBG] 2023-11-30T22:58:45.762 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 22:58:45 smithi167 conmon[87022]: pgmap v116: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2023-11-30T22:58:46.441 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:58:46 smithi038 conmon[81956]: audit 2023-11-30T22:58:45.159165+0000 mgr.smithi038.ldalxq (mgr.14182) 144 : audit [DBG] from='client.14492 -' entity='client.admin' cmd=[{"prefix": "orch host ls", "target": ["mon-mgr", ""]}]: dispatch 2023-11-30T22:58:46.762 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 22:58:46 smithi167 conmon[87022]: audit 2023-11-30T22:58:45.159165+0000 mgr.smithi038.ldalxq (mgr.14182) 144 : audit [DBG] from='client.14492 -' entity='client.admin' cmd=[{"prefix": "orch host ls", "target": ["mon-mgr", ""]}]: dispatch 2023-11-30T22:58:47.224 INFO:teuthology.orchestra.run.smithi038.stdout:HOST PATH TYPE DEVICE ID SIZE AVAILABLE REFRESHED REJECT REASONS 2023-11-30T22:58:47.225 INFO:teuthology.orchestra.run.smithi038.stdout:smithi038 /dev/nvme0n1 ssd INTEL SSDPEDKE040T7_BTLE736103BB4P0KGN 3726G 53s ago LVM detected, locked 2023-11-30T22:58:47.225 INFO:teuthology.orchestra.run.smithi038.stdout:smithi038 /dev/nvme1n1 ssd Linux_6a8d2ce758a0d80e49d0 89.4G 53s ago Insufficient space (<10 extents) on vgs, LVM detected, locked 2023-11-30T22:58:47.225 INFO:teuthology.orchestra.run.smithi038.stdout:smithi038 /dev/nvme2n1 ssd Linux_f55a2d6b29c0cd9e926a 89.4G 53s ago Insufficient space (<10 extents) on vgs, LVM detected, locked 2023-11-30T22:58:47.225 INFO:teuthology.orchestra.run.smithi038.stdout:smithi038 /dev/nvme3n1 ssd Linux_e448bd66a37931b492b9 89.4G 53s ago Insufficient space (<10 extents) on vgs, LVM detected, locked 2023-11-30T22:58:47.225 INFO:teuthology.orchestra.run.smithi038.stdout:smithi038 /dev/nvme4n1 ssd Linux_c0cb444d0cf7ab7de931 89.4G 53s ago Insufficient space (<10 extents) on vgs, LVM detected, locked 2023-11-30T22:58:47.225 INFO:teuthology.orchestra.run.smithi038.stdout:smithi167 /dev/nvme0n1 ssd INTEL SSDPEDMD400G4_CVFT62330080400BGN 372G 58s ago LVM detected, locked 2023-11-30T22:58:47.225 INFO:teuthology.orchestra.run.smithi038.stdout:smithi167 /dev/nvme1n1 ssd Linux_5ea87b4bb0241fa264dc 89.4G 58s ago Insufficient space (<10 extents) on vgs, LVM detected, locked 2023-11-30T22:58:47.225 INFO:teuthology.orchestra.run.smithi038.stdout:smithi167 /dev/nvme2n1 ssd Linux_a44f4bf7bb683ab77971 89.4G 58s ago Insufficient space (<10 extents) on vgs, LVM detected, locked 2023-11-30T22:58:47.225 INFO:teuthology.orchestra.run.smithi038.stdout:smithi167 /dev/nvme3n1 ssd Linux_6e45ee5c98b6fc4698a8 89.4G 58s ago Insufficient space (<10 extents) on vgs, LVM detected, locked 2023-11-30T22:58:47.225 INFO:teuthology.orchestra.run.smithi038.stdout:smithi167 /dev/nvme4n1 ssd Linux_58049ed3d57b48a10302 89.4G 58s ago Insufficient space (<10 extents) on vgs, LVM detected, locked 2023-11-30T22:58:47.524 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:58:47 smithi038 conmon[81956]: cluster 2023-11-30T22:58:46.210857+0000 mgr.smithi038.ldalxq ( 2023-11-30T22:58:47.524 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:58:47 smithi038 conmon[81956]: mgr.14182) 145 : cluster [DBG] pgmap v117: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2023-11-30T22:58:47.693 INFO:teuthology.run_tasks:Running task vip... 2023-11-30T22:58:47.709 INFO:tasks.vip:Allocating static IPs for each host... 2023-11-30T22:58:47.709 INFO:tasks.vip:peername 172.21.15.38 2023-11-30T22:58:47.712 INFO:tasks.vip:172.21.15.38 in 172.21.0.0/20, pos 3877 2023-11-30T22:58:47.722 INFO:tasks.vip:smithi038.front.sepia.ceph.com static 10.0.15.38, vnet 10.0.0.0/16 2023-11-30T22:58:47.722 INFO:tasks.vip:VIPs are {map(str, vips)} 2023-11-30T22:58:47.722 DEBUG:teuthology.orchestra.run.smithi038:> sudo ip route ls 2023-11-30T22:58:47.750 INFO:teuthology.orchestra.run.smithi038.stdout:default via 172.21.15.254 dev ens1f0 proto dhcp metric 100 2023-11-30T22:58:47.750 INFO:teuthology.orchestra.run.smithi038.stdout:172.21.0.0/20 dev ens1f0 proto kernel scope link src 172.21.15.38 metric 100 2023-11-30T22:58:47.751 INFO:tasks.vip:Configuring 10.0.15.38 on smithi038.front.sepia.ceph.com iface ens1f0... 2023-11-30T22:58:47.752 DEBUG:teuthology.orchestra.run.smithi038:> sudo ip addr add 10.0.15.38/16 dev ens1f0 2023-11-30T22:58:47.762 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 22:58:47 smithi167 conmon[87022]: cluster 2023-11-30T22:58:46.210857+0000 mgr.smithi038.ldalxq (mgr.14182) 2023-11-30T22:58:47.762 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 22:58:47 smithi167 conmon[87022]: 145 : cluster [DBG] pgmap v117: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2023-11-30T22:58:47.817 INFO:tasks.vip:peername 172.21.15.167 2023-11-30T22:58:47.820 INFO:tasks.vip:172.21.15.167 in 172.21.0.0/20, pos 4006 2023-11-30T22:58:47.824 INFO:tasks.vip:smithi167.front.sepia.ceph.com static 10.0.15.167, vnet 10.0.0.0/16 2023-11-30T22:58:47.824 DEBUG:teuthology.orchestra.run.smithi167:> sudo ip route ls 2023-11-30T22:58:47.860 INFO:teuthology.orchestra.run.smithi167.stdout:default via 172.21.15.254 dev enp3s0f1 proto dhcp metric 100 2023-11-30T22:58:47.860 INFO:teuthology.orchestra.run.smithi167.stdout:172.21.0.0/20 dev enp3s0f1 proto kernel scope link src 172.21.15.167 metric 100 2023-11-30T22:58:47.861 INFO:tasks.vip:Configuring 10.0.15.167 on smithi167.front.sepia.ceph.com iface enp3s0f1... 2023-11-30T22:58:47.862 DEBUG:teuthology.orchestra.run.smithi167:> sudo ip addr add 10.0.15.167/16 dev enp3s0f1 2023-11-30T22:58:47.930 INFO:teuthology.run_tasks:Running task cephadm.shell... 2023-11-30T22:58:47.939 INFO:tasks.cephadm:Running commands on role host.a host ubuntu@smithi038.front.sepia.ceph.com 2023-11-30T22:58:47.939 DEBUG:teuthology.orchestra.run.smithi038:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:0dc074ce0b0b3b4f393f56dd32ef36884ebf45a9 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 3faf8b00-8fd3-11ee-95a2-87774f69a715 -- bash -c 'ceph orch device ls --refresh' 2023-11-30T22:58:48.547 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:58:48 smithi038 conmon[81956]: audit 2023-11-30T22:58:47.222924+0000 mgr.smithi038.ldalxq (mgr.14182) 146 : audit [DBG] from='client.14496 -' entity='client.admin' cmd=[{"prefix": "orch device ls", "target": ["mon-mgr", ""]}]: dispatch 2023-11-30T22:58:48.762 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 22:58:48 smithi167 conmon[87022]: audit 2023-11-30T22:58:47.222924+0000 mgr.smithi038.ldalxq (mgr.14182) 146 : audit [DBG] from='client.14496 -' entity='client.admin' cmd=[{"prefix": "orch device ls", "target": ["mon-mgr", ""]}]: dispatch 2023-11-30T22:58:49.738 INFO:teuthology.orchestra.run.smithi038.stdout:HOST PATH TYPE DEVICE ID SIZE AVAILABLE REFRESHED REJECT REASONS 2023-11-30T22:58:49.738 INFO:teuthology.orchestra.run.smithi038.stdout:smithi038 /dev/nvme0n1 ssd INTEL SSDPEDKE040T7_BTLE736103BB4P0KGN 3726G 55s ago LVM detected, locked 2023-11-30T22:58:49.739 INFO:teuthology.orchestra.run.smithi038.stdout:smithi038 /dev/nvme1n1 ssd Linux_6a8d2ce758a0d80e49d0 89.4G 55s ago Insufficient space (<10 extents) on vgs, LVM detected, locked 2023-11-30T22:58:49.739 INFO:teuthology.orchestra.run.smithi038.stdout:smithi038 /dev/nvme2n1 ssd Linux_f55a2d6b29c0cd9e926a 89.4G 55s ago Insufficient space (<10 extents) on vgs, LVM detected, locked 2023-11-30T22:58:49.739 INFO:teuthology.orchestra.run.smithi038.stdout:smithi038 /dev/nvme3n1 ssd Linux_e448bd66a37931b492b9 89.4G 55s ago Insufficient space (<10 extents) on vgs, LVM detected, locked 2023-11-30T22:58:49.739 INFO:teuthology.orchestra.run.smithi038.stdout:smithi038 /dev/nvme4n1 ssd Linux_c0cb444d0cf7ab7de931 89.4G 55s ago Insufficient space (<10 extents) on vgs, LVM detected, locked 2023-11-30T22:58:49.739 INFO:teuthology.orchestra.run.smithi038.stdout:smithi167 /dev/nvme0n1 ssd INTEL SSDPEDMD400G4_CVFT62330080400BGN 372G 61s ago LVM detected, locked 2023-11-30T22:58:49.739 INFO:teuthology.orchestra.run.smithi038.stdout:smithi167 /dev/nvme1n1 ssd Linux_5ea87b4bb0241fa264dc 89.4G 61s ago Insufficient space (<10 extents) on vgs, LVM detected, locked 2023-11-30T22:58:49.739 INFO:teuthology.orchestra.run.smithi038.stdout:smithi167 /dev/nvme2n1 ssd Linux_a44f4bf7bb683ab77971 89.4G 61s ago Insufficient space (<10 extents) on vgs, LVM detected, locked 2023-11-30T22:58:49.739 INFO:teuthology.orchestra.run.smithi038.stdout:smithi167 /dev/nvme3n1 ssd Linux_6e45ee5c98b6fc4698a8 89.4G 61s ago Insufficient space (<10 extents) on vgs, LVM detected, locked 2023-11-30T22:58:49.739 INFO:teuthology.orchestra.run.smithi038.stdout:smithi167 /dev/nvme4n1 ssd Linux_58049ed3d57b48a10302 89.4G 61s ago Insufficient space (<10 extents) on vgs, LVM detected, locked 2023-11-30T22:58:49.760 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:58:49 smithi038 conmon[81956]: cluster 2023-11-30T22:58:48.211290+0000 2023-11-30T22:58:49.760 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:58:49 smithi038 conmon[81956]: mgr.smithi038.ldalxq (mgr.14182) 147 : cluster [DBG] pgmap v118: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2023-11-30T22:58:49.761 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 22:58:49 smithi167 conmon[87022]: cluster 2023-11-30T22:58:48.211290+0000 mgr.smithi038.ldalxq ( 2023-11-30T22:58:49.761 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 22:58:49 smithi167 conmon[87022]: mgr.14182) 147 : cluster [DBG] pgmap v118: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2023-11-30T22:58:50.170 INFO:teuthology.run_tasks:Running task vip.exec... 2023-11-30T22:58:50.180 INFO:tasks.vip:Running commands on role host.a host ubuntu@smithi038.front.sepia.ceph.com 2023-11-30T22:58:50.180 DEBUG:teuthology.orchestra.run.smithi038:> sudo TESTDIR=/home/ubuntu/cephtest bash -ex -c 'systemctl stop nfs-server' 2023-11-30T22:58:50.209 INFO:teuthology.orchestra.run.smithi038.stderr:+ systemctl stop nfs-server 2023-11-30T22:58:50.217 INFO:tasks.vip:Running commands on role host.b host ubuntu@smithi167.front.sepia.ceph.com 2023-11-30T22:58:50.217 DEBUG:teuthology.orchestra.run.smithi167:> sudo TESTDIR=/home/ubuntu/cephtest bash -ex -c 'systemctl stop nfs-server' 2023-11-30T22:58:50.246 INFO:teuthology.orchestra.run.smithi167.stderr:+ systemctl stop nfs-server 2023-11-30T22:58:50.252 INFO:teuthology.run_tasks:Running task cephadm.shell... 2023-11-30T22:58:50.261 INFO:tasks.cephadm:Running commands on role host.a host ubuntu@smithi038.front.sepia.ceph.com 2023-11-30T22:58:50.261 DEBUG:teuthology.orchestra.run.smithi038:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:0dc074ce0b0b3b4f393f56dd32ef36884ebf45a9 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 3faf8b00-8fd3-11ee-95a2-87774f69a715 -- bash -c 'ceph orch apply rgw foorgw --port 8800' 2023-11-30T22:58:50.512 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 22:58:50 smithi167 conmon[87022]: audit 2023-11-30T22:58:49.766029+0000 2023-11-30T22:58:50.512 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 22:58:50 smithi167 conmon[87022]: mon.smithi038 (mon.0) 576 : audit [DBG] from='mgr.14182 172.21.15.38:0/2999689707' entity='mgr.smithi038.ldalxq' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2023-11-30T22:58:50.523 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:58:50 smithi038 conmon[81956]: audit 2023-11-30T22:58:49.766029+0000 mon.smithi038 (mon.0) 576 : audit [DBG] from='mgr.14182 172.21.15.38:0/2999689707' entity='mgr.smithi038.ldalxq' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2023-11-30T22:58:51.524 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:58:51 smithi038 conmon[81956]: audit 2023-11-30T22:58:49.736171+0000 2023-11-30T22:58:51.524 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:58:51 smithi038 conmon[81956]: mgr.smithi038.ldalxq (mgr.14182) 148 : audit [DBG] from='client.14500 -' entity='client.admin' cmd=[{"prefix": "orch device ls", "refresh": true, "target": ["mon-mgr", ""]}]: dispatch 2023-11-30T22:58:51.524 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:58:51 smithi038 conmon[81956]: cluster 2023-11-30T22:58:50.211652+0000 mgr.smithi038.ldalxq (mgr.14182) 149 : cluster [DBG] pgmap v119: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2023-11-30T22:58:51.762 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 22:58:51 smithi167 conmon[87022]: audit 2023-11-30T22:58:49.736171+0000 mgr.smithi038.ldalxq (mgr.14182 2023-11-30T22:58:51.762 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 22:58:51 smithi167 conmon[87022]: ) 148 : audit [DBG] from='client.14500 -' entity='client.admin' cmd=[{"prefix": "orch device ls", "refresh": true, "target": ["mon-mgr", ""]}]: dispatch 2023-11-30T22:58:51.762 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 22:58:51 smithi167 conmon[87022]: cluster 2023-11-30T22:58:50.211652+0000 mgr.smithi038.ldalxq (mgr.14182) 149 : cluster [DBG] pgmap v119: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2023-11-30T22:58:52.106 INFO:teuthology.orchestra.run.smithi038.stdout:Scheduled rgw.foorgw update... 2023-11-30T22:58:52.654 DEBUG:teuthology.orchestra.run.smithi038:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:0dc074ce0b0b3b4f393f56dd32ef36884ebf45a9 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 3faf8b00-8fd3-11ee-95a2-87774f69a715 -- bash -c 'ceph nfs cluster create foo --ingress --virtual-ip 10.0.31.38/16' 2023-11-30T22:58:53.386 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:58:53 smithi038 conmon[81956]: audit 2023-11-30T22:58:52.100925+0000 mgr.smithi038.ldalxq (mgr.14182) 150 : audit [DBG] from='client.14504 -' entity='client.admin' cmd=[{"prefix": "orch apply rgw", "svc_id": "foorgw", "port": 8800, "target": ["mon-mgr", ""]}]: dispatch 2023-11-30T22:58:53.386 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:58:53 smithi038 conmon[81956]: cephadm 2023-11-30T22:58:52.102052+0000 mgr.smithi038.ldalxq (mgr.14182) 151 : cephadm [INF] Saving service rgw.foorgw spec with placement count:2 2023-11-30T22:58:53.386 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:58:53 smithi038 conmon[81956]: audit 2023-11-30T22:58:52.105531+0000 mon.smithi038 (mon.0) 577 : audit [INF] from='mgr.14182 172.21.15.38:0/2999689707' entity='mgr.smithi038.ldalxq' 2023-11-30T22:58:53.386 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:58:53 smithi038 conmon[81956]: cluster 2023-11-30T22:58:52.211947+0000 mgr.smithi038.ldalxq (mgr.14182) 152 : cluster [DBG] pgmap v120: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2023-11-30T22:58:53.386 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:58:53 smithi038 conmon[81956]: audit 2023-11-30T22:58:52.675873+0000 mon.smithi038 (mon.0) 578 : audit [INF] from='mgr.14182 172.21.15.38:0/2999689707' entity='mgr.smithi038.ldalxq' 2023-11-30T22:58:53.466 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 22:58:53 smithi167 conmon[87022]: audit 2023-11-30T22:58:52. 2023-11-30T22:58:53.466 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 22:58:53 smithi167 conmon[87022]: 100925+0000 mgr.smithi038.ldalxq (mgr.14182) 150 : audit [DBG] from='client.14504 -' entity='client.admin' cmd=[{"prefix": "orch apply rgw", "svc_id": "foorgw", "port": 8800, "target": ["mon-mgr", ""]}]: dispatch 2023-11-30T22:58:53.466 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 22:58:53 smithi167 conmon[87022]: cephadm 2023 2023-11-30T22:58:53.466 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 22:58:53 smithi167 conmon[87022]: -11-30T22:58:52.102052+0000 mgr.smithi038.ldalxq (mgr. 2023-11-30T22:58:53.467 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 22:58:53 smithi167 conmon[87022]: 14182) 151 : cephadm [INF] Saving service rgw.foorgw spec with placement count:2 2023-11-30T22:58:53.467 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 22:58:53 smithi167 conmon[87022]: 2023-11-30T22:58:53.467 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 22:58:53 smithi167 conmon[87022]: audit 2023-11-30T22:58:53.467 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 22:58:53 smithi167 conmon[87022]: 2023-11-30T22:58 2023-11-30T22:58:53.467 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 22:58:53 smithi167 conmon[87022]: :52.105531+0000 mon.smithi038 ( 2023-11-30T22:58:53.467 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 22:58:53 smithi167 conmon[87022]: mon.0) 577 : audit [INF] 2023-11-30T22:58:53.467 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 22:58:53 smithi167 conmon[87022]: from='mgr.14182 172.21.15.38:0/2999689707' entity='mgr.smithi038.ldalxq' 2023-11-30T22:58:53.467 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 22:58:53 smithi167 conmon[87022]: cluster 2023 2023-11-30T22:58:53.467 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 22:58:53 smithi167 conmon[87022]: -11-30T22:58 2023-11-30T22:58:53.467 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 22:58:53 smithi167 conmon[87022]: :52.211947+0000 mgr.smithi038.ldalxq ( 2023-11-30T22:58:53.467 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 22:58:53 smithi167 conmon[87022]: mgr.14182) 152 : cluster [DBG] 2023-11-30T22:58:53.467 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 22:58:53 smithi167 conmon[87022]: pgmap v120: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2023-11-30T22:58:53.467 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 22:58:53 smithi167 conmon[87022]: audit 2023 2023-11-30T22:58:53.468 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 22:58:53 smithi167 conmon[87022]: -11-30T22:58: 2023-11-30T22:58:53.468 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 22:58:53 smithi167 conmon[87022]: 52.675873+0000 mon.smithi038 (mon. 2023-11-30T22:58:53.468 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 22:58:53 smithi167 conmon[87022]: 0) 578 : audit [INF] from='mgr.14182 172.21.15.38:0/2999689707' entity='mgr.smithi038.ldalxq' 2023-11-30T22:58:55.524 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:58:55 smithi038 conmon[81956]: cluster 2023-11-30T22:58:54.212224+0000 mgr.smithi038.ldalxq (mgr.14182) 153 : cluster [DBG] pgmap v121: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2023-11-30T22:58:55.524 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:58:55 smithi038 conmon[81956]: audit 2023-11-30T22:58:54.474620+0000 mgr.smithi038.ldalxq (mgr.14182) 154 : audit [DBG] from='client.14508 -' entity='client.admin' cmd=[{"prefix": "nfs cluster create", "cluster_id": "foo", "ingress": true, "virtual_ip": "10.0.31.38/16", "target": ["mon-mgr", ""]}]: dispatch 2023-11-30T22:58:55.524 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:58:55 smithi038 conmon[81956]: audit 2023-11-30T22:58:54.475931+0000 mon.smithi038 (mon.0) 579 : audit [INF] from='mgr.14182 172.21.15.38:0/2999689707' entity='mgr.smithi038.ldalxq' cmd=[{"prefix": "osd pool create", "pool": ".nfs"}]: dispatch 2023-11-30T22:58:55.558 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 22:58:55 smithi167 conmon[87022]: cluster 2023-11-30T22:58:54.212224+0000 mgr.smithi038.ldalxq (mgr.14182) 153 : cluster [DBG] pgmap v121: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2023-11-30T22:58:55.558 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 22:58:55 smithi167 conmon[87022]: audit 2023-11-30T22:58:54.474620+0000 mgr.smithi038.ldalxq (mgr.14182) 154 : audit [DBG] from='client.14508 -' entity='client.admin' cmd=[{"prefix": "nfs cluster create", "cluster_id": "foo", "ingress": true, "virtual_ip": "10.0.31.38/16", "target": ["mon-mgr", ""]}]: dispatch 2023-11-30T22:58:55.558 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 22:58:55 smithi167 conmon[87022]: audit 2023-11-30T22:58:54.475931+0000 mon.smithi038 (mon.0) 579 : audit [INF] from='mgr.14182 172.21.15.38:0/2999689707' entity='mgr.smithi038.ldalxq' cmd=[{"prefix": "osd pool create", "pool": ".nfs"}]: dispatch 2023-11-30T22:58:56.317 INFO:teuthology.orchestra.run.smithi038.stdout:NFS Cluster Created Successfully 2023-11-30T22:58:56.762 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 22:58:56 smithi167 conmon[87022]: audit 2023-11-30T22:58:55.278933+0000 mon.smithi038 (mon.0) 580 : audit [INF] from='mgr.14182 172.21.15.38:0/2999689707' entity='mgr.smithi038.ldalxq' cmd='[{"prefix": "osd pool create", "pool": ".nfs"}]': finished 2023-11-30T22:58:56.762 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 22:58:56 smithi167 conmon[87022]: cluster 2023-11-30T22:58:55.279009+0000 mon.smithi038 (mon.0) 581 : cluster [DBG] osdmap e37: 8 total, 8 up, 8 in 2023-11-30T22:58:56.762 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 22:58:56 smithi167 conmon[87022]: audit 2023-11-30T22:58:55.281500+0000 mon.smithi038 (mon.0) 582 : audit [INF] from='mgr.14182 172.21.15.38:0/2999689707' entity='mgr.smithi038.ldalxq' cmd=[{"prefix": "osd pool application enable", "pool": ".nfs", "app": "nfs"}]: dispatch 2023-11-30T22:58:56.762 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 22:58:56 smithi167 conmon[87022]: audit 2023-11-30T22:58:55.873245+0000 mon.smithi038 (mon.0) 583 : audit [INF] from='mgr.14182 172.21.15.38:0/2999689707' entity='mgr.smithi038.ldalxq' 2023-11-30T22:58:56.762 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 22:58:56 smithi167 conmon[87022]: audit 2023-11-30T22:58:56.089455+0000 mon.smithi038 (mon.0) 584 : audit [INF] from='mgr.14182 172.21.15.38:0/2999689707' entity='mgr.smithi038.ldalxq' 2023-11-30T22:58:56.774 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:58:56 smithi038 conmon[81956]: audit 2023-11-30T22:58:55.278933+0000 2023-11-30T22:58:56.774 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:58:56 smithi038 conmon[81956]: mon.smithi038 (mon.0) 580 : audit [INF] from='mgr.14182 172.21.15.38:0/2999689707' entity='mgr.smithi038.ldalxq' cmd='[{"prefix": "osd pool create", "pool": ".nfs"}]': finished 2023-11-30T22:58:56.774 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:58:56 smithi038 conmon[81956]: cluster 2023-11-30T22:58:55.279009+0000 mon.smithi038 (mon. 2023-11-30T22:58:56.774 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:58:56 smithi038 conmon[81956]: 0) 581 : cluster [DBG] osdmap e37: 8 total, 8 up, 8 in 2023-11-30T22:58:56.774 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:58:56 smithi038 conmon[81956]: audit 2023-11-30T22:58:55.281500 2023-11-30T22:58:56.774 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:58:56 smithi038 conmon[81956]: +0000 mon.smithi038 (mon.0) 582 : audit [INF] from='mgr.14182 172.21.15.38:0/2999689707' entity='mgr.smithi038.ldalxq' cmd=[{"prefix": "osd pool application enable", "pool": ".nfs", "app": "nfs"}]: dispatch 2023-11-30T22:58:56.774 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:58:56 smithi038 conmon[81956]: audit 2023-11-30T22:58:56.774 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:58:56 smithi038 conmon[81956]: 2023-11-30T22:58:55. 2023-11-30T22:58:56.774 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:58:56 smithi038 conmon[81956]: 873245+0000 mon.smithi038 (mon.0) 583 : audit 2023-11-30T22:58:56.775 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:58:56 smithi038 conmon[81956]: [INF] from='mgr.14182 172.21.15.38:0/2999689707' entity='mgr.smithi038.ldalxq' 2023-11-30T22:58:56.775 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:58:56 smithi038 conmon[81956]: audit 2023-11-30T 2023-11-30T22:58:56.775 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:58:56 smithi038 conmon[81956]: 22:58:56.089455+0000 mon.smithi038 (mon. 2023-11-30T22:58:56.775 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:58:56 smithi038 conmon[81956]: 0) 584 : audit [INF] from='mgr.14182 172.21.15.38:0/2999689707' entity='mgr.smithi038.ldalxq' 2023-11-30T22:58:56.809 INFO:teuthology.run_tasks:Running task vip.exec... 2023-11-30T22:58:56.819 INFO:tasks.vip:Running commands on role host.a host ubuntu@smithi038.front.sepia.ceph.com 2023-11-30T22:58:56.819 DEBUG:teuthology.orchestra.run.smithi038:> sudo TESTDIR=/home/ubuntu/cephtest bash -ex -c 'dnf install -y python3-boto3 || apt install -y python3-boto3' 2023-11-30T22:58:56.848 INFO:teuthology.orchestra.run.smithi038.stderr:+ dnf install -y python3-boto3 2023-11-30T22:58:57.217 INFO:teuthology.orchestra.run.smithi038.stdout:Updating Subscription Management repositories. 2023-11-30T22:58:57.428 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:58:57 smithi038 conmon[81956]: cluster 2023-11-30T22:58:56.212534+0000 mgr.smithi038.ldalxq (mgr.14182) 155 : cluster [DBG] pgmap v123: 33 pgs: 5 creating+peering, 1 active+clean, 27 unknown; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2023-11-30T22:58:57.428 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:58:57 smithi038 conmon[81956]: audit 2023-11-30T22:58:56.283417+0000 mon.smithi038 (mon.0) 585 : audit [INF] from='mgr.14182 172.21.15.38:0/2999689707' entity='mgr.smithi038.ldalxq' cmd='[{"prefix": "osd pool application enable", "pool": ".nfs", "app": "nfs"}]': finished 2023-11-30T22:58:57.428 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:58:57 smithi038 conmon[81956]: cluster 2023-11-30T22:58:56.283544+0000 mon.smithi038 (mon.0) 586 : cluster [DBG] osdmap e38: 8 total, 8 up, 8 in 2023-11-30T22:58:57.429 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:58:57 smithi038 conmon[81956]: cephadm 2023-11-30T22:58:56.308057+0000 mgr.smithi038.ldalxq (mgr.14182) 156 : cephadm [INF] Saving service nfs.foo spec with placement count:1 2023-11-30T22:58:57.429 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:58:57 smithi038 conmon[81956]: audit 2023-11-30T22:58:56.311382+0000 mon.smithi038 (mon.0) 587 : audit [INF] from='mgr.14182 172.21.15.38:0/2999689707' entity='mgr.smithi038.ldalxq' 2023-11-30T22:58:57.429 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:58:57 smithi038 conmon[81956]: cephadm 2023-11- 2023-11-30T22:58:57.429 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:58:57 smithi038 conmon[81956]: 30T22:58:56.312772+0000 mgr.smithi038.ldalxq (mgr.14182) 157 : cephadm [INF] Saving service ingress.nfs.foo spec with placement count:2 2023-11-30T22:58:57.429 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:58:57 smithi038 conmon[81956]: audit 2023-11-30T22:58:56.317136+0000 mon.smithi038 (mon.0) 588 : audit [INF] from='mgr.14182 172.21.15.38:0/2999689707' entity='mgr.smithi038.ldalxq' 2023-11-30T22:58:57.762 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 22:58:57 smithi167 conmon[87022]: cluster 2023-11-30T22:58:56.212534+0000 mgr.smithi038.ldalxq (mgr.14182) 155 : cluster [DBG] pgmap v123: 33 pgs: 5 creating+peering, 1 active+clean, 27 unknown; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2023-11-30T22:58:57.762 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 22:58:57 smithi167 conmon[87022]: audit 2023-11-30T22:58:56.283417+0000 mon.smithi038 (mon.0) 585 : audit [INF] from='mgr.14182 172.21.15.38:0/2999689707' entity='mgr.smithi038.ldalxq' cmd='[{"prefix": "osd pool application enable", "pool": ".nfs", "app": "nfs"}]': finished 2023-11-30T22:58:57.762 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 22:58:57 smithi167 conmon[87022]: cluster 2023-11-30T22:58:56.283544+0000 mon.smithi038 (mon.0) 586 : cluster [DBG] osdmap e38: 8 total, 8 up, 8 in 2023-11-30T22:58:57.762 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 22:58:57 smithi167 conmon[87022]: cephadm 2023-11-30T22:58:56.308057+0000 mgr.smithi038.ldalxq (mgr.14182) 156 : cephadm [INF] Saving service nfs.foo spec with placement count:1 2023-11-30T22:58:57.762 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 22:58:57 smithi167 conmon[87022]: audit 2023-11-30T22:58:56.311382+0000 mon.smithi038 (mon.0) 587 : audit [INF] from='mgr.14182 172.21.15.38:0/2999689707' entity='mgr.smithi038.ldalxq' 2023-11-30T22:58:57.762 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 22:58:57 smithi167 conmon[87022]: cephadm 2023-11-30T22:58:56.312772+0000 mgr.smithi038.ldalxq (mgr.14182) 157 : cephadm [INF] Saving service ingress.nfs.foo spec with placement count:2 2023-11-30T22:58:57.762 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 22:58:57 smithi167 conmon[87022]: audit 2023-11-30T22:58:56.317136+0000 mon.smithi038 (mon.0) 588 : audit [INF] from='mgr.14182 172.21.15.38:0/2999689707' entity='mgr.smithi038.ldalxq' 2023-11-30T22:58:58.024 INFO:teuthology.orchestra.run.smithi038.stdout:Last metadata expiration check: 0:07:27 ago on Thu 30 Nov 2023 10:51:30 PM UTC. 2023-11-30T22:58:58.640 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:58:58 smithi038 conmon[81956]: cluster 2023-11-30T22:58:57.297828+0000 mon.smithi038 (mon.0) 589 : cluster [DBG] osdmap e39: 8 total, 8 up, 8 in 2023-11-30T22:58:58.640 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:58:58 smithi038 conmon[81956]: cluster 2023-11-30T22:58:57.322035+0000 mon.smithi038 (mon.0) 590 : cluster [DBG] mgrmap e19: smithi038.ldalxq(active, since 3m), standbys: smithi167.wfawnr 2023-11-30T22:58:58.762 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 22:58:58 smithi167 conmon[87022]: cluster 2023-11-30T22:58:57.297828+0000 mon.smithi038 (mon.0) 589 : cluster [DBG] osdmap e39: 8 total, 8 up, 8 in 2023-11-30T22:58:58.762 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 22:58:58 smithi167 conmon[87022]: 2023-11-30T22:58:58.762 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 22:58:58 smithi167 conmon[87022]: cluster 2023-11-30T22:58:57.322035+0000 mon.smithi038 (mon.0) 590 : cluster [DBG] mgrmap e19: smithi038.ldalxq(active, since 3m), standbys: smithi167.wfawnr 2023-11-30T22:58:59.762 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 22:58:59 smithi167 conmon[87022]: cluster 2023-11-30T22:58:58.212872+0000 mgr.smithi038.ldalxq (mgr.14182) 158 : 2023-11-30T22:58:59.762 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 22:58:59 smithi167 conmon[87022]: cluster [DBG] pgmap v126: 33 pgs: 5 creating+peering, 9 active+clean, 19 unknown; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2023-11-30T22:58:59.773 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:58:59 smithi038 conmon[81956]: cluster 2023-11-30T22:58:58.212872+0000 mgr.smithi038.ldalxq (mgr 2023-11-30T22:58:59.774 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:58:59 smithi038 conmon[81956]: .14182) 158 : cluster [DBG] pgmap v126: 33 pgs: 5 creating+peering, 9 active+clean, 19 unknown; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2023-11-30T22:58:59.981 INFO:teuthology.orchestra.run.smithi038.stdout:Dependencies resolved. 2023-11-30T22:58:59.982 INFO:teuthology.orchestra.run.smithi038.stdout:================================================================================ 2023-11-30T22:58:59.982 INFO:teuthology.orchestra.run.smithi038.stdout: Package Arch Version Repository Size 2023-11-30T22:58:59.982 INFO:teuthology.orchestra.run.smithi038.stdout:================================================================================ 2023-11-30T22:58:59.982 INFO:teuthology.orchestra.run.smithi038.stdout:Installing: 2023-11-30T22:58:59.982 INFO:teuthology.orchestra.run.smithi038.stdout: python3-boto3 noarch 1.15.15-1.el8 epel 152 k 2023-11-30T22:58:59.982 INFO:teuthology.orchestra.run.smithi038.stdout:Installing dependencies: 2023-11-30T22:58:59.983 INFO:teuthology.orchestra.run.smithi038.stdout: python3-botocore noarch 1.18.15-1.el8 epel 4.5 M 2023-11-30T22:58:59.983 INFO:teuthology.orchestra.run.smithi038.stdout: python3-jmespath noarch 0.9.0-11.el8 rhel-8-for-x86_64-appstream-rpms 45 k 2023-11-30T22:58:59.983 INFO:teuthology.orchestra.run.smithi038.stdout: python3-s3transfer noarch 0.3.4-1.el8 epel 108 k 2023-11-30T22:58:59.983 INFO:teuthology.orchestra.run.smithi038.stdout: 2023-11-30T22:58:59.983 INFO:teuthology.orchestra.run.smithi038.stdout:Transaction Summary 2023-11-30T22:58:59.983 INFO:teuthology.orchestra.run.smithi038.stdout:================================================================================ 2023-11-30T22:58:59.984 INFO:teuthology.orchestra.run.smithi038.stdout:Install 4 Packages 2023-11-30T22:58:59.984 INFO:teuthology.orchestra.run.smithi038.stdout: 2023-11-30T22:58:59.985 INFO:teuthology.orchestra.run.smithi038.stdout:Total download size: 4.8 M 2023-11-30T22:58:59.985 INFO:teuthology.orchestra.run.smithi038.stdout:Installed size: 49 M 2023-11-30T22:58:59.985 INFO:teuthology.orchestra.run.smithi038.stdout:Downloading Packages: 2023-11-30T22:59:00.460 INFO:teuthology.orchestra.run.smithi038.stdout:(1/4): python3-s3transfer-0.3.4-1.el8.noarch.rp 343 kB/s | 108 kB 00:00 2023-11-30T22:59:00.461 INFO:teuthology.orchestra.run.smithi038.stdout:(2/4): python3-boto3-1.15.15-1.el8.noarch.rpm 482 kB/s | 152 kB 00:00 2023-11-30T22:59:00.506 INFO:teuthology.orchestra.run.smithi038.stdout:(3/4): python3-jmespath-0.9.0-11.el8.noarch.rpm 987 kB/s | 45 kB 00:00 2023-11-30T22:59:00.718 INFO:teuthology.orchestra.run.smithi038.stdout:(4/4): python3-botocore-1.18.15-1.el8.noarch.rp 7.8 MB/s | 4.5 MB 00:00 2023-11-30T22:59:00.721 INFO:teuthology.orchestra.run.smithi038.stdout:-------------------------------------------------------------------------------- 2023-11-30T22:59:00.721 INFO:teuthology.orchestra.run.smithi038.stdout:Total 6.4 MB/s | 4.8 MB 00:00 2023-11-30T22:59:00.723 INFO:teuthology.orchestra.run.smithi038.stdout:Running transaction check 2023-11-30T22:59:00.731 INFO:teuthology.orchestra.run.smithi038.stdout:Transaction check succeeded. 2023-11-30T22:59:00.731 INFO:teuthology.orchestra.run.smithi038.stdout:Running transaction test 2023-11-30T22:59:00.762 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 22:59:00 smithi167 conmon[87022]: audit 2023-11-30T22:58:59.364758+0000 mon.smithi038 (mon.0) 2023-11-30T22:59:00.762 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 22:59:00 smithi167 conmon[87022]: 591 : audit [INF] from='mgr.14182 172.21.15.38:0/2999689707' entity='mgr.smithi038.ldalxq' 2023-11-30T22:59:00.762 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 22:59:00 smithi167 conmon[87022]: audit 2023-11-30T22:58:59.780700+0000 mon.smithi038 (mon.0) 592 : audit [DBG] from='mgr.14182 172.21.15.38:0/2999689707' entity='mgr.smithi038.ldalxq' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2023-11-30T22:59:00.762 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 22:59:00 smithi167 conmon[87022]: audit 2023-11-30T22:58:59.781473+0000 mon.smithi038 (mon.0) 593 2023-11-30T22:59:00.762 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 22:59:00 smithi167 conmon[87022]: : audit [INF] from='mgr.14182 172.21.15.38:0/2999689707' entity='mgr.smithi038.ldalxq' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2023-11-30T22:59:00.762 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 22:59:00 smithi167 conmon[87022]: audit 2023-11-30T22:59:00.762 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 22:59:00 smithi167 conmon[87022]: 2023-11-30T22:58:59.785909+0000 2023-11-30T22:59:00.762 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 22:59:00 smithi167 conmon[87022]: mon.smithi038 (mon.0) 594 : audit [INF] from='mgr.14182 172.21.15.38:0/2999689707' entity='mgr.smithi038.ldalxq' 2023-11-30T22:59:00.763 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 22:59:00 smithi167 conmon[87022]: 2023-11-30T22:59:00.763 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 22:59:00 smithi167 conmon[87022]: audit 2023-11-30T22:59:00.763 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 22:59:00 smithi167 conmon[87022]: 2023-11-30T22:58:59.789464 2023-11-30T22:59:00.763 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 22:59:00 smithi167 conmon[87022]: +0000 mon.smithi038 (mon.0) 595 : audit [DBG] 2023-11-30T22:59:00.763 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 22:59:00 smithi167 conmon[87022]: from='mgr.14182 172.21.15.38:0/2999689707' entity='mgr.smithi038.ldalxq' cmd=[{"prefix": "osd tree", "states": ["destroyed"], "format": "json"}]: dispatch 2023-11-30T22:59:00.763 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 22:59:00 smithi167 conmon[87022]: audit 2023-11-30T22:58:59.800131+0000 mon.smithi038 (mon.0) 2023-11-30T22:59:00.763 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 22:59:00 smithi167 conmon[87022]: 596 : audit [INF] from='mgr.14182 172.21.15.38:0/2999689707' entity='mgr.smithi038.ldalxq' 2023-11-30T22:59:00.763 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 22:59:00 smithi167 conmon[87022]: audit 2023-11- 2023-11-30T22:59:00.763 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 22:59:00 smithi167 conmon[87022]: 30T22:58:59.800676+0000 mon.smithi038 (mon.0) 597 : audit [INF] from='mgr.14182 172.21.15.38:0/2999689707' entity='mgr.smithi038.ldalxq' cmd=[{"prefix": "auth get-or-create", "entity": "client.rgw.foorgw.smithi167.nyemgg", "caps": ["mon", "allow *", "mgr", "allow rw", "osd", "allow rwx tag rgw *=*"]}]: dispatch 2023-11-30T22:59:00.763 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 22:59:00 smithi167 conmon[87022]: audit 2023-11-30T22:58:59.803786+0000 mon.smithi038 (mon. 2023-11-30T22:59:00.763 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 22:59:00 smithi167 conmon[87022]: 0) 598 : audit [INF] from='mgr.14182 172.21.15.38:0/2999689707' entity='mgr.smithi038.ldalxq' cmd='[{"prefix": "auth get-or-create", "entity": "client.rgw.foorgw.smithi167.nyemgg", "caps": ["mon", "allow *", "mgr", "allow rw", "osd", "allow rwx tag rgw *=*"]}]': finished 2023-11-30T22:59:00.763 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 22:59:00 smithi167 conmon[87022]: audit 2023-11-30T22:58:59.807314+0000 mon.smithi038 (mon.0) 599 2023-11-30T22:59:00.763 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 22:59:00 smithi167 conmon[87022]: : audit [INF] from='mgr.14182 172.21.15.38:0/2999689707' entity='mgr.smithi038.ldalxq' 2023-11-30T22:59:00.763 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 22:59:00 smithi167 conmon[87022]: audit 2023-11-30T22:58:59.807943+0000 mon.smithi038 (mon.0) 2023-11-30T22:59:00.764 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 22:59:00 smithi167 conmon[87022]: 600 : audit [DBG] from='mgr.14182 172.21.15.38:0/2999689707' entity='mgr.smithi038.ldalxq' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2023-11-30T22:59:00.774 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:59:00 smithi038 conmon[81956]: audit 2023-11-30T22:58:59.364758 2023-11-30T22:59:00.774 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:59:00 smithi038 conmon[81956]: +0000 mon.smithi038 (mon.0) 591 : audit [INF] from='mgr.14182 172.21.15.38:0/2999689707' entity='mgr.smithi038.ldalxq' 2023-11-30T22:59:00.774 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:59:00 smithi038 conmon[81956]: audit 2023-11-30T22:58:59.780700+0000 mon.smithi038 (mon.0) 592 : audit [DBG] 2023-11-30T22:59:00.774 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:59:00 smithi038 conmon[81956]: from='mgr.14182 172.21.15.38:0/2999689707' entity='mgr.smithi038.ldalxq' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2023-11-30T22:59:00.774 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:59:00 smithi038 conmon[81956]: audit 2023-11-30T22:58:59.781473+0000 mon.smithi038 (mon.0) 593 2023-11-30T22:59:00.774 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:59:00 smithi038 conmon[81956]: : audit [INF] from='mgr.14182 172.21.15.38:0/2999689707' entity='mgr.smithi038.ldalxq' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2023-11-30T22:59:00.774 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:59:00 smithi038 conmon[81956]: audit 2023-11-30T 2023-11-30T22:59:00.774 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:59:00 smithi038 conmon[81956]: 22:58:59.785909+0000 mon.smithi038 (mon.0) 594 : audit [INF] from='mgr.14182 172.21.15.38:0/2999689707' entity='mgr.smithi038.ldalxq' 2023-11-30T22:59:00.774 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:59:00 smithi038 conmon[81956]: audit 2023-11-30T22:58:59.789464+0000 mon.smithi038 (mon 2023-11-30T22:59:00.774 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:59:00 smithi038 conmon[81956]: .0) 595 : audit [DBG] from='mgr.14182 172.21.15.38:0/2999689707' entity='mgr.smithi038.ldalxq' cmd=[{"prefix": "osd tree", "states": ["destroyed"], "format": "json"}]: dispatch 2023-11-30T22:59:00.774 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:59:00 smithi038 conmon[81956]: audit 2023-11-30T22:58:59.800131+0000 mon.smithi038 ( 2023-11-30T22:59:00.775 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:59:00 smithi038 conmon[81956]: mon.0) 596 : audit [INF] from='mgr.14182 172.21.15.38:0/2999689707' entity='mgr.smithi038.ldalxq' 2023-11-30T22:59:00.775 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:59:00 smithi038 conmon[81956]: audit 2023-11-30T22:58:59.800676+0000 mon.smithi038 ( 2023-11-30T22:59:00.775 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:59:00 smithi038 conmon[81956]: mon.0) 597 : audit [INF] from='mgr.14182 172.21.15.38:0/2999689707' entity='mgr.smithi038.ldalxq' cmd=[{"prefix": "auth get-or-create", "entity": "client.rgw.foorgw.smithi167.nyemgg", "caps": ["mon", "allow *", "mgr", "allow rw", "osd", "allow rwx tag rgw *=*"]}]: dispatch 2023-11-30T22:59:00.775 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:59:00 smithi038 conmon[81956]: audit 2023-11-30T22:58:59.803786+0000 mon.smithi038 2023-11-30T22:59:00.775 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:59:00 smithi038 conmon[81956]: (mon.0) 598 : audit [INF] from='mgr.14182 172.21.15.38:0/2999689707' entity='mgr.smithi038.ldalxq' cmd='[{"prefix": "auth get-or-create", "entity": "client.rgw.foorgw.smithi167.nyemgg", "caps": ["mon", "allow *", "mgr", "allow rw", "osd", "allow rwx tag rgw *=*"]}]': finished 2023-11-30T22:59:00.775 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:59:00 smithi038 conmon[81956]: audit 2023-11-30T22:58:59.807314+0000 mon.smithi038 (mon.0) 599 2023-11-30T22:59:00.775 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:59:00 smithi038 conmon[81956]: : audit [INF] from='mgr.14182 172.21.15.38:0/2999689707' entity='mgr.smithi038.ldalxq' 2023-11-30T22:59:00.775 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:59:00 smithi038 conmon[81956]: audit 2023-11-30T 2023-11-30T22:59:00.775 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:59:00 smithi038 conmon[81956]: 22:58:59.807943+0000 mon.smithi038 (mon.0) 600 : audit [DBG] from='mgr.14182 172.21.15.38:0/2999689707' entity='mgr.smithi038.ldalxq' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2023-11-30T22:59:00.902 INFO:teuthology.orchestra.run.smithi038.stdout:Transaction test succeeded. 2023-11-30T22:59:00.907 INFO:teuthology.orchestra.run.smithi038.stdout:Running transaction 2023-11-30T22:59:01.157 INFO:teuthology.orchestra.run.smithi038.stdout: Preparing : 1/1 2023-11-30T22:59:01.689 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 22:59:01 smithi167 conmon[87022]: cephadm 2023-11-30T22:58:59.793455+0000 mgr.smithi038.ldalxq (mgr.14182) 159 : cephadm [INF] Saving service rgw.foorgw spec with placement count:2 2023-11-30T22:59:01.689 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 22:59:01 smithi167 conmon[87022]: cephadm 2023-11-30T22:58:59.808551+0000 mgr.smithi038.ldalxq (mgr.14182) 160 : cephadm [INF] Deploying daemon rgw.foorgw.smithi167.nyemgg on smithi167 2023-11-30T22:59:01.689 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 22:59:01 smithi167 conmon[87022]: cluster 2023-11-30T22:59:00.213262+0000 mgr.smithi038.ldalxq (mgr.14182) 161 : cluster [DBG] pgmap v127: 33 pgs: 5 creating+peering, 28 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2023-11-30T22:59:01.773 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:59:01 smithi038 conmon[81956]: cephadm 2023-11-30T22:58:59.793455 2023-11-30T22:59:01.774 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:59:01 smithi038 conmon[81956]: +0000 mgr.smithi038.ldalxq (mgr.14182) 159 : cephadm [INF] Saving service rgw.foorgw spec with placement count:2 2023-11-30T22:59:01.774 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:59:01 smithi038 conmon[81956]: cephadm 2023-11-30T22:58:59.808551+0000 mgr.smithi038.ldalxq (mgr.14182) 160 : cephadm [INF] Deploying daemon rgw.foorgw.smithi167.nyemgg on smithi167 2023-11-30T22:59:01.774 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:59:01 smithi038 conmon[81956]: cluster 2023-11-30T22:59:00.213262+0000 mgr.smithi038.ldalxq (mgr.14182) 161 : 2023-11-30T22:59:01.774 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:59:01 smithi038 conmon[81956]: cluster [DBG] pgmap v127: 33 pgs: 5 creating+peering, 28 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2023-11-30T22:59:02.453 INFO:teuthology.orchestra.run.smithi038.stdout: Installing : python3-jmespath-0.9.0-11.el8.noarch 1/4 2023-11-30T22:59:02.722 INFO:teuthology.orchestra.run.smithi038.stdout: Installing : python3-botocore-1.18.15-1.el8.noarch 2/4 2023-11-30T22:59:03.070 INFO:teuthology.orchestra.run.smithi038.stdout: Installing : python3-s3transfer-0.3.4-1.el8.noarch 3/4 2023-11-30T22:59:03.415 INFO:teuthology.orchestra.run.smithi038.stdout: Installing : python3-boto3-1.15.15-1.el8.noarch 4/4 2023-11-30T22:59:03.524 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:59:03 smithi038 conmon[81956]: cluster 2023-11-30T22:59:02.213639 2023-11-30T22:59:03.524 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:59:03 smithi038 conmon[81956]: +0000 mgr.smithi038.ldalxq (mgr.14182) 162 : cluster [DBG] pgmap v128: 33 pgs: 33 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2023-11-30T22:59:03.524 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:59:03 smithi038 conmon[81956]: audit 2023-11-30T22:59:02.266712+0000 mon.smithi038 (mon.0) 601 : audit [INF] from='mgr.14182 172.21.15.38:0/2999689707' entity='mgr.smithi038.ldalxq' 2023-11-30T22:59:03.524 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:59:03 smithi038 conmon[81956]: audit 2023-11-30T22:59:02.267844+0000 mon.smithi038 (mon.0) 602 : audit [INF] from='mgr.14182 172.21.15.38:0/2999689707' entity='mgr.smithi038.ldalxq' cmd=[{"prefix": "auth get-or-create", "entity": "client.rgw.foorgw.smithi038.cljkux", "caps": ["mon", "allow *", "mgr", "allow rw", "osd", "allow rwx tag rgw *=*"]}]: dispatch 2023-11-30T22:59:03.525 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:59:03 smithi038 conmon[81956]: audit 2023-11-30T22:59:02.272359+0000 mon.smithi038 (mon.0) 603 : audit [INF] from='mgr.14182 172.21.15.38:0/2999689707' entity='mgr.smithi038.ldalxq' cmd='[{"prefix": "auth get-or-create", "entity": "client.rgw.foorgw.smithi038.cljkux", "caps": ["mon", "allow *", "mgr", "allow rw", "osd", "allow rwx tag rgw *=*"]}]': finished 2023-11-30T22:59:03.525 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:59:03 smithi038 conmon[81956]: audit 2023-11-30T22:59:02.276296+0000 mon.smithi038 (mon.0) 604 : audit [INF] from='mgr.14182 172.21.15.38:0/2999689707' entity='mgr.smithi038.ldalxq' 2023-11-30T22:59:03.525 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:59:03 smithi038 conmon[81956]: audit 2023-11-30T22:59:02.276952+0000 mon.smithi038 (mon.0) 605 : audit [DBG] from='mgr.14182 172.21.15.38:0/2999689707' entity='mgr.smithi038.ldalxq' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2023-11-30T22:59:03.525 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:59:03 smithi038 conmon[81956]: cephadm 2023-11-30T22:59:02.277544+0000 mgr.smithi038.ldalxq (mgr.14182) 163 : cephadm [INF] Deploying daemon rgw.foorgw.smithi038.cljkux on smithi038 2023-11-30T22:59:03.525 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:59:03 smithi038 conmon[81956]: cluster 2023-11-30T22:59:02.376230+0000 mon.smithi038 (mon.0) 606 : cluster [DBG] osdmap e40: 8 total, 8 up, 8 in 2023-11-30T22:59:03.525 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:59:03 smithi038 conmon[81956]: audit 2023-11-30T22:59:02.378161+0000 mon.smithi167 (mon.1) 20 : audit [INF] from='client.? 172.21.15.167:0/777532103' entity='client.rgw.foorgw.smithi167.nyemgg' cmd=[{"prefix": "osd pool application enable","pool": ".rgw.root","app": "rgw"}]: dispatch 2023-11-30T22:59:03.525 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:59:03 smithi038 conmon[81956]: audit 2023-11-30T22:59:02.379875+0000 mon.smithi038 (mon.0) 607 : audit [INF] from='client.? ' entity='client.rgw.foorgw.smithi167.nyemgg' cmd=[{"prefix": "osd pool application enable","pool": ".rgw.root","app": "rgw"}]: dispatch 2023-11-30T22:59:03.708 INFO:teuthology.orchestra.run.smithi038.stdout: Running scriptlet: python3-boto3-1.15.15-1.el8.noarch 4/4 2023-11-30T22:59:03.709 INFO:teuthology.orchestra.run.smithi038.stdout: Verifying : python3-boto3-1.15.15-1.el8.noarch 1/4 2023-11-30T22:59:03.709 INFO:teuthology.orchestra.run.smithi038.stdout: Verifying : python3-botocore-1.18.15-1.el8.noarch 2/4 2023-11-30T22:59:03.709 INFO:teuthology.orchestra.run.smithi038.stdout: Verifying : python3-s3transfer-0.3.4-1.el8.noarch 3/4 2023-11-30T22:59:03.762 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 22:59:03 smithi167 conmon[87022]: cluster 2023-11-30T22:59:02.213639+0000 mgr.smithi038.ldalxq (mgr.14182) 162 : cluster [DBG] 2023-11-30T22:59:03.762 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 22:59:03 smithi167 conmon[87022]: pgmap v128: 33 pgs: 33 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2023-11-30T22:59:03.762 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 22:59:03 smithi167 conmon[87022]: audit 2023-11-30T22:59:02.266712+0000 mon.smithi038 (mon.0) 601 : audit [INF] from='mgr.14182 172.21.15.38:0/2999689707' entity='mgr.smithi038.ldalxq' 2023-11-30T22:59:03.762 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 22:59:03 smithi167 conmon[87022]: audit 2023-11-30T22:59:03.763 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 22:59:03 smithi167 conmon[87022]: 2023-11-30T22:59:02.267844+0000 mon.smithi038 (mon.0) 602 : audit [INF] from='mgr.14182 172.21.15.38:0/2999689707' entity='mgr.smithi038.ldalxq' cmd=[{"prefix": "auth get-or-create", "entity": "client.rgw.foorgw.smithi038.cljkux", "caps": ["mon", "allow *", "mgr", "allow rw", "osd", "allow rwx tag rgw *=*"]}]: dispatch 2023-11-30T22:59:03.763 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 22:59:03 smithi167 conmon[87022]: audit 2023-11-30T22:59:02 2023-11-30T22:59:03.763 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 22:59:03 smithi167 conmon[87022]: .272359+0000 mon.smithi038 (mon.0) 603 : audit [INF] from='mgr.14182 172.21.15.38:0/2999689707' entity='mgr.smithi038.ldalxq' cmd='[{"prefix": "auth get-or-create", "entity": "client.rgw.foorgw.smithi038.cljkux", "caps": ["mon", "allow *", "mgr", "allow rw", "osd", "allow rwx tag rgw *=*"]}]': finished 2023-11-30T22:59:03.763 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 22:59:03 smithi167 conmon[87022]: audit 2023-11-30T22: 2023-11-30T22:59:03.763 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 22:59:03 smithi167 conmon[87022]: 59:02.276296+0000 mon.smithi038 (mon.0) 604 : audit [INF] from='mgr.14182 172.21.15.38:0/2999689707' entity='mgr.smithi038.ldalxq' 2023-11-30T22:59:03.763 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 22:59:03 smithi167 conmon[87022]: audit 2023-11-30 2023-11-30T22:59:03.763 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 22:59:03 smithi167 conmon[87022]: T22:59:02.276952+0000 mon.smithi038 (mon.0) 605 : audit [DBG] 2023-11-30T22:59:03.763 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 22:59:03 smithi167 conmon[87022]: from='mgr.14182 172.21.15.38:0/2999689707' entity='mgr.smithi038.ldalxq' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2023-11-30T22:59:03.763 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 22:59:03 smithi167 conmon[87022]: cephadm 2023-11-30T22:59:02.277544 2023-11-30T22:59:03.763 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 22:59:03 smithi167 conmon[87022]: +0000 mgr.smithi038.ldalxq (mgr.14182) 163 : cephadm [INF] Deploying daemon rgw.foorgw.smithi038.cljkux on smithi038 2023-11-30T22:59:03.763 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 22:59:03 smithi167 conmon[87022]: 2023-11-30T22:59:03.763 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 22:59:03 smithi167 conmon[87022]: cluster 2023-11-30T22:59:02.376230+0000 2023-11-30T22:59:03.763 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 22:59:03 smithi167 conmon[87022]: mon.smithi038 (mon.0) 606 : cluster [DBG] osdmap e40: 8 total, 8 up, 8 in 2023-11-30T22:59:03.764 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 22:59:03 smithi167 conmon[87022]: audit 2023-11-30T22: 2023-11-30T22:59:03.764 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 22:59:03 smithi167 conmon[87022]: 59:02.378161+0000 mon.smithi167 (mon.1) 20 : audit [INF] from='client.? 172.21.15.167:0/777532103' entity='client.rgw.foorgw.smithi167.nyemgg' cmd=[{"prefix": "osd pool application enable","pool": ".rgw.root","app": "rgw"}]: dispatch 2023-11-30T22:59:03.764 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 22:59:03 smithi167 conmon[87022]: audit 2023 2023-11-30T22:59:03.764 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 22:59:03 smithi167 conmon[87022]: -11-30T22:59:02.379875+0000 mon.smithi038 (mon. 2023-11-30T22:59:03.764 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 22:59:03 smithi167 conmon[87022]: 0) 607 : audit [INF] from='client.? ' entity='client.rgw.foorgw.smithi167.nyemgg' cmd=[{"prefix": "osd pool application enable","pool": ".rgw.root","app": "rgw"}]: dispatch 2023-11-30T22:59:04.644 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:59:04 smithi038 conmon[81956]: audit 2023-11-30T22:59:03.378847+0000 mon.smithi038 (mon.0) 608 : audit [INF] from='client.? ' entity='client.rgw.foorgw.smithi167.nyemgg' cmd='[{"prefix": "osd pool application enable","pool": ".rgw.root","app": "rgw"}]': finished 2023-11-30T22:59:04.644 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:59:04 smithi038 conmon[81956]: cluster 2023-11-30T22:59:03.379009+0000 mon.smithi038 (mon.0) 609 : cluster [DBG] osdmap e41: 8 total, 8 up, 8 in 2023-11-30T22:59:04.762 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 22:59:04 smithi167 conmon[87022]: audit 2023-11-30T22:59:03.378847+0000 mon.smithi038 (mon.0) 608 : audit [INF] from='client.? ' entity='client.rgw.foorgw.smithi167.nyemgg' cmd='[{"prefix": "osd pool application enable","pool": ".rgw.root","app": "rgw"}]': finished 2023-11-30T22:59:04.762 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 22:59:04 smithi167 conmon[87022]: cluster 2023-11-30T22:59:03.379009+0000 mon.smithi038 (mon.0) 609 : cluster [DBG] osdmap e41: 8 total, 8 up, 8 in 2023-11-30T22:59:04.808 INFO:teuthology.orchestra.run.smithi038.stdout: Verifying : python3-jmespath-0.9.0-11.el8.noarch 4/4 2023-11-30T22:59:04.808 INFO:teuthology.orchestra.run.smithi038.stdout:Last metadata expiration check: 0:07:34 ago on Thu 30 Nov 2023 10:51:30 PM UTC. 2023-11-30T22:59:05.677 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:59:05 smithi038 conmon[81956]: cluster 2023-11-30T22:59:04.214068+0000 mgr.smithi038.ldalxq (mgr.14182) 164 : cluster [DBG] pgmap v131: 65 pgs: 5 creating+peering, 21 unknown, 39 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2023-11-30T22:59:05.677 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:59:05 smithi038 conmon[81956]: cluster 2023-11-30T22:59:04.390057+0000 mon.smithi038 (mon.0) 610 : cluster [DBG] osdmap e42: 8 total, 8 up, 8 in 2023-11-30T22:59:05.677 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:59:05 smithi038 conmon[81956]: audit 2023-11-30T22:59:04.398985+0000 mon.smithi167 (mon.1) 21 : audit [INF] from='client.? 172.21.15.167:0/777532103' entity='client.rgw.foorgw.smithi167.nyemgg' cmd=[{"prefix": "osd pool application enable","pool": "default.rgw.log","app": "rgw"}]: dispatch 2023-11-30T22:59:05.677 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:59:05 smithi038 conmon[81956]: audit 2023-11-30T22:59:04.399507+0000 mon.smithi038 (mon.0) 611 : audit [INF] from='client.? ' entity='client.rgw.foorgw.smithi167.nyemgg' cmd=[{"prefix": "osd pool application enable","pool": "default.rgw.log","app": "rgw"}]: dispatch 2023-11-30T22:59:05.677 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:59:05 smithi038 conmon[81956]: audit 2023-11-30T22:59:04.876379+0000 mon.smithi038 (mon.0) 612 : audit [INF] from='mgr.14182 172.21.15.38:0/2999689707' entity='mgr.smithi038.ldalxq' 2023-11-30T22:59:05.677 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:59:05 smithi038 conmon[81956]: audit 2023-11-30T22:59:04.880713+0000 mon.smithi038 (mon.0) 613 : audit [INF] from='mgr.14182 172.21.15.38:0/2999689707' entity='mgr.smithi038.ldalxq' 2023-11-30T22:59:05.677 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:59:05 smithi038 conmon[81956]: audit 2023-11-30T22:59:04.897217+0000 mon.smithi038 (mon.0) 614 : audit [INF] from='mgr.14182 172.21.15.38:0/2999689707' entity='mgr.smithi038.ldalxq' cmd=[{"prefix": "auth get-or-create", "entity": "client.nfs.foo.0.0.smithi038.ywtaqu", "caps": ["mon", "allow r", "osd", "allow rw pool=.nfs namespace=foo"]}]: dispatch 2023-11-30T22:59:05.678 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:59:05 smithi038 conmon[81956]: audit 2023-11-30T22:59:04.904938+0000 mon.smithi038 (mon.0) 615 : audit [INF] from='mgr.14182 172.21.15.38:0/2999689707' entity='mgr.smithi038.ldalxq' cmd='[{"prefix": "auth get-or-create", "entity": "client.nfs.foo.0.0.smithi038.ywtaqu", "caps": ["mon", "allow r", "osd", "allow rw pool=.nfs namespace=foo"]}]': finished 2023-11-30T22:59:05.678 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:59:05 smithi038 conmon[81956]: audit 2023-11-30T22:59:04.905772+0000 mon.smithi038 (mon.0) 616 : audit [INF] from='mgr.14182 172.21.15.38:0/2999689707' entity='mgr.smithi038.ldalxq' cmd=[{"prefix": "auth get-or-create", "entity": "client.mgr.nfs.grace.nfs.foo", "caps": ["mon", "allow r", "osd", "allow rwx pool .nfs"]}]: dispatch 2023-11-30T22:59:05.678 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:59:05 smithi038 conmon[81956]: audit 2023-11-30T22:59:04.908725+0000 mon.smithi038 (mon.0) 617 : audit [INF] from='mgr.14182 172.21.15.38:0/2999689707' entity='mgr.smithi038.ldalxq' cmd='[{"prefix": "auth get-or-create", "entity": "client.mgr.nfs.grace.nfs.foo", "caps": ["mon", "allow r", "osd", "allow rwx pool .nfs"]}]': finished 2023-11-30T22:59:05.678 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:59:05 smithi038 conmon[81956]: audit 2023-11-30T22:59:04.909674+0000 mon.smithi038 (mon.0) 618 : audit [DBG] from='mgr.14182 172.21.15.38:0/2999689707' entity='mgr.smithi038.ldalxq' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2023-11-30T22:59:05.678 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:59:05 smithi038 conmon[81956]: audit 2023-11-30T22:59:04.947291+0000 mon.smithi038 (mon.0) 619 : audit [INF] from='mgr.14182 172.21.15.38:0/2999689707' entity='mgr.smithi038.ldalxq' cmd=[{"prefix": "auth rm", "entity": "client.mgr.nfs.grace.nfs.foo"}]: dispatch 2023-11-30T22:59:05.678 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:59:05 smithi038 conmon[81956]: audit 2023-11-30T22:59:04.950792+0000 mon.smithi038 (mon.0) 620 : audit [INF] from='mgr.14182 172.21.15.38:0/2999689707' entity='mgr.smithi038.ldalxq' cmd='[{"prefix": "auth rm", "entity": "client.mgr.nfs.grace.nfs.foo"}]': finished 2023-11-30T22:59:05.678 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:59:05 smithi038 conmon[81956]: audit 2023-11-30T22:59:04.994299+0000 mon.smithi038 (mon.0) 621 : audit [INF] from='mgr.14182 172.21.15.38:0/2999689707' entity='mgr.smithi038.ldalxq' cmd=[{"prefix": "auth get-or-create", "entity": "client.nfs.foo.0.0.smithi038.ywtaqu-rgw", "caps": ["mon", "allow r", "osd", "allow rwx tag rgw *=*"]}]: dispatch 2023-11-30T22:59:05.678 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:59:05 smithi038 conmon[81956]: audit 2023-11-30T22:59:04.997827+0000 mon.smithi038 (mon.0) 622 : audit [INF] from='mgr.14182 172.21.15.38:0/2999689707' entity='mgr.smithi038.ldalxq' cmd='[{"prefix": "auth get-or-create", "entity": "client.nfs.foo.0.0.smithi038.ywtaqu-rgw", "caps": ["mon", "allow r", "osd", "allow rwx tag rgw *=*"]}]': finished 2023-11-30T22:59:05.678 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:59:05 smithi038 conmon[81956]: audit 2023-11-30T22:59:05.001594+0000 mon.smithi038 (mon.0) 623 : audit [DBG] from='mgr.14182 172.21.15.38:0/2999689707' entity='mgr.smithi038.ldalxq' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2023-11-30T22:59:05.762 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 22:59:05 smithi167 conmon[87022]: cluster 2023-11-30T22:59:04.214068+0000 mgr.smithi038.ldalxq (mgr.14182) 164 : cluster [DBG] pgmap v131: 65 pgs: 5 creating+peering, 21 unknown, 39 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2023-11-30T22:59:05.762 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 22:59:05 smithi167 conmon[87022]: cluster 2023-11-30T22:59:04.390057+0000 mon.smithi038 (mon.0) 610 : cluster [DBG] osdmap e42: 8 total, 8 up, 8 in 2023-11-30T22:59:05.762 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 22:59:05 smithi167 conmon[87022]: audit 2023-11-30T22:59:04.398985+0000 mon.smithi167 (mon.1) 21 : audit [INF] from='client.? 172.21.15.167:0/777532103' entity='client.rgw.foorgw.smithi167.nyemgg' cmd=[{"prefix": "osd pool application enable","pool": "default.rgw.log","app": "rgw"}]: dispatch 2023-11-30T22:59:05.763 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 22:59:05 smithi167 conmon[87022]: audit 2023-11-30T22:59:04.399507+0000 mon.smithi038 (mon.0) 611 : audit [INF] from='client.? ' entity='client.rgw.foorgw.smithi167.nyemgg' cmd=[{"prefix": "osd pool application enable","pool": "default.rgw.log","app": "rgw"}]: dispatch 2023-11-30T22:59:05.763 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 22:59:05 smithi167 conmon[87022]: audit 2023-11-30T22:59:04.876379+0000 mon.smithi038 (mon.0) 612 : audit [INF] from='mgr.14182 172.21.15.38:0/2999689707' entity='mgr.smithi038.ldalxq' 2023-11-30T22:59:05.763 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 22:59:05 smithi167 conmon[87022]: audit 2023-11-30T22:59:04.880713+0000 mon.smithi038 (mon.0) 613 : audit [INF] from='mgr.14182 172.21.15.38:0/2999689707' entity='mgr.smithi038.ldalxq' 2023-11-30T22:59:05.763 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 22:59:05 smithi167 conmon[87022]: audit 2023-11-30T22:59:04.897217+0000 mon.smithi038 (mon.0) 614 : audit [INF] from='mgr.14182 172.21.15.38:0/2999689707' entity='mgr.smithi038.ldalxq' cmd=[{"prefix": "auth get-or-create", "entity": "client.nfs.foo.0.0.smithi038.ywtaqu", "caps": ["mon", "allow r", "osd", "allow rw pool=.nfs namespace=foo"]}]: dispatch 2023-11-30T22:59:05.763 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 22:59:05 smithi167 conmon[87022]: audit 2023-11-30T22:59:04.904938+0000 mon.smithi038 (mon.0) 615 : audit [INF] from='mgr.14182 172.21.15.38:0/2999689707' entity='mgr.smithi038.ldalxq' cmd='[{"prefix": "auth get-or-create", "entity": "client.nfs.foo.0.0.smithi038.ywtaqu", "caps": ["mon", "allow r", "osd", "allow rw pool=.nfs namespace=foo"]}]': finished 2023-11-30T22:59:05.763 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 22:59:05 smithi167 conmon[87022]: audit 2023-11-30T22:59:04.905772+0000 mon.smithi038 (mon.0) 616 : audit [INF] from='mgr.14182 172.21.15.38:0/2999689707' entity='mgr.smithi038.ldalxq' cmd=[{"prefix": "auth get-or-create", "entity": "client.mgr.nfs.grace.nfs.foo", "caps": ["mon", "allow r", "osd", "allow rwx pool .nfs"]}]: dispatch 2023-11-30T22:59:05.763 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 22:59:05 smithi167 conmon[87022]: audit 2023-11-30T22:59:04.908725+0000 mon.smithi038 (mon.0) 617 : audit [INF] from='mgr.14182 172.21.15.38:0/2999689707' entity='mgr.smithi038.ldalxq' cmd='[{"prefix": "auth get-or-create", "entity": "client.mgr.nfs.grace.nfs.foo", "caps": ["mon", "allow r", "osd", "allow rwx pool .nfs"]}]': finished 2023-11-30T22:59:05.763 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 22:59:05 smithi167 conmon[87022]: audit 2023-11-30T22:59:04.909674+0000 mon.smithi038 (mon.0) 618 : audit [DBG] from='mgr.14182 172.21.15.38:0/2999689707' entity='mgr.smithi038.ldalxq' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2023-11-30T22:59:05.763 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 22:59:05 smithi167 conmon[87022]: audit 2023-11-30T22:59:04.947291+0000 mon.smithi038 (mon.0) 619 : audit [INF] from='mgr.14182 172.21.15.38:0/2999689707' entity='mgr.smithi038.ldalxq' cmd=[{"prefix": "auth rm", "entity": "client.mgr.nfs.grace.nfs.foo"}]: dispatch 2023-11-30T22:59:05.763 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 22:59:05 smithi167 conmon[87022]: audit 2023-11-30T22:59:04.950792+0000 mon.smithi038 (mon.0) 620 : audit [INF] from='mgr.14182 172.21.15.38:0/2999689707' entity='mgr.smithi038.ldalxq' cmd='[{"prefix": "auth rm", "entity": "client.mgr.nfs.grace.nfs.foo"}]': finished 2023-11-30T22:59:05.763 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 22:59:05 smithi167 conmon[87022]: audit 2023-11-30T22:59:04.994299+0000 mon.smithi038 (mon.0) 621 : audit [INF] from='mgr.14182 172.21.15.38:0/2999689707' entity='mgr.smithi038.ldalxq' cmd=[{"prefix": "auth get-or-create", "entity": "client.nfs.foo.0.0.smithi038.ywtaqu-rgw", "caps": ["mon", "allow r", "osd", "allow rwx tag rgw *=*"]}]: dispatch 2023-11-30T22:59:05.763 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 22:59:05 smithi167 conmon[87022]: audit 2023-11-30T22:59:04.997827+0000 mon.smithi038 (mon.0) 622 : audit [INF] from='mgr.14182 172.21.15.38:0/2999689707' entity='mgr.smithi038.ldalxq' cmd='[{"prefix": "auth get-or-create", "entity": "client.nfs.foo.0.0.smithi038.ywtaqu-rgw", "caps": ["mon", "allow r", "osd", "allow rwx tag rgw *=*"]}]': finished 2023-11-30T22:59:05.763 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 22:59:05 smithi167 conmon[87022]: audit 2023-11-30T22:59:05.001594+0000 mon.smithi038 (mon.0) 623 : audit [DBG] from='mgr.14182 172.21.15.38:0/2999689707' entity='mgr.smithi038.ldalxq' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2023-11-30T22:59:06.762 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 22:59:06 smithi167 conmon[87022]: cephadm 2023-11-30T22:59:04.896843+0000 mgr.smithi038.ldalxq (mgr.14182) 165 : cephadm [INF] Creating key for client.nfs.foo.0.0.smithi038.ywtaqu 2023-11-30T22:59:06.762 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 22:59:06 smithi167 conmon[87022]: cephadm 2023-11-30T22:59:04.905529+0000 mgr.smithi038.ldalxq (mgr.14182) 166 : cephadm [INF] Ensuring nfs.foo.0 is in the ganesha grace table 2023-11-30T22:59:06.763 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 22:59:06 smithi167 conmon[87022]: cephadm 2023-11-30T22:59:04.993815+0000 mgr.smithi038.ldalxq (mgr.14182) 167 : cephadm [INF] Rados config object exists: conf-nfs.foo 2023-11-30T22:59:06.763 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 22:59:06 smithi167 conmon[87022]: cephadm 2023-11-30T22:59:04.993947+0000 mgr.smithi038.ldalxq (mgr.14182) 168 : cephadm [INF] Creating key for client.nfs.foo.0.0.smithi038.ywtaqu-rgw 2023-11-30T22:59:06.763 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 22:59:06 smithi167 conmon[87022]: cephadm 2023-11-30T22:59:05.002393+0000 mgr.smithi038.ldalxq (mgr.14182) 169 : cephadm [INF] Deploying daemon nfs.foo.0.0.smithi038.ywtaqu on smithi038 2023-11-30T22:59:06.763 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 22:59:06 smithi167 conmon[87022]: audit 2023-11-30T22:59:05.390871 2023-11-30T22:59:06.763 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 22:59:06 smithi167 conmon[87022]: +0000 mon.smithi038 (mon.0) 624 : audit [INF] from='client.? ' entity='client.rgw.foorgw.smithi167.nyemgg' cmd='[{"prefix": "osd pool application enable","pool": "default.rgw.log","app": "rgw"}]': finished 2023-11-30T22:59:06.763 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 22:59:06 smithi167 conmon[87022]: cluster 2023-11-30T22:59:05.390957+0000 mon.smithi038 (mon.0) 625 : cluster [DBG] osdmap e43: 8 total, 8 up, 8 in 2023-11-30T22:59:06.763 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 22:59:06 smithi167 conmon[87022]: audit 2023-11-30T22:59:06.378674+0000 mon.smithi038 (mon.0) 626 : audit [INF] from='mgr.14182 172.21.15.38:0/2999689707' entity='mgr.smithi038.ldalxq' 2023-11-30T22:59:06.774 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:59:06 smithi038 conmon[81956]: cephadm 2023-11-30T22: 2023-11-30T22:59:06.774 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:59:06 smithi038 conmon[81956]: 59:04.896843+0000 mgr.smithi038.ldalxq (mgr.14182) 165 : cephadm [INF] Creating key for client.nfs.foo.0.0.smithi038.ywtaqu 2023-11-30T22:59:06.774 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:59:06 smithi038 conmon[81956]: cephadm 2023-11-30T22:59:04.905529+0000 mgr.smithi038.ldalxq (mgr.14182) 166 : cephadm [INF] Ensuring nfs.foo.0 is in the ganesha grace table 2023-11-30T22:59:06.774 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:59:06 smithi038 conmon[81956]: cephadm 2023-11-30T22:59:04.993815+0000 mgr.smithi038.ldalxq (mgr.14182) 167 : cephadm [INF] Rados config object exists: conf-nfs.foo 2023-11-30T22:59:06.775 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:59:06 smithi038 conmon[81956]: cephadm 2023-11-30T22:59:04.993947+0000 mgr.smithi038.ldalxq (mgr.14182) 168 : cephadm [INF] Creating key for client.nfs.foo.0.0.smithi038.ywtaqu-rgw 2023-11-30T22:59:06.775 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:59:06 smithi038 conmon[81956]: cephadm 2023-11-30T22:59:05.002393+0000 mgr.smithi038.ldalxq (mgr.14182) 169 : cephadm [INF] Deploying daemon nfs.foo.0.0.smithi038.ywtaqu on smithi038 2023-11-30T22:59:06.775 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:59:06 smithi038 conmon[81956]: audit 2023-11-30T22:59:05.390871+0000 mon.smithi038 (mon.0) 624 : audit [INF] from='client.? ' entity='client.rgw.foorgw.smithi167.nyemgg' cmd='[{"prefix": "osd pool application enable","pool": "default.rgw.log","app": "rgw"}]': finished 2023-11-30T22:59:06.775 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:59:06 smithi038 conmon[81956]: cluster 2023-11-30T22:59:05.390957+0000 mon.smithi038 (mon.0) 625 : cluster [DBG] osdmap e43: 8 total, 8 up, 8 in 2023-11-30T22:59:06.775 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:59:06 smithi038 conmon[81956]: audit 2023-11-30T22:59:06.378674+0000 mon.smithi038 (mon.0) 626 : audit [INF] from='mgr.14182 172.21.15.38:0/2999689707' entity='mgr.smithi038.ldalxq' 2023-11-30T22:59:06.895 INFO:teuthology.orchestra.run.smithi038.stdout:Installed products updated. 2023-11-30T22:59:07.004 INFO:teuthology.orchestra.run.smithi038.stdout: 2023-11-30T22:59:07.004 INFO:teuthology.orchestra.run.smithi038.stdout:Installed: 2023-11-30T22:59:07.004 INFO:teuthology.orchestra.run.smithi038.stdout: python3-boto3-1.15.15-1.el8.noarch python3-botocore-1.18.15-1.el8.noarch 2023-11-30T22:59:07.004 INFO:teuthology.orchestra.run.smithi038.stdout: python3-jmespath-0.9.0-11.el8.noarch python3-s3transfer-0.3.4-1.el8.noarch 2023-11-30T22:59:07.004 INFO:teuthology.orchestra.run.smithi038.stdout: 2023-11-30T22:59:07.004 INFO:teuthology.orchestra.run.smithi038.stdout:Complete! 2023-11-30T22:59:07.120 DEBUG:teuthology.orchestra.run.smithi038:> sudo TESTDIR=/home/ubuntu/cephtest bash -ex -c '/home/ubuntu/cephtest/cephadm shell radosgw-admin user create --uid foouser --display-name foo > /tmp/user.json' 2023-11-30T22:59:07.191 INFO:teuthology.orchestra.run.smithi038.stderr:+ /home/ubuntu/cephtest/cephadm shell radosgw-admin user create --uid foouser --display-name foo 2023-11-30T22:59:07.416 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:59:07 smithi038 conmon[81956]: cluster 2023-11-30T22:59:06.214450+0000 mgr.smithi038.ldalxq (mgr.14182) 170 : cluster [DBG] pgmap v134: 97 pgs: 13 creating+peering, 22 unknown, 62 active+clean; 1.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 3.0 KiB/s rd, 1023 B/s wr, 3 op/s 2023-11-30T22:59:07.416 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:59:07 smithi038 conmon[81956]: cluster 2023-11-30T22:59:06.401245+0000 mon.smithi038 (mon.0) 627 : cluster [DBG] osdmap e44: 8 total, 8 up, 8 in 2023-11-30T22:59:07.416 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:59:07 smithi038 conmon[81956]: audit 2023-11-30T22:59:06.401996+0000 mon.smithi038 (mon.0) 628 : audit [INF] from='client.? 172.21.15.38:0/1765836863' entity='client.rgw.foorgw.smithi038.cljkux' cmd=[{"prefix": "osd pool application enable","pool": "default.rgw.control","app": "rgw"}]: dispatch 2023-11-30T22:59:07.416 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:59:07 smithi038 conmon[81956]: audit 2023-11-30T22:59:06.404023+0000 mon.smithi167 (mon.1) 22 : audit [INF] from='client.? 172.21.15.167:0/777532103' entity='client.rgw.foorgw.smithi167.nyemgg' cmd=[{"prefix": "osd pool application enable","pool": "default.rgw.control","app": "rgw"}]: dispatch 2023-11-30T22:59:07.416 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:59:07 smithi038 conmon[81956]: audit 2023-11-30T22:59:06.405212+0000 mon.smithi038 (mon.0) 629 : audit [INF] from='client.? ' entity='client.rgw.foorgw.smithi167.nyemgg' cmd=[{"prefix": "osd pool application enable","pool": "default.rgw.control","app": "rgw"}]: dispatch 2023-11-30T22:59:07.416 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:59:07 smithi038 conmon[81956]: audit 2023-11-30T22:59:07.296849+0000 mon.smithi038 (mon.0) 630 : audit [INF] from='mgr.14182 172.21.15.38:0/2999689707' entity='mgr.smithi038.ldalxq' 2023-11-30T22:59:07.416 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:59:07 smithi038 conmon[81956]: audit 2023-11-30T22:59:07.304938+0000 mon.smithi038 (mon.0) 631 : audit [INF] from='mgr.14182 172.21.15.38:0/2999689707' entity='mgr.smithi038.ldalxq' 2023-11-30T22:59:07.763 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 22:59:07 smithi167 conmon[87022]: cluster 2023-11-30T22:59:06.214450+0000 mgr.smithi038.ldalxq 2023-11-30T22:59:07.763 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 22:59:07 smithi167 conmon[87022]: (mgr.14182) 170 : cluster [DBG] pgmap v134: 97 pgs: 13 creating+peering, 22 unknown, 62 active+clean; 1.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 3.0 KiB/s rd, 1023 B/s wr, 3 op/s 2023-11-30T22:59:07.763 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 22:59:07 smithi167 conmon[87022]: cluster 2023-11-30T22:59:06.401245+0000 mon.smithi038 (mon.0) 627 : cluster [DBG] osdmap e44: 8 total, 8 up, 8 in 2023-11-30T22:59:07.763 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 22:59:07 smithi167 conmon[87022]: audit 2023-11-30T22:59:06.401996+0000 mon.smithi038 (mon.0) 628 : audit 2023-11-30T22:59:07.764 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 22:59:07 smithi167 conmon[87022]: [INF] from='client.? 172.21.15.38:0/1765836863' entity='client.rgw.foorgw.smithi038.cljkux' cmd=[{"prefix": "osd pool application enable","pool": "default.rgw.control","app": "rgw"}]: dispatch 2023-11-30T22:59:07.764 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 22:59:07 smithi167 conmon[87022]: audit 2023-11-30T22:59: 2023-11-30T22:59:07.764 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 22:59:07 smithi167 conmon[87022]: 06.404023+0000 mon.smithi167 (mon.1) 22 : audit 2023-11-30T22:59:07.764 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 22:59:07 smithi167 conmon[87022]: [INF] from='client.? 172.21.15.167:0/777532103' entity='client.rgw.foorgw.smithi167.nyemgg' cmd=[{"prefix": "osd pool application enable","pool": "default.rgw.control","app": "rgw"}]: dispatch 2023-11-30T22:59:07.764 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 22:59:07 smithi167 conmon[87022]: audit 2023-11-30T22 2023-11-30T22:59:07.764 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 22:59:07 smithi167 conmon[87022]: :59:06.405212+0000 mon.smithi038 (mon.0) 629 : 2023-11-30T22:59:07.764 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 22:59:07 smithi167 conmon[87022]: audit [INF] from='client.? ' entity='client.rgw.foorgw.smithi167.nyemgg' cmd=[{"prefix": "osd pool application enable","pool": "default.rgw.control","app": "rgw"}]: dispatch 2023-11-30T22:59:07.764 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 22:59:07 smithi167 conmon[87022]: audit 2023-11-30 2023-11-30T22:59:07.764 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 22:59:07 smithi167 conmon[87022]: T22:59:07.296849+0000 2023-11-30T22:59:07.764 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 22:59:07 smithi167 conmon[87022]: mon.smithi038 (mon.0) 630 : audit 2023-11-30T22:59:07.765 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 22:59:07 smithi167 conmon[87022]: [INF] from='mgr.14182 172.21.15.38:0/2999689707' entity='mgr.smithi038.ldalxq' 2023-11-30T22:59:07.765 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 22:59:07 smithi167 conmon[87022]: audit 2023 2023-11-30T22:59:07.765 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 22:59:07 smithi167 conmon[87022]: -11-30T22:59:07. 2023-11-30T22:59:07.765 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 22:59:07 smithi167 conmon[87022]: 304938+0000 mon.smithi038 (mon.0) 2023-11-30T22:59:07.765 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 22:59:07 smithi167 conmon[87022]: 631 : audit [INF] from='mgr.14182 172.21.15.38:0/2999689707' entity='mgr.smithi038.ldalxq' 2023-11-30T22:59:07.791 INFO:teuthology.orchestra.run.smithi038.stderr:Inferring fsid 3faf8b00-8fd3-11ee-95a2-87774f69a715 2023-11-30T22:59:07.928 INFO:teuthology.orchestra.run.smithi038.stderr:Using recent ceph image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph@sha256:e1f680df85d9287f04633db70fe79d7c61fc217400b17f0852d169b69a0b050e 2023-11-30T22:59:08.762 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 22:59:08 smithi167 conmon[87022]: cephadm 2023-11-30T22:59:07.312307+0000 mgr.smithi038.ldalxq (mgr 2023-11-30T22:59:08.762 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 22:59:08 smithi167 conmon[87022]: .14182) 171 : cephadm [INF] Deploying daemon haproxy.nfs.foo.smithi167.buykdj on smithi167 2023-11-30T22:59:08.762 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 22:59:08 smithi167 conmon[87022]: audit 2023-11-30T22:59:07.402049+0000 mon.smithi038 (mon.0) 632 : audit [INF] from='client.? 172.21.15.38:0/1765836863' entity='client.rgw.foorgw.smithi038.cljkux' cmd='[{"prefix": "osd pool application enable","pool": "default.rgw.control","app": "rgw"}]': finished 2023-11-30T22:59:08.762 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 22:59:08 smithi167 conmon[87022]: audit 2023-11-30T22:59:07.402214+0000 mon.smithi038 (mon.0) 633 : audit [INF] from='client.? ' entity='client.rgw.foorgw.smithi167.nyemgg' cmd='[{"prefix": "osd pool application enable","pool": "default.rgw.control","app": "rgw"}]': finished 2023-11-30T22:59:08.762 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 22:59:08 smithi167 conmon[87022]: cluster 2023-11-30T22:59:07.402381+0000 mon.smithi038 (mon.0) 634 : cluster [DBG] osdmap e45: 8 total, 8 up, 8 in 2023-11-30T22:59:08.774 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:59:08 smithi038 conmon[81956]: cephadm 2023-11-30T22:59:07.312307+0000 mgr.smithi038.ldalxq (mgr.14182) 171 : cephadm [INF] Deploying daemon haproxy.nfs.foo.smithi167.buykdj on smithi167 2023-11-30T22:59:08.774 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:59:08 smithi038 conmon[81956]: audit 2023-11-30T22:59:07.402049+0000 mon.smithi038 (mon.0) 632 : audit [INF] from='client.? 172.21.15.38:0/1765836863' entity='client.rgw.foorgw.smithi038.cljkux' cmd='[{"prefix": "osd pool application enable","pool": "default.rgw.control","app": "rgw"}]': finished 2023-11-30T22:59:08.774 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:59:08 smithi038 conmon[81956]: audit 2023-11-30T22:59:07.402214+0000 mon.smithi038 (mon.0) 633 : audit [INF] from='client.? ' entity='client.rgw.foorgw.smithi167.nyemgg' cmd='[{"prefix": "osd pool application enable","pool": "default.rgw.control","app": "rgw"}]': finished 2023-11-30T22:59:08.774 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:59:08 smithi038 conmon[81956]: cluster 2023-11-30T22:59:07.402381+0000 mon.smithi038 (mon.0) 634 : cluster [DBG] osdmap e45: 8 total, 8 up, 8 in 2023-11-30T22:59:09.762 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 22:59:09 smithi167 conmon[87022]: cluster 2023-11-30T22:59:08.214855+0000 mgr.smithi038.ldalxq (mgr.14182) 172 : cluster [DBG] pgmap v137: 129 pgs: 8 creating+peering, 36 unknown, 85 active+clean; 1.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 6.2 KiB/s rd, 3.2 KiB/s wr, 10 op/s 2023-11-30T22:59:09.762 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 22:59:09 smithi167 conmon[87022]: cluster 2023-11-30T22:59:08.414921+0000 mon.smithi038 (mon.0) 635 : cluster [DBG] osdmap e46: 8 total, 8 up, 8 in 2023-11-30T22:59:09.762 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 22:59:09 smithi167 conmon[87022]: audit 2023-11-30T22:59:08.416977+0000 mon.smithi038 (mon.0) 636 : audit [INF] from='client.? 172.21.15.38:0/2067913414' entity='client.rgw.foorgw.smithi038.cljkux' cmd=[{"prefix": "osd pool application enable","pool": "default.rgw.meta","app": "rgw"}]: dispatch 2023-11-30T22:59:09.762 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 22:59:09 smithi167 conmon[87022]: audit 2023-11-30T22:59:08.418847+0000 mon.smithi167 (mon.1) 23 : audit [INF] from='client.? 172.21.15.167:0/384250470' entity='client.rgw.foorgw.smithi167.nyemgg' cmd=[{"prefix": "osd pool application enable","pool": "default.rgw.meta","app": "rgw"}]: dispatch 2023-11-30T22:59:09.762 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 22:59:09 smithi167 conmon[87022]: audit 2023-11-30T22:59:08.419306+0000 mon.smithi038 (mon.0) 637 : audit [INF] from='client.? ' entity='client.rgw.foorgw.smithi167.nyemgg' cmd=[{"prefix": "osd pool application enable","pool": "default.rgw.meta","app": "rgw"}]: dispatch 2023-11-30T22:59:09.774 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:59:09 smithi038 conmon[81956]: cluster 2023-11-30T22:59:08.214855+0000 mgr.smithi038.ldalxq (mgr.14182) 172 : cluster [DBG] pgmap v137: 129 pgs: 8 creating+peering, 36 unknown, 85 active+clean; 1.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 6.2 KiB/s rd, 3.2 KiB/s wr, 10 op/s 2023-11-30T22:59:09.774 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:59:09 smithi038 conmon[81956]: cluster 2023-11-30T22:59:08.414921+0000 mon.smithi038 (mon.0) 635 : cluster [DBG] osdmap e46: 8 total, 8 up, 8 in 2023-11-30T22:59:09.774 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:59:09 smithi038 conmon[81956]: audit 2023-11-30T22:59:08.416977+0000 mon.smithi038 (mon.0) 636 : audit [INF] from='client.? 172.21.15.38:0/2067913414' entity='client.rgw.foorgw.smithi038.cljkux' cmd=[{"prefix": "osd pool application enable","pool": "default.rgw.meta","app": "rgw"}]: dispatch 2023-11-30T22:59:09.774 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:59:09 smithi038 conmon[81956]: audit 2023-11-30T22:59:08.418847+0000 mon.smithi167 (mon.1) 23 : audit [INF] from='client.? 172.21.15.167:0/384250470' entity='client.rgw.foorgw.smithi167.nyemgg' cmd=[{"prefix": "osd pool application enable","pool": "default.rgw.meta","app": "rgw"}]: dispatch 2023-11-30T22:59:09.774 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:59:09 smithi038 conmon[81956]: audit 2023-11-30T22:59:08.419306+0000 mon.smithi038 (mon.0) 637 : audit [INF] from='client.? ' entity='client.rgw.foorgw.smithi167.nyemgg' cmd=[{"prefix": "osd pool application enable","pool": "default.rgw.meta","app": "rgw"}]: dispatch 2023-11-30T22:59:09.855 INFO:teuthology.run_tasks:Running task python... 2023-11-30T22:59:09.875 INFO:tasks.python:Running python on role host.a host ubuntu@smithi038.front.sepia.ceph.com 2023-11-30T22:59:09.875 INFO:tasks.python:import boto3 import json with open('/tmp/user.json', 'rt') as f: info = json.loads(f.read()) s3 = boto3.resource( 's3', aws_access_key_id=info['keys'][0]['access_key'], aws_secret_access_key=info['keys'][0]['secret_key'], endpoint_url='http://localhost:8800', ) bucket = s3.Bucket('foobucket') bucket.create() bucket.put_object(Key='myobject', Body='thebody') 2023-11-30T22:59:09.875 DEBUG:teuthology.orchestra.run.smithi038:> sudo TESTDIR=/home/ubuntu/cephtest python3 2023-11-30T22:59:10.524 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:59:10 smithi038 conmon[81956]: audit 2023-11-30T22:59:09.418960 2023-11-30T22:59:10.524 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:59:10 smithi038 conmon[81956]: +0000 mon.smithi038 (mon.0) 638 : audit [INF] from='client.? 172.21.15.38:0/2067913414' entity='client.rgw.foorgw.smithi038.cljkux' cmd='[{"prefix": "osd pool application enable","pool": "default.rgw.meta","app": "rgw"}]': finished 2023-11-30T22:59:10.524 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:59:10 smithi038 conmon[81956]: audit 2023-11-30T22: 2023-11-30T22:59:10.524 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:59:10 smithi038 conmon[81956]: 59:09.419180+0000 mon.smithi038 (mon.0) 639 : audit [INF] from='client.? ' entity='client.rgw.foorgw.smithi167.nyemgg' cmd='[{"prefix": "osd pool application enable","pool": "default.rgw.meta","app": "rgw"}]': finished 2023-11-30T22:59:10.524 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:59:10 smithi038 conmon[81956]: cluster 2023-11-30T22: 2023-11-30T22:59:10.524 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:59:10 smithi038 conmon[81956]: 59:09.419308+0000 mon.smithi038 (mon.0) 640 2023-11-30T22:59:10.524 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:59:10 smithi038 conmon[81956]: : cluster [DBG] osdmap e47: 8 total, 8 up, 8 in 2023-11-30T22:59:10.525 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:59:10 smithi038 conmon[81956]: audit 2023-11-30T22:59:09.421018+0000 mon.smithi167 (mon.1) 24 : audit [INF] from='client.? 172.21.15.167:0/384250470' entity='client.rgw.foorgw.smithi167.nyemgg' cmd=[{"prefix": "osd pool set", "pool": "default.rgw.meta", "var": "pg_autoscale_bias", "val": "4"}]: dispatch 2023-11-30T22:59:10.525 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:59:10 smithi038 conmon[81956]: audit 2023-11-30T22:59:09.421478+0000 mon.smithi038 (mon.0) 641 : audit [INF] from='client.? ' entity='client.rgw.foorgw.smithi167.nyemgg' cmd=[{"prefix": "osd pool set", "pool": "default.rgw.meta", "var": "pg_autoscale_bias", "val": "4"}]: dispatch 2023-11-30T22:59:10.525 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:59:10 smithi038 conmon[81956]: audit 2023-11-30T22:59:09.425500+0000 mon.smithi038 (mon.0) 642 : audit [INF] from='client.? 172.21.15.38:0/2067913414' entity='client.rgw.foorgw.smithi038.cljkux' cmd=[{"prefix": "osd pool set", "pool": "default.rgw.meta", "var": "pg_autoscale_bias", "val": "4"}]: dispatch 2023-11-30T22:59:10.525 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:59:10 smithi038 conmon[81956]: audit 2023-11-30T22:59:10.420443+0000 mon.smithi038 (mon.0) 643 : audit [INF] from='client.? ' entity='client.rgw.foorgw.smithi167.nyemgg' cmd='[{"prefix": "osd pool set", "pool": "default.rgw.meta", "var": "pg_autoscale_bias", "val": "4"}]': finished 2023-11-30T22:59:10.525 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:59:10 smithi038 conmon[81956]: audit 2023-11-30T22:59:10.420534+0000 mon.smithi038 (mon.0) 644 : audit [INF] from='client.? 172.21.15.38:0/2067913414' entity='client.rgw.foorgw.smithi038.cljkux' cmd='[{"prefix": "osd pool set", "pool": "default.rgw.meta", "var": "pg_autoscale_bias", "val": "4"}]': finished 2023-11-30T22:59:10.525 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:59:10 smithi038 conmon[81956]: cluster 2023-11-30T22:59:10.420580+0000 mon.smithi038 (mon.0) 645 : cluster [DBG] osdmap e48: 8 total, 8 up, 8 in 2023-11-30T22:59:10.762 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 22:59:10 smithi167 conmon[87022]: audit 2023-11-30T22:59:09.418960+0000 mon.smithi038 (mon.0) 638 : audit [INF] 2023-11-30T22:59:10.763 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 22:59:10 smithi167 conmon[87022]: from='client.? 172.21.15.38:0/2067913414' entity='client.rgw.foorgw.smithi038.cljkux' cmd='[{"prefix": "osd pool application enable","pool": "default.rgw.meta","app": "rgw"}]': finished 2023-11-30T22:59:10.763 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 22:59:10 smithi167 conmon[87022]: audit 2023-11-30T22:59:09.419180+0000 mon.smithi038 (mon.0) 639 : audit [INF] from='client.? ' entity='client.rgw.foorgw.smithi167.nyemgg' cmd='[{"prefix": "osd pool application enable","pool": "default.rgw.meta","app": "rgw"}]': finished 2023-11-30T22:59:10.763 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 22:59:10 smithi167 conmon[87022]: cluster 2023-11-30T22:59:09.419308+0000 mon.smithi038 (mon.0) 640 : cluster 2023-11-30T22:59:10.763 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 22:59:10 smithi167 conmon[87022]: [DBG] osdmap e47: 8 total, 8 up, 8 in 2023-11-30T22:59:10.764 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 22:59:10 smithi167 conmon[87022]: audit 2023-11-30T22 2023-11-30T22:59:10.764 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 22:59:10 smithi167 conmon[87022]: :59:09.421018+0000 mon.smithi167 (mon.1) 24 : audit 2023-11-30T22:59:10.764 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 22:59:10 smithi167 conmon[87022]: [INF] from='client.? 172.21.15.167:0/384250470' entity='client.rgw.foorgw.smithi167.nyemgg' cmd=[{"prefix": "osd pool set", "pool": "default.rgw.meta", "var": "pg_autoscale_bias", "val": "4"}]: dispatch 2023-11-30T22:59:10.764 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 22:59:10 smithi167 conmon[87022]: audit 2023-11-30T22:59:10.764 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 22:59:10 smithi167 conmon[87022]: 2023-11-30T22:59:09 2023-11-30T22:59:10.765 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 22:59:10 smithi167 conmon[87022]: .421478+0000 mon.smithi038 (mon.0) 2023-11-30T22:59:10.765 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 22:59:10 smithi167 conmon[87022]: 641 : audit [INF] from='client.? ' entity='client.rgw.foorgw.smithi167.nyemgg' cmd=[{"prefix": "osd pool set", "pool": "default.rgw.meta", "var": "pg_autoscale_bias", "val": "4"}]: dispatch 2023-11-30T22:59:10.765 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 22:59:10 smithi167 conmon[87022]: audit 2023-11 2023-11-30T22:59:10.765 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 22:59:10 smithi167 conmon[87022]: -30T22:59:09.425500+0000 mon.smithi038 ( 2023-11-30T22:59:10.765 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 22:59:10 smithi167 conmon[87022]: mon.0) 642 : audit [INF] from='client.? 172.21.15.38:0/2067913414' entity='client.rgw.foorgw.smithi038.cljkux' cmd=[{"prefix": "osd pool set", "pool": "default.rgw.meta", "var": "pg_autoscale_bias", "val": "4"}]: dispatch 2023-11-30T22:59:10.765 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 22:59:10 smithi167 conmon[87022]: 2023-11-30T22:59:10.766 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 22:59:10 smithi167 conmon[87022]: audit 2023- 2023-11-30T22:59:10.766 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 22:59:10 smithi167 conmon[87022]: 11-30T22:59:10.420443+0000 2023-11-30T22:59:10.766 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 22:59:10 smithi167 conmon[87022]: mon.smithi038 (mon.0) 643 : audit 2023-11-30T22:59:10.766 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 22:59:10 smithi167 conmon[87022]: [INF] from='client.? ' entity='client.rgw.foorgw.smithi167.nyemgg' cmd='[{"prefix": "osd pool set", "pool": "default.rgw.meta", "var": "pg_autoscale_bias", "val": "4"}]': finished 2023-11-30T22:59:10.766 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 22:59:10 smithi167 conmon[87022]: audit 2023-11 2023-11-30T22:59:10.766 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 22:59:10 smithi167 conmon[87022]: -30T22:59:10.420534+0000 2023-11-30T22:59:10.767 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 22:59:10 smithi167 conmon[87022]: mon.smithi038 (mon.0) 644 : audit [INF] 2023-11-30T22:59:10.767 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 22:59:10 smithi167 conmon[87022]: from='client.? 172.21.15.38:0/2067913414' entity='client.rgw.foorgw.smithi038.cljkux' cmd='[{"prefix": "osd pool set", "pool": "default.rgw.meta", "var": "pg_autoscale_bias", "val": "4"}]': finished 2023-11-30T22:59:10.767 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 22:59:10 smithi167 conmon[87022]: cluster 2023- 2023-11-30T22:59:10.767 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 22:59:10 smithi167 conmon[87022]: 11-30T22:59:10.420580+0000 2023-11-30T22:59:10.767 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 22:59:10 smithi167 conmon[87022]: mon.smithi038 (mon.0) 645 : cluster [DBG] osdmap e48: 8 total, 8 up, 8 in 2023-11-30T22:59:12.012 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 22:59:11 smithi167 conmon[87022]: cluster 2023-11-30T22:59:10.215353+0000 mgr.smithi038.ldalxq (mgr.14182) 173 2023-11-30T22:59:12.012 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 22:59:11 smithi167 conmon[87022]: : cluster [DBG] pgmap v140: 161 pgs: 7 creating+peering, 18 unknown, 136 active+clean; 1.8 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 7.2 KiB/s rd, 2.7 KiB/s wr, 11 op/s 2023-11-30T22:59:12.024 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:59:11 smithi038 conmon[81956]: cluster 2023-11-30T22:59:10.215353+0000 mgr.smithi038.ldalxq ( 2023-11-30T22:59:12.024 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:59:11 smithi038 conmon[81956]: mgr.14182) 173 : cluster [DBG] pgmap v140: 161 pgs: 7 creating+peering, 18 unknown, 136 active+clean; 1.8 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 7.2 KiB/s rd, 2.7 KiB/s wr, 11 op/s 2023-11-30T22:59:13.012 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 22:59:12 smithi167 conmon[87022]: audit 2023-11-30T22:59:11.594507+0000 mon.smithi038 (mon.0) 646 : audit [INF] from='mgr.14182 172.21.15.38:0/2999689707' entity='mgr.smithi038.ldalxq' 2023-11-30T22:59:13.012 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 22:59:12 smithi167 conmon[87022]: cluster 2023-11-30T22:59:11.641995+0000 mon.smithi038 (mon.0) 647 : cluster [DBG] osdmap e49: 8 total, 8 up, 8 in 2023-11-30T22:59:13.012 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 22:59:12 smithi167 conmon[87022]: audit 2023-11-30T22:59:11.642812+0000 mon.smithi038 (mon.0) 648 : audit [INF] from='client.? 172.21.15.38:0/1765836863' entity='client.rgw.foorgw.smithi038.cljkux' cmd=[{"prefix": "osd pool application enable","pool": "default.rgw.buckets.index","app": "rgw"}]: dispatch 2023-11-30T22:59:13.024 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:59:12 smithi038 conmon[81956]: audit 2023-11-30T22:59:11.594507+0000 mon.smithi038 ( 2023-11-30T22:59:13.024 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:59:12 smithi038 conmon[81956]: mon.0) 646 : audit [INF] from='mgr.14182 172.21.15.38:0/2999689707' entity='mgr.smithi038.ldalxq' 2023-11-30T22:59:13.024 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:59:12 smithi038 conmon[81956]: cluster 2023-11-30T22:59:11.641995+0000 mon.smithi038 (mon.0) 647 : cluster [DBG] osdmap e49: 8 total, 8 up, 8 in 2023-11-30T22:59:13.024 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:59:12 smithi038 conmon[81956]: audit 2023-11-30T22:59:11.642812+0000 mon.smithi038 (mon.0) 648 : audit 2023-11-30T22:59:13.024 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:59:12 smithi038 conmon[81956]: [INF] from='client.? 172.21.15.38:0/1765836863' entity='client.rgw.foorgw.smithi038.cljkux' cmd=[{"prefix": "osd pool application enable","pool": "default.rgw.buckets.index","app": "rgw"}]: dispatch 2023-11-30T22:59:14.012 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 22:59:13 smithi167 conmon[87022]: cluster 2023-11-30T22:59:12.215806+0000 mgr.smithi038.ldalxq (mgr.14182) 174 : cluster [DBG] pgmap v143: 193 pgs: 7 creating+peering, 36 unknown, 150 active+clean; 2.9 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 51 KiB/s rd, 3.0 KiB/s wr, 104 op/s 2023-11-30T22:59:14.012 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 22:59:13 smithi167 conmon[87022]: audit 2023-11-30T22:59:12.647362+0000 mon.smithi038 2023-11-30T22:59:14.012 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 22:59:13 smithi167 conmon[87022]: (mon.0) 649 : audit [INF] from='client.? 172.21.15.38:0/1765836863' entity='client.rgw.foorgw.smithi038.cljkux' cmd='[{"prefix": "osd pool application enable","pool": "default.rgw.buckets.index","app": "rgw"}]': finished 2023-11-30T22:59:14.012 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 22:59:13 smithi167 conmon[87022]: cluster 2023-11-30T22:59:12.647642+0000 mon.smithi038 (mon.0) 650 : cluster [DBG] osdmap e50: 8 total, 8 up, 8 in 2023-11-30T22:59:14.012 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 22:59:13 smithi167 conmon[87022]: audit 2023-11-30T22:59:12.649375+0000 mon.smithi038 (mon.0) 651 : audit [INF] from='client.? 172.21.15.38:0/1765836863' entity='client.rgw.foorgw.smithi038.cljkux' cmd=[{"prefix": "osd pool set", "pool": "default.rgw.buckets.index", "var": "pg_autoscale_bias", "val": "4"}]: dispatch 2023-11-30T22:59:14.023 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:59:13 smithi038 conmon[81956]: cluster 2023-11-30T22:59:12.215806+0000 mgr.smithi038.ldalxq (mgr.14182) 174 : cluster [DBG] pgmap v143: 193 pgs: 7 creating+peering, 36 unknown, 150 active+clean; 2.9 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 51 KiB/s rd, 3.0 KiB/s wr, 104 op/s 2023-11-30T22:59:14.024 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:59:13 smithi038 conmon[81956]: audit 2023-11-30T22:59:12.647362+0000 mon.smithi038 (mon.0) 649 : audit [INF] from='client.? 172.21.15.38:0/1765836863' entity='client.rgw.foorgw.smithi038.cljkux' cmd='[{"prefix": "osd pool application enable","pool": "default.rgw.buckets.index","app": "rgw"}]': finished 2023-11-30T22:59:14.024 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:59:13 smithi038 conmon[81956]: cluster 2023-11-30T22:59:12.647642+0000 mon.smithi038 (mon.0) 650 : cluster [DBG] osdmap e50: 8 total, 8 up, 8 in 2023-11-30T22:59:14.024 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:59:13 smithi038 conmon[81956]: audit 2023-11-30T22:59:12.649375+0000 mon.smithi038 (mon.0) 651 : audit [INF] from='client.? 172.21.15.38:0/1765836863' entity='client.rgw.foorgw.smithi038.cljkux' cmd=[{"prefix": "osd pool set", "pool": "default.rgw.buckets.index", "var": "pg_autoscale_bias", "val": "4"}]: dispatch 2023-11-30T22:59:15.012 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 22:59:14 smithi167 conmon[87022]: audit 2023-11-30T22:59:13.649275+0000 mon.smithi038 (mon.0) 652 : audit [INF] from='client.? 172.21.15.38:0/1765836863' entity='client.rgw.foorgw.smithi038.cljkux' cmd='[{"prefix": "osd pool set", "pool": "default.rgw.buckets.index", "var": "pg_autoscale_bias", "val": "4"}]': finished 2023-11-30T22:59:15.012 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 22:59:14 smithi167 conmon[87022]: cluster 2023-11-30T22:59:13.649372+0000 2023-11-30T22:59:15.012 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 22:59:14 smithi167 conmon[87022]: mon.smithi038 (mon.0) 653 : cluster [DBG] osdmap e51: 8 total, 8 up, 8 in 2023-11-30T22:59:15.012 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 22:59:14 smithi167 conmon[87022]: cluster 2023-11-30T22:59:14.216439+0000 mgr.smithi038.ldalxq (mgr.14182) 175 : cluster [DBG] pgmap v146: 193 pgs: 3 creating+peering, 22 unknown, 168 active+clean; 4.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 88 KiB/s rd, 5.0 KiB/s wr, 186 op/s 2023-11-30T22:59:15.024 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:59:14 smithi038 conmon[81956]: audit 2023-11-30T22:59:13.649275+0000 mon.smithi038 (mon.0) 652 2023-11-30T22:59:15.024 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:59:14 smithi038 conmon[81956]: : audit [INF] from='client.? 172.21.15.38:0/1765836863' entity='client.rgw.foorgw.smithi038.cljkux' cmd='[{"prefix": "osd pool set", "pool": "default.rgw.buckets.index", "var": "pg_autoscale_bias", "val": "4"}]': finished 2023-11-30T22:59:15.024 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:59:14 smithi038 conmon[81956]: cluster 2023-11-30T22:59:13.649372+0000 mon.smithi038 (mon.0) 653 : cluster [DBG] osdmap e51: 8 total, 8 up, 8 in 2023-11-30T22:59:15.024 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:59:14 smithi038 conmon[81956]: cluster 2023-11-30T22:59:14.216439+0000 mgr.smithi038.ldalxq (mgr.14182) 175 : cluster [DBG] 2023-11-30T22:59:15.024 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:59:14 smithi038 conmon[81956]: pgmap v146: 193 pgs: 3 creating+peering, 22 unknown, 168 active+clean; 4.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 88 KiB/s rd, 5.0 KiB/s wr, 186 op/s 2023-11-30T22:59:15.731 INFO:teuthology.run_tasks:Running task cephadm.shell... 2023-11-30T22:59:15.743 INFO:tasks.cephadm:Running commands on role host.a host ubuntu@smithi038.front.sepia.ceph.com 2023-11-30T22:59:15.743 DEBUG:teuthology.orchestra.run.smithi038:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:0dc074ce0b0b3b4f393f56dd32ef36884ebf45a9 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 3faf8b00-8fd3-11ee-95a2-87774f69a715 -- bash -c 'ceph nfs export create rgw --bucket foobucket --cluster-id foo --pseudo-path /foobucket' 2023-11-30T22:59:16.012 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 22:59:15 smithi167 conmon[87022]: cluster 2023-11-30T22:59:14.654634+0000 mon.smithi038 (mon.0) 654 : cluster 2023-11-30T22:59:16.012 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 22:59:15 smithi167 conmon[87022]: [DBG] osdmap e52: 8 total, 8 up, 8 in 2023-11-30T22:59:16.012 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 22:59:15 smithi167 conmon[87022]: audit 2023-11-30T22:59:14.661653+0000 mon.smithi038 (mon.0) 655 : audit [INF] from='client.? 172.21.15.38:0/2067913414' entity='client.rgw.foorgw.smithi038.cljkux' cmd=[{"prefix": "osd pool application enable","pool": "default.rgw.buckets.data","app": "rgw"}]: dispatch 2023-11-30T22:59:16.024 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:59:15 smithi038 conmon[81956]: cluster 2023-11-30T22:59:14.654634+0000 mon.smithi038 (mon.0) 654 2023-11-30T22:59:16.024 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:59:15 smithi038 conmon[81956]: : cluster [DBG] osdmap e52: 8 total, 8 up, 8 in 2023-11-30T22:59:16.024 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:59:15 smithi038 conmon[81956]: audit 2023-11-30T22:59:14.661653+0000 mon.smithi038 (mon.0) 655 : audit [INF] from='client.? 172.21.15.38:0/2067913414' entity='client.rgw.foorgw.smithi038.cljkux' cmd=[{"prefix": "osd pool application enable","pool": "default.rgw.buckets.data","app": "rgw"}]: dispatch 2023-11-30T22:59:17.012 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 22:59:16 smithi167 conmon[87022]: audit 2023-11-30T22:59:15.660580+0000 mon.smithi038 (mon.0) 656 : audit 2023-11-30T22:59:17.012 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 22:59:16 smithi167 conmon[87022]: [INF] from='client.? 172.21.15.38:0/2067913414' entity='client.rgw.foorgw.smithi038.cljkux' cmd='[{"prefix": "osd pool application enable","pool": "default.rgw.buckets.data","app": "rgw"}]': finished 2023-11-30T22:59:17.012 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 22:59:16 smithi167 conmon[87022]: cluster 2023-11-30T22:59:15.660744+0000 mon.smithi038 (mon.0) 657 : cluster [DBG] osdmap e53: 8 total, 8 up, 8 in 2023-11-30T22:59:17.012 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 22:59:16 smithi167 conmon[87022]: cluster 2023-11- 2023-11-30T22:59:17.012 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 22:59:16 smithi167 conmon[87022]: 30T22:59:16.216938+0000 mgr.smithi038.ldalxq 2023-11-30T22:59:17.012 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 22:59:16 smithi167 conmon[87022]: (mgr.14182) 176 : cluster [DBG] pgmap v149: 225 pgs: 11 creating+peering, 23 unknown, 191 active+clean; 6.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 119 KiB/s rd, 7.0 KiB/s wr, 254 op/s 2023-11-30T22:59:17.012 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 22:59:16 smithi167 conmon[87022]: 2023-11-30T22:59:17.024 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:59:16 smithi038 conmon[81956]: audit 2023-11-30T22:59:15.660580+0000 mon.smithi038 (mon.0) 656 : audit [INF] from='client.? 172.21.15.38:0/2067913414' entity='client.rgw.foorgw.smithi038.cljkux' cmd='[{"prefix": "osd pool application enable","pool": "default.rgw.buckets.data","app": "rgw"}]': finished 2023-11-30T22:59:17.024 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:59:16 smithi038 conmon[81956]: cluster 2023-11-30T22:59:15.660744+0000 mon.smithi038 (mon.0) 657 : cluster [DBG] osdmap e53: 8 total, 8 up, 8 in 2023-11-30T22:59:17.024 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:59:16 smithi038 conmon[81956]: cluster 2023-11-30T22:59:16.216938+0000 mgr.smithi038.ldalxq (mgr.14182) 176 : cluster [DBG] pgmap v149: 225 pgs: 11 creating+peering, 23 unknown, 191 active+clean; 6.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 119 KiB/s rd, 7.0 KiB/s wr, 254 op/s 2023-11-30T22:59:17.971 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:59:17 smithi038 conmon[81956]: cluster 2023-11-30T22:59:16.666384+0000 mon.smithi038 ( 2023-11-30T22:59:17.971 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:59:17 smithi038 conmon[81956]: mon.0) 658 : cluster [DBG] osdmap e54: 8 total, 8 up, 8 in 2023-11-30T22:59:17.971 INFO:teuthology.orchestra.run.smithi038.stdout:{ 2023-11-30T22:59:17.971 INFO:teuthology.orchestra.run.smithi038.stdout: "bind": "/foobucket", 2023-11-30T22:59:17.971 INFO:teuthology.orchestra.run.smithi038.stdout: "path": "foobucket", 2023-11-30T22:59:17.972 INFO:teuthology.orchestra.run.smithi038.stdout: "cluster": "foo", 2023-11-30T22:59:17.972 INFO:teuthology.orchestra.run.smithi038.stdout: "mode": "RW", 2023-11-30T22:59:17.972 INFO:teuthology.orchestra.run.smithi038.stdout: "squash": "none" 2023-11-30T22:59:17.972 INFO:teuthology.orchestra.run.smithi038.stdout:} 2023-11-30T22:59:18.011 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 22:59:17 smithi167 conmon[87022]: cluster 2023-11-30T22:59:16.666384+0000 mon.smithi038 (mon.0) 658 : cluster [DBG] osdmap e54: 8 total, 8 up, 8 in 2023-11-30T22:59:18.397 INFO:teuthology.run_tasks:Running task cephadm.wait_for_service... 2023-11-30T22:59:18.410 INFO:tasks.cephadm:Waiting for ceph service nfs.foo to start (timeout 300)... 2023-11-30T22:59:18.410 DEBUG:teuthology.orchestra.run.smithi038:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:0dc074ce0b0b3b4f393f56dd32ef36884ebf45a9 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 3faf8b00-8fd3-11ee-95a2-87774f69a715 -- ceph orch ls -f json 2023-11-30T22:59:18.945 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:59:18 smithi038 conmon[81956]: audit 2023-11-30T22:59:17.750357+0000 mgr.smithi038.ldalxq ( 2023-11-30T22:59:18.946 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:59:18 smithi038 conmon[81956]: mgr.14182) 177 : audit [DBG] from='client.14562 -' entity='client.admin' cmd=[{"prefix": "nfs export create rgw", "bucket": "foobucket", "cluster_id": "foo", "pseudo_path": "/foobucket", "target": ["mon-mgr", ""]}]: dispatch 2023-11-30T22:59:18.946 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:59:18 smithi038 conmon[81956]: cluster 2023-11-30T22:59:18.217575+0000 mgr.smithi038.ldalxq (mgr.14182) 178 : cluster [DBG] pgmap v151: 225 pgs: 11 creating+peering, 12 unknown, 202 active+clean; 6.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 75 KiB/s rd, 5.0 KiB/s wr, 163 op/s 2023-11-30T22:59:19.012 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 22:59:18 smithi167 conmon[87022]: audit 2023-11-30T22:59:17.750357+0000 mgr.smithi038.ldalxq (mgr.14182) 177 : audit [DBG] from='client.14562 -' entity='client.admin' cmd=[{"prefix": "nfs export create rgw", "bucket": "foobucket", "cluster_id": "foo", "pseudo_path": "/foobucket", "target": ["mon-mgr", ""]}]: dispatch 2023-11-30T22:59:19.012 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 22:59:18 smithi167 conmon[87022]: cluster 2023-11-30T22:59:18.217575+0000 mgr.smithi038.ldalxq (mgr.14182) 178 : cluster [DBG] pgmap v151: 225 pgs: 11 creating+peering, 12 unknown, 202 active+clean; 6.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 75 KiB/s rd, 5.0 KiB/s wr, 163 op/s 2023-11-30T22:59:20.287 INFO:teuthology.orchestra.run.smithi038.stdout: 2023-11-30T22:59:20.287 INFO:teuthology.orchestra.run.smithi038.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2023-11-30T22:54:47.122758Z", "last_refresh": "2023-11-30T22:58:55.866934Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2023-11-30T22:54:42.674972Z", "last_refresh": "2023-11-30T22:58:52.669086Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2023-11-30T22:54:45.114633Z", "last_refresh": "2023-11-30T22:58:55.867071Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2023-11-30T22:58:56.317378Z 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": 9049, "virtual_ip": "10.0.31.38/16"}, "status": {"created": "2023-11-30T22:58:56.312786Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.38/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2023-11-30T22:54:41.668043Z", "last_refresh": "2023-11-30T22:58:52.669241Z", "running": 2, "size": 2}}, {"events": ["2023-11-30T22:55:50.759225Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi038:172.21.15.38=smithi038", "smithi167:172.21.15.167=smithi167"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2023-11-30T22:55:50.756456Z", "last_refresh": "2023-11-30T22:58:52.669318Z", "running": 2, "size": 2}}, {"events": ["2023-11-30T22:58:56.311581Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2023-11-30T22:58:56.308071Z", "ports": [12049], "running": 0, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2023-11-30T22:54:46.136630Z", "last_refresh": "2023-11-30T22:58:52.669387Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2023-11-30T22:56:33.258058Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2023-11-30T22:56:33.253117Z", "last_refresh": "2023-11-30T22:58:52.669454Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2023-11-30T22:54:43.949497Z", "last_refresh": "2023-11-30T22:58:55.867217Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2023-11-30T22:58:52.105721Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2023-11-30T22:58:59.793467Z", "ports": [8800], "running": 0, "size": 2}}] 2023-11-30T22:59:20.759 INFO:tasks.cephadm:nfs.foo has 0/1 2023-11-30T22:59:21.760 DEBUG:teuthology.orchestra.run.smithi038:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:0dc074ce0b0b3b4f393f56dd32ef36884ebf45a9 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 3faf8b00-8fd3-11ee-95a2-87774f69a715 -- ceph orch ls -f json 2023-11-30T22:59:21.762 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 22:59:21 smithi167 conmon[87022]: cluster 2023-11-30T22:59:20.218294+0000 mgr.smithi038.ldalxq (mgr.14182) 179 : cluster [DBG] pgmap v152: 225 pgs: 225 active+clean; 7.2 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 69 KiB/s rd, 3.8 KiB/s wr, 136 op/s 2023-11-30T22:59:21.762 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 22:59:21 smithi167 conmon[87022]: audit 2023-11-30T22:59:20.281861+0000 mgr.smithi038.ldalxq (mgr.14182) 180 : audit [DBG] from='client.14596 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-11-30T22:59:21.773 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:59:21 smithi038 conmon[81956]: cluster 2023-11-30T22:59:20.218294+0000 mgr.smithi038.ldalxq (mgr.14182) 179 : cluster [DBG] pgmap v152: 225 pgs: 225 active+clean; 7.2 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 69 KiB/s rd, 3.8 KiB/s wr, 136 op/s 2023-11-30T22:59:21.774 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:59:21 smithi038 conmon[81956]: audit 2023-11-30T22:59:20.281861+0000 mgr.smithi038.ldalxq (mgr.14182) 180 : audit [DBG] from='client.14596 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-11-30T22:59:23.595 INFO:teuthology.orchestra.run.smithi038.stdout: 2023-11-30T22:59:23.596 INFO:teuthology.orchestra.run.smithi038.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2023-11-30T22:54:47.122758Z", "last_refresh": "2023-11-30T22:58:55.866934Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2023-11-30T22:54:42.674972Z", "last_refresh": "2023-11-30T22:58:52.669086Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2023-11-30T22:54:45.114633Z", "last_refresh": "2023-11-30T22:58:55.867071Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2023-11-30T22:58:56.317378Z 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": 9049, "virtual_ip": "10.0.31.38/16"}, "status": {"created": "2023-11-30T22:58:56.312786Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.38/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2023-11-30T22:54:41.668043Z", "last_refresh": "2023-11-30T22:58:52.669241Z", "running": 2, "size": 2}}, {"events": ["2023-11-30T22:55:50.759225Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi038:172.21.15.38=smithi038", "smithi167:172.21.15.167=smithi167"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2023-11-30T22:55:50.756456Z", "last_refresh": "2023-11-30T22:58:52.669318Z", "running": 2, "size": 2}}, {"events": ["2023-11-30T22:58:56.311581Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2023-11-30T22:58:56.308071Z", "ports": [12049], "running": 0, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2023-11-30T22:54:46.136630Z", "last_refresh": "2023-11-30T22:58:52.669387Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2023-11-30T22:56:33.258058Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2023-11-30T22:56:33.253117Z", "last_refresh": "2023-11-30T22:58:52.669454Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2023-11-30T22:54:43.949497Z", "last_refresh": "2023-11-30T22:58:55.867217Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2023-11-30T22:58:52.105721Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2023-11-30T22:58:59.793467Z", "ports": [8800], "running": 0, "size": 2}}] 2023-11-30T22:59:24.012 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 22:59:23 smithi167 conmon[87022]: cluster 2023-11-30T22:59:22.218901+0000 mgr.smithi038.ldalxq (mgr.14182) 181 : cluster [DBG] pgmap v153: 225 pgs: 225 active+clean; 7.2 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 38 KiB/s rd, 2.1 KiB/s wr, 71 op/s 2023-11-30T22:59:24.024 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:59:23 smithi038 conmon[81956]: cluster 2023-11-30T22:59:22.218901+0000 mgr.smithi038.ldalxq (mgr.14182) 181 : cluster [DBG] pgmap v153: 225 pgs: 225 active+clean; 7.2 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 38 KiB/s rd, 2.1 KiB/s wr, 71 op/s 2023-11-30T22:59:24.123 INFO:tasks.cephadm:nfs.foo has 0/1 2023-11-30T22:59:25.012 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 22:59:24 smithi167 conmon[87022]: audit 2023-11-30T22:59:23.591855+0000 mgr.smithi038.ldalxq (mgr.14182) 182 : audit [DBG] from='client.14600 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-11-30T22:59:25.024 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:59:24 smithi038 conmon[81956]: audit 2023-11-30T22:59:23.591855+0000 mgr.smithi038.ldalxq (mgr.14182) 182 : audit 2023-11-30T22:59:25.024 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:59:24 smithi038 conmon[81956]: [DBG] from='client.14600 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-11-30T22:59:25.125 DEBUG:teuthology.orchestra.run.smithi038:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:0dc074ce0b0b3b4f393f56dd32ef36884ebf45a9 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 3faf8b00-8fd3-11ee-95a2-87774f69a715 -- ceph orch ls -f json 2023-11-30T22:59:25.899 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:59:25 smithi038 conmon[81956]: cluster 2023-11-30T22:59:24.219505+0000 mgr.smithi038.ldalxq ( 2023-11-30T22:59:25.899 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:59:25 smithi038 conmon[81956]: mgr.14182) 183 : cluster [DBG] pgmap v154: 225 pgs: 225 active+clean; 7.2 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 17 KiB/s rd, 837 B/s wr, 25 op/s 2023-11-30T22:59:26.012 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 22:59:25 smithi167 conmon[87022]: cluster 2023-11-30T22:59:24.219505+0000 mgr.smithi038.ldalxq (mgr.14182) 183 : cluster [DBG] pgmap v154: 225 pgs: 225 active+clean; 7.2 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 17 KiB/s rd, 837 B/s wr, 25 op/s 2023-11-30T22:59:27.344 INFO:teuthology.orchestra.run.smithi038.stdout: 2023-11-30T22:59:27.345 INFO:teuthology.orchestra.run.smithi038.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2023-11-30T22:54:47.122758Z", "last_refresh": "2023-11-30T22:58:55.866934Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2023-11-30T22:54:42.674972Z", "last_refresh": "2023-11-30T22:58:52.669086Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2023-11-30T22:54:45.114633Z", "last_refresh": "2023-11-30T22:58:55.867071Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2023-11-30T22:58:56.317378Z 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": 9049, "virtual_ip": "10.0.31.38/16"}, "status": {"created": "2023-11-30T22:58:56.312786Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.38/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2023-11-30T22:54:41.668043Z", "last_refresh": "2023-11-30T22:58:52.669241Z", "running": 2, "size": 2}}, {"events": ["2023-11-30T22:55:50.759225Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi038:172.21.15.38=smithi038", "smithi167:172.21.15.167=smithi167"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2023-11-30T22:55:50.756456Z", "last_refresh": "2023-11-30T22:58:52.669318Z", "running": 2, "size": 2}}, {"events": ["2023-11-30T22:58:56.311581Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2023-11-30T22:58:56.308071Z", "ports": [12049], "running": 0, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2023-11-30T22:54:46.136630Z", "last_refresh": "2023-11-30T22:58:52.669387Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2023-11-30T22:56:33.258058Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2023-11-30T22:56:33.253117Z", "last_refresh": "2023-11-30T22:58:52.669454Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2023-11-30T22:54:43.949497Z", "last_refresh": "2023-11-30T22:58:55.867217Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2023-11-30T22:58:52.105721Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2023-11-30T22:58:59.793467Z", "ports": [8800], "running": 0, "size": 2}}] 2023-11-30T22:59:27.774 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:59:27 smithi038 conmon[81956]: cluster 2023-11-30T22:59:26.220377+0000 mgr.smithi038.ldalxq (mgr.14182) 184 : cluster [DBG] pgmap v155: 225 pgs: 225 active+clean; 7.2 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 13 KiB/s rd, 511 B/s wr, 19 op/s 2023-11-30T22:59:27.774 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:59:27 smithi038 conmon[81956]: audit 2023-11-30T22:59:26.608348+0000 mon.smithi038 (mon.0) 659 : audit [INF] from='mgr.14182 172.21.15.38:0/2999689707' entity='mgr.smithi038.ldalxq' 2023-11-30T22:59:27.779 INFO:tasks.cephadm:nfs.foo has 0/1 2023-11-30T22:59:28.013 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 22:59:27 smithi167 conmon[87022]: cluster 2023-11-30T22:59:26.220377+0000 mgr.smithi038.ldalxq (mgr.14182) 184 : cluster [DBG] pgmap v155: 225 pgs: 225 active+clean; 7.2 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 13 KiB/s rd, 511 B/s wr, 19 op/s 2023-11-30T22:59:28.014 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 22:59:27 smithi167 conmon[87022]: 2023-11-30T22:59:28.014 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 22:59:27 smithi167 conmon[87022]: audit 2023-11-30T22:59:26.608348+0000 mon.smithi038 (mon.0) 659 : audit [INF] from='mgr.14182 172.21.15.38:0/2999689707' entity='mgr.smithi038.ldalxq' 2023-11-30T22:59:28.779 DEBUG:teuthology.orchestra.run.smithi038:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:0dc074ce0b0b3b4f393f56dd32ef36884ebf45a9 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 3faf8b00-8fd3-11ee-95a2-87774f69a715 -- ceph orch ls -f json 2023-11-30T22:59:28.944 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:59:28 smithi038 conmon[81956]: audit 2023-11-30T22:59:27.340876+0000 mgr.smithi038.ldalxq (mgr.14182) 185 : audit [DBG] from='client.14604 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-11-30T22:59:28.944 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:59:28 smithi038 conmon[81956]: cluster 2023-11-30T22:59:28.221015+0000 mgr.smithi038.ldalxq (mgr.14182) 186 : cluster [DBG] pgmap v156: 225 pgs: 225 active+clean; 7.2 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 11 KiB/s rd, 354 B/s wr, 16 op/s 2023-11-30T22:59:29.012 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 22:59:28 smithi167 conmon[87022]: audit 2023-11-30T22:59:27.340876+0000 mgr.smithi038.ldalxq (mgr.14182) 185 : audit [DBG] from='client.14604 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-11-30T22:59:29.012 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 22:59:28 smithi167 conmon[87022]: 2023-11-30T22:59:29.012 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 22:59:28 smithi167 conmon[87022]: cluster 2023-11-30T22:59:28.221015+0000 mgr.smithi038.ldalxq (mgr.14182) 186 : cluster [DBG] pgmap v156: 225 pgs: 225 active+clean; 7.2 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 11 KiB/s rd, 354 B/s wr, 16 op/s 2023-11-30T22:59:30.615 INFO:teuthology.orchestra.run.smithi038.stdout: 2023-11-30T22:59:30.615 INFO:teuthology.orchestra.run.smithi038.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2023-11-30T22:54:47.122758Z", "last_refresh": "2023-11-30T22:58:55.866934Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2023-11-30T22:54:42.674972Z", "last_refresh": "2023-11-30T22:58:52.669086Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2023-11-30T22:54:45.114633Z", "last_refresh": "2023-11-30T22:58:55.867071Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2023-11-30T22:58:56.317378Z 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": 9049, "virtual_ip": "10.0.31.38/16"}, "status": {"created": "2023-11-30T22:58:56.312786Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.38/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2023-11-30T22:54:41.668043Z", "last_refresh": "2023-11-30T22:58:52.669241Z", "running": 2, "size": 2}}, {"events": ["2023-11-30T22:55:50.759225Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi038:172.21.15.38=smithi038", "smithi167:172.21.15.167=smithi167"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2023-11-30T22:55:50.756456Z", "last_refresh": "2023-11-30T22:58:52.669318Z", "running": 2, "size": 2}}, {"events": ["2023-11-30T22:58:56.311581Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2023-11-30T22:58:56.308071Z", "ports": [12049], "running": 0, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2023-11-30T22:54:46.136630Z", "last_refresh": "2023-11-30T22:58:52.669387Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2023-11-30T22:56:33.258058Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2023-11-30T22:56:33.253117Z", "last_refresh": "2023-11-30T22:58:52.669454Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2023-11-30T22:54:43.949497Z", "last_refresh": "2023-11-30T22:58:55.867217Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2023-11-30T22:58:52.105721Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2023-11-30T22:58:59.793467Z", "ports": [8800], "running": 0, "size": 2}}] 2023-11-30T22:59:31.128 INFO:tasks.cephadm:nfs.foo has 0/1 2023-11-30T22:59:31.524 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:59:31 smithi038 conmon[81956]: cluster 2023-11-30T22:59:30.221743+0000 mgr.smithi038.ldalxq (mgr.14182) 187 : cluster [DBG] pgmap v157: 225 pgs: 225 active+clean; 7.2 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 11 KiB/s rd, 341 B/s wr, 15 op/s 2023-11-30T22:59:31.762 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 22:59:31 smithi167 conmon[87022]: cluster 2023-11-30T22:59:30.221743+0000 mgr.smithi038.ldalxq (mgr.14182) 187 : cluster [DBG] pgmap v157: 225 pgs: 225 active+clean; 7.2 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 11 KiB/s rd, 341 B/s wr, 15 op/s 2023-11-30T22:59:31.762 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 22:59:31 smithi167 conmon[87022]: 2023-11-30T22:59:32.129 DEBUG:teuthology.orchestra.run.smithi038:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:0dc074ce0b0b3b4f393f56dd32ef36884ebf45a9 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 3faf8b00-8fd3-11ee-95a2-87774f69a715 -- ceph orch ls -f json 2023-11-30T22:59:32.934 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:59:32 smithi038 conmon[81956]: audit 2023-11-30T22:59:30.611312+0000 mgr.smithi038.ldalxq ( 2023-11-30T22:59:32.934 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:59:32 smithi038 conmon[81956]: mgr.14182) 188 : audit [DBG] from='client.14608 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-11-30T22:59:33.012 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 22:59:32 smithi167 conmon[87022]: audit 2023-11-30T22:59:30.611312+0000 mgr.smithi038.ldalxq (mgr.14182) 188 : audit 2023-11-30T22:59:33.012 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 22:59:32 smithi167 conmon[87022]: [DBG] from='client.14608 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-11-30T22:59:34.012 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 22:59:33 smithi167 conmon[87022]: cluster 2023-11-30T22:59:32.222357+0000 mgr.smithi038.ldalxq (mgr.14182) 189 : cluster [DBG] 2023-11-30T22:59:34.012 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 22:59:33 smithi167 conmon[87022]: pgmap v158: 225 pgs: 225 active+clean; 7.2 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 2.3 KiB/s rd, 0 B/s wr, 3 op/s 2023-11-30T22:59:34.024 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:59:33 smithi038 conmon[81956]: cluster 2023-11-30T22:59:32.222357+0000 mgr.smithi038.ldalxq (mgr.14182) 189 : cluster [DBG] pgmap v158: 225 pgs: 225 active+clean; 7.2 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 2.3 KiB/s rd, 0 B/s wr, 3 op/s 2023-11-30T22:59:34.165 INFO:teuthology.orchestra.run.smithi038.stdout: 2023-11-30T22:59:34.165 INFO:teuthology.orchestra.run.smithi038.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2023-11-30T22:54:47.122758Z", "last_refresh": "2023-11-30T22:58:55.866934Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2023-11-30T22:54:42.674972Z", "last_refresh": "2023-11-30T22:58:52.669086Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2023-11-30T22:54:45.114633Z", "last_refresh": "2023-11-30T22:58:55.867071Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2023-11-30T22:58:56.317378Z 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": 9049, "virtual_ip": "10.0.31.38/16"}, "status": {"created": "2023-11-30T22:58:56.312786Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.38/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2023-11-30T22:54:41.668043Z", "last_refresh": "2023-11-30T22:58:52.669241Z", "running": 2, "size": 2}}, {"events": ["2023-11-30T22:55:50.759225Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi038:172.21.15.38=smithi038", "smithi167:172.21.15.167=smithi167"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2023-11-30T22:55:50.756456Z", "last_refresh": "2023-11-30T22:58:52.669318Z", "running": 2, "size": 2}}, {"events": ["2023-11-30T22:58:56.311581Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2023-11-30T22:58:56.308071Z", "ports": [12049], "running": 0, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2023-11-30T22:54:46.136630Z", "last_refresh": "2023-11-30T22:58:52.669387Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2023-11-30T22:56:33.258058Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2023-11-30T22:56:33.253117Z", "last_refresh": "2023-11-30T22:58:52.669454Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2023-11-30T22:54:43.949497Z", "last_refresh": "2023-11-30T22:58:55.867217Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2023-11-30T22:58:52.105721Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2023-11-30T22:58:59.793467Z", "ports": [8800], "running": 0, "size": 2}}] 2023-11-30T22:59:34.583 INFO:tasks.cephadm:nfs.foo has 0/1 2023-11-30T22:59:35.012 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 22:59:34 smithi167 conmon[87022]: audit 2023-11-30T22:59:34.161657+0000 mgr.smithi038.ldalxq (mgr.14182) 190 : audit [DBG] from='client.14612 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-11-30T22:59:35.012 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 22:59:34 smithi167 conmon[87022]: cluster 2023-11-30T22:59:34 2023-11-30T22:59:35.012 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 22:59:34 smithi167 conmon[87022]: .222947+0000 mgr.smithi038.ldalxq (mgr.14182) 191 : cluster [DBG] pgmap v159: 225 pgs: 225 active+clean; 7.2 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 1.2 KiB/s rd, 0 B/s wr, 1 op/s 2023-11-30T22:59:35.024 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:59:34 smithi038 conmon[81956]: audit 2023-11-30T22:59:34.161657+0000 mgr.smithi038.ldalxq (mgr.14182) 190 : audit [DBG] from='client.14612 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-11-30T22:59:35.024 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:59:34 smithi038 conmon[81956]: cluster 2023-11-30T22:59:34.222947+0000 mgr.smithi038.ldalxq (mgr.14182) 191 : cluster [DBG] pgmap v159: 225 pgs: 225 active+clean; 7.2 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 1.2 KiB/s rd, 0 B/s wr, 1 op/s 2023-11-30T22:59:35.585 DEBUG:teuthology.orchestra.run.smithi038:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:0dc074ce0b0b3b4f393f56dd32ef36884ebf45a9 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 3faf8b00-8fd3-11ee-95a2-87774f69a715 -- ceph orch ls -f json 2023-11-30T22:59:37.386 INFO:teuthology.orchestra.run.smithi038.stdout: 2023-11-30T22:59:37.386 INFO:teuthology.orchestra.run.smithi038.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2023-11-30T22:54:47.122758Z", "last_refresh": "2023-11-30T22:58:55.866934Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2023-11-30T22:54:42.674972Z", "last_refresh": "2023-11-30T22:58:52.669086Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2023-11-30T22:54:45.114633Z", "last_refresh": "2023-11-30T22:58:55.867071Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2023-11-30T22:58:56.317378Z 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": 9049, "virtual_ip": "10.0.31.38/16"}, "status": {"created": "2023-11-30T22:58:56.312786Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.38/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2023-11-30T22:54:41.668043Z", "last_refresh": "2023-11-30T22:58:52.669241Z", "running": 2, "size": 2}}, {"events": ["2023-11-30T22:55:50.759225Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi038:172.21.15.38=smithi038", "smithi167:172.21.15.167=smithi167"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2023-11-30T22:55:50.756456Z", "last_refresh": "2023-11-30T22:58:52.669318Z", "running": 2, "size": 2}}, {"events": ["2023-11-30T22:58:56.311581Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2023-11-30T22:58:56.308071Z", "ports": [12049], "running": 0, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2023-11-30T22:54:46.136630Z", "last_refresh": "2023-11-30T22:58:52.669387Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2023-11-30T22:56:33.258058Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2023-11-30T22:56:33.253117Z", "last_refresh": "2023-11-30T22:58:52.669454Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2023-11-30T22:54:43.949497Z", "last_refresh": "2023-11-30T22:58:55.867217Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2023-11-30T22:58:52.105721Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2023-11-30T22:58:59.793467Z", "ports": [8800], "running": 0, "size": 2}}] 2023-11-30T22:59:37.774 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:59:37 smithi038 conmon[81956]: cluster 2023-11-30T22:59:36.223737+0000 mgr.smithi038.ldalxq (mgr.14182) 192 : cluster [DBG] pgmap v160: 225 pgs: 225 active+clean; 7.2 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2023-11-30T22:59:37.948 INFO:tasks.cephadm:nfs.foo has 0/1 2023-11-30T22:59:38.012 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 22:59:37 smithi167 conmon[87022]: cluster 2023-11-30T22:59:36.223737+0000 mgr.smithi038.ldalxq (mgr.14182) 192 : cluster [DBG] pgmap v160: 225 pgs: 225 active+clean; 7.2 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2023-11-30T22:59:38.944 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:59:38 smithi038 conmon[81956]: audit 2023-11-30T22:59:37.381096+0000 mgr.smithi038.ldalxq (mgr.14182) 193 : audit 2023-11-30T22:59:38.944 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:59:38 smithi038 conmon[81956]: [DBG] from='client.14616 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-11-30T22:59:38.950 DEBUG:teuthology.orchestra.run.smithi038:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:0dc074ce0b0b3b4f393f56dd32ef36884ebf45a9 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 3faf8b00-8fd3-11ee-95a2-87774f69a715 -- ceph orch ls -f json 2023-11-30T22:59:39.012 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 22:59:38 smithi167 conmon[87022]: audit 2023-11-30T22:59:37.381096+0000 mgr.smithi038.ldalxq (mgr.14182) 193 : audit [DBG] from='client.14616 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-11-30T22:59:39.774 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:59:39 smithi038 conmon[81956]: cluster 2023-11-30T22:59:38.224308+0000 mgr.smithi038.ldalxq (mgr.14182) 194 : cluster [DBG] pgmap v161: 225 pgs: 225 active+clean; 7.2 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2023-11-30T22:59:40.012 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 22:59:39 smithi167 conmon[87022]: cluster 2023-11-30T22:59:38.224308+0000 mgr.smithi038.ldalxq (mgr.14182) 194 : cluster [DBG] pgmap v161: 225 pgs: 225 active+clean; 7.2 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2023-11-30T22:59:40.811 INFO:teuthology.orchestra.run.smithi038.stdout: 2023-11-30T22:59:40.811 INFO:teuthology.orchestra.run.smithi038.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2023-11-30T22:54:47.122758Z", "last_refresh": "2023-11-30T22:58:55.866934Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2023-11-30T22:54:42.674972Z", "last_refresh": "2023-11-30T22:58:52.669086Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2023-11-30T22:54:45.114633Z", "last_refresh": "2023-11-30T22:58:55.867071Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2023-11-30T22:58:56.317378Z 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": 9049, "virtual_ip": "10.0.31.38/16"}, "status": {"created": "2023-11-30T22:58:56.312786Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.38/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2023-11-30T22:54:41.668043Z", "last_refresh": "2023-11-30T22:58:52.669241Z", "running": 2, "size": 2}}, {"events": ["2023-11-30T22:55:50.759225Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi038:172.21.15.38=smithi038", "smithi167:172.21.15.167=smithi167"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2023-11-30T22:55:50.756456Z", "last_refresh": "2023-11-30T22:58:52.669318Z", "running": 2, "size": 2}}, {"events": ["2023-11-30T22:58:56.311581Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2023-11-30T22:58:56.308071Z", "ports": [12049], "running": 0, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2023-11-30T22:54:46.136630Z", "last_refresh": "2023-11-30T22:58:52.669387Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2023-11-30T22:56:33.258058Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2023-11-30T22:56:33.253117Z", "last_refresh": "2023-11-30T22:58:52.669454Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2023-11-30T22:54:43.949497Z", "last_refresh": "2023-11-30T22:58:55.867217Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2023-11-30T22:58:52.105721Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2023-11-30T22:58:59.793467Z", "ports": [8800], "running": 0, "size": 2}}] 2023-11-30T22:59:41.014 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 22:59:40 smithi167 conmon[87022]: cluster 2023-11-30T22:59:40.225231+0000 mgr.smithi038.ldalxq (mgr.14182) 195 : cluster 2023-11-30T22:59:41.014 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 22:59:40 smithi167 conmon[87022]: [DBG] pgmap v162: 225 pgs: 225 active+clean; 7.2 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2023-11-30T22:59:41.024 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:59:40 smithi038 conmon[81956]: cluster 2023-11-30T22:59:40.225231+0000 mgr.smithi038.ldalxq (mgr.14182) 195 : cluster 2023-11-30T22:59:41.024 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:59:40 smithi038 conmon[81956]: [DBG] pgmap v162: 225 pgs: 225 active+clean; 7.2 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2023-11-30T22:59:41.310 INFO:tasks.cephadm:nfs.foo has 0/1 2023-11-30T22:59:42.312 DEBUG:teuthology.orchestra.run.smithi038:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:0dc074ce0b0b3b4f393f56dd32ef36884ebf45a9 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 3faf8b00-8fd3-11ee-95a2-87774f69a715 -- ceph orch ls -f json 2023-11-30T22:59:42.892 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:59:42 smithi038 conmon[81956]: audit 2023-11-30T22:59:40. 2023-11-30T22:59:42.892 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:59:42 smithi038 conmon[81956]: 807263+0000 mgr.smithi038.ldalxq (mgr.14182) 196 : audit [DBG] from='client.14620 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-11-30T22:59:42.892 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:59:42 smithi038 conmon[81956]: audit 2023-11-30T22:59:42.194861+0000 mon.smithi038 (mon.0) 660 : audit [INF] from='mgr.14182 172.21.15.38:0/2999689707' entity='mgr.smithi038.ldalxq' cmd=[{"prefix": "osd pg-upmap-items", "format": "json", "pgid": "5.0", "id": [4, 6]}]: dispatch 2023-11-30T22:59:42.892 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:59:42 smithi038 conmon[81956]: audit 2023-11-30T22:59:42.195139+0000 mon.smithi038 (mon.0) 661 : audit [INF] from='mgr.14182 172.21.15.38:0/2999689707' entity='mgr.smithi038.ldalxq' cmd=[{"prefix": "osd pg-upmap-items", "format": "json", "pgid": "8.4", "id": [5, 3]}]: dispatch 2023-11-30T22:59:43.012 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 22:59:42 smithi167 conmon[87022]: audit 2023-11-30T22:59:40.807263+0000 mgr.smithi038.ldalxq (mgr.14182 2023-11-30T22:59:43.012 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 22:59:42 smithi167 conmon[87022]: ) 196 : audit [DBG] from='client.14620 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-11-30T22:59:43.012 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 22:59:42 smithi167 conmon[87022]: audit 2023-11-30T22:59:42.194861+0000 mon.smithi038 (mon.0) 660 : audit [INF] from='mgr.14182 172.21.15.38:0/2999689707' entity='mgr.smithi038.ldalxq' cmd=[{"prefix": "osd pg-upmap-items", "format": "json", "pgid": "5.0", "id": [4, 6]}]: dispatch 2023-11-30T22:59:43.012 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 22:59:42 smithi167 conmon[87022]: audit 2023-11-30T22:59:42.195139+0000 mon.smithi038 (mon.0) 661 : audit [INF] from='mgr.14182 172.21.15.38:0/2999689707' entity='mgr.smithi038.ldalxq' cmd=[{"prefix": "osd pg-upmap-items", "format": "json", "pgid": "8.4", "id": [5, 3]}]: dispatch 2023-11-30T22:59:44.012 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 22:59:43 smithi167 conmon[87022]: cluster 2023-11-30T22:59:42.225778+0000 mgr.smithi038.ldalxq (mgr.14182) 197 : cluster [DBG] pgmap v163: 225 pgs: 225 active+clean; 7.2 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 170 B/s wr, 0 op/s 2023-11-30T22:59:44.012 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 22:59:43 smithi167 conmon[87022]: audit 2023-11-30T22:59:42.609541+0000 mon.smithi038 (mon.0) 662 : audit [INF] from='mgr.14182 172.21.15.38:0/2999689707' entity='mgr.smithi038.ldalxq' cmd='[{"prefix": "osd pg-upmap-items", "format": "json", "pgid": "5.0", "id": [4, 6]}]': finished 2023-11-30T22:59:44.012 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 22:59:43 smithi167 conmon[87022]: audit 2023-11-30T22:59:42.609601+0000 mon.smithi038 (mon.0) 663 : audit [INF] from='mgr.14182 172.21.15.38:0/2999689707' entity='mgr.smithi038.ldalxq' cmd='[{"prefix": "osd pg-upmap-items", "format": "json", "pgid": "8.4", "id": [5, 3]}]': finished 2023-11-30T22:59:44.012 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 22:59:43 smithi167 conmon[87022]: cluster 2023-11-30T 2023-11-30T22:59:44.012 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 22:59:43 smithi167 conmon[87022]: 22:59:42.609641+0000 mon.smithi038 (mon.0) 664 : cluster [DBG] osdmap e55: 8 total, 8 up, 8 in 2023-11-30T22:59:44.024 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:59:43 smithi038 conmon[81956]: cluster 2023-11-30T22:59:42.225778+0000 2023-11-30T22:59:44.024 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:59:43 smithi038 conmon[81956]: mgr.smithi038.ldalxq (mgr.14182) 197 : cluster [DBG] pgmap v163: 225 pgs: 225 active+clean; 7.2 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 170 B/s wr, 0 op/s 2023-11-30T22:59:44.024 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:59:43 smithi038 conmon[81956]: audit 2023-11-30T22:59:42.609541+0000 mon.smithi038 (mon.0) 662 : audit [INF] from='mgr.14182 172.21.15.38:0/2999689707' entity='mgr.smithi038.ldalxq' cmd='[{"prefix": "osd pg-upmap-items", "format": "json", "pgid": "5.0", "id": [4, 6]}]': finished 2023-11-30T22:59:44.024 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:59:43 smithi038 conmon[81956]: audit 2023-11-30T22:59:42.609601+0000 mon.smithi038 (mon.0) 663 : audit [INF] from='mgr.14182 172.21.15.38:0/2999689707' entity='mgr.smithi038.ldalxq' cmd='[{"prefix": "osd pg-upmap-items", "format": "json", "pgid": "8.4", "id": [5, 3]}]': finished 2023-11-30T22:59:44.024 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:59:43 smithi038 conmon[81956]: cluster 2023-11-30T22:59:42.609641+0000 mon.smithi038 (mon.0) 664 : cluster [DBG] osdmap e55: 8 total, 8 up, 8 in 2023-11-30T22:59:44.169 INFO:teuthology.orchestra.run.smithi038.stdout: 2023-11-30T22:59:44.169 INFO:teuthology.orchestra.run.smithi038.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2023-11-30T22:54:47.122758Z", "last_refresh": "2023-11-30T22:58:55.866934Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2023-11-30T22:54:42.674972Z", "last_refresh": "2023-11-30T22:58:52.669086Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2023-11-30T22:54:45.114633Z", "last_refresh": "2023-11-30T22:58:55.867071Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2023-11-30T22:58:56.317378Z 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": 9049, "virtual_ip": "10.0.31.38/16"}, "status": {"created": "2023-11-30T22:58:56.312786Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.38/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2023-11-30T22:54:41.668043Z", "last_refresh": "2023-11-30T22:58:52.669241Z", "running": 2, "size": 2}}, {"events": ["2023-11-30T22:55:50.759225Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi038:172.21.15.38=smithi038", "smithi167:172.21.15.167=smithi167"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2023-11-30T22:55:50.756456Z", "last_refresh": "2023-11-30T22:58:52.669318Z", "running": 2, "size": 2}}, {"events": ["2023-11-30T22:58:56.311581Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2023-11-30T22:58:56.308071Z", "ports": [12049], "running": 0, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2023-11-30T22:54:46.136630Z", "last_refresh": "2023-11-30T22:58:52.669387Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2023-11-30T22:56:33.258058Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2023-11-30T22:56:33.253117Z", "last_refresh": "2023-11-30T22:58:52.669454Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2023-11-30T22:54:43.949497Z", "last_refresh": "2023-11-30T22:58:55.867217Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2023-11-30T22:58:52.105721Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2023-11-30T22:58:59.793467Z", "ports": [8800], "running": 0, "size": 2}}] 2023-11-30T22:59:44.667 INFO:tasks.cephadm:nfs.foo has 0/1 2023-11-30T22:59:45.012 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 22:59:44 smithi167 conmon[87022]: cluster 2023-11-30T22:59:43.610660+0000 mon.smithi038 (mon.0) 665 : cluster [DBG] osdmap e56: 8 total, 8 up, 8 in 2023-11-30T22:59:45.012 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 22:59:44 smithi167 conmon[87022]: audit 2023-11-30T22:59:44.164375+0000 mgr.smithi038.ldalxq (mgr.14182) 198 : audit [DBG] from='client.14624 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-11-30T22:59:45.012 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 22:59:44 smithi167 conmon[87022]: cluster 2023-11-30T22:59:44.226294+0000 mgr.smithi038.ldalxq (mgr.14182) 199 : cluster [DBG] pgmap v166: 225 pgs: 1 peering, 224 active+clean; 7.2 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 255 B/s rd, 255 B/s wr, 0 op/s 2023-11-30T22:59:45.024 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:59:44 smithi038 conmon[81956]: cluster 2023-11-30T22:59:43.610660+0000 mon.smithi038 2023-11-30T22:59:45.024 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:59:44 smithi038 conmon[81956]: (mon.0) 665 : cluster [DBG] osdmap e56: 8 total, 8 up, 8 in 2023-11-30T22:59:45.024 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:59:44 smithi038 conmon[81956]: audit 2023-11-30T22:59:44.164375+0000 mgr.smithi038.ldalxq (mgr.14182) 198 : audit [DBG] from='client.14624 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-11-30T22:59:45.024 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:59:44 smithi038 conmon[81956]: cluster 2023-11-30T22:59:44.226294+0000 mgr.smithi038.ldalxq (mgr.14182) 199 : cluster [DBG] pgmap v166: 225 pgs: 1 peering, 224 active+clean; 7.2 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 255 B/s rd, 255 B/s wr, 0 op/s 2023-11-30T22:59:45.668 DEBUG:teuthology.orchestra.run.smithi038:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:0dc074ce0b0b3b4f393f56dd32ef36884ebf45a9 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 3faf8b00-8fd3-11ee-95a2-87774f69a715 -- ceph orch ls -f json 2023-11-30T22:59:47.393 INFO:teuthology.orchestra.run.smithi038.stdout: 2023-11-30T22:59:47.393 INFO:teuthology.orchestra.run.smithi038.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2023-11-30T22:54:47.122758Z", "last_refresh": "2023-11-30T22:58:55.866934Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2023-11-30T22:54:42.674972Z", "last_refresh": "2023-11-30T22:58:52.669086Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2023-11-30T22:54:45.114633Z", "last_refresh": "2023-11-30T22:58:55.867071Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2023-11-30T22:58:56.317378Z 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": 9049, "virtual_ip": "10.0.31.38/16"}, "status": {"created": "2023-11-30T22:58:56.312786Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.38/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2023-11-30T22:54:41.668043Z", "last_refresh": "2023-11-30T22:58:52.669241Z", "running": 2, "size": 2}}, {"events": ["2023-11-30T22:55:50.759225Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi038:172.21.15.38=smithi038", "smithi167:172.21.15.167=smithi167"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2023-11-30T22:55:50.756456Z", "last_refresh": "2023-11-30T22:58:52.669318Z", "running": 2, "size": 2}}, {"events": ["2023-11-30T22:58:56.311581Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2023-11-30T22:58:56.308071Z", "ports": [12049], "running": 0, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2023-11-30T22:54:46.136630Z", "last_refresh": "2023-11-30T22:58:52.669387Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2023-11-30T22:56:33.258058Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2023-11-30T22:56:33.253117Z", "last_refresh": "2023-11-30T22:58:52.669454Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2023-11-30T22:54:43.949497Z", "last_refresh": "2023-11-30T22:58:55.867217Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2023-11-30T22:58:52.105721Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2023-11-30T22:58:59.793467Z", "ports": [8800], "running": 0, "size": 2}}] 2023-11-30T22:59:47.774 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:59:47 smithi038 conmon[81956]: cluster 2023-11-30T22:59:46.227141+0000 mgr.smithi038.ldalxq (mgr.14182) 200 : cluster [DBG] pgmap v167: 225 pgs: 1 peering, 224 active+clean; 7.2 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 255 B/s rd, 255 B/s wr, 0 op/s; 0 B/s, 0 objects/s recovering 2023-11-30T22:59:47.918 INFO:tasks.cephadm:nfs.foo has 0/1 2023-11-30T22:59:48.012 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 22:59:47 smithi167 conmon[87022]: cluster 2023-11-30T22:59:46.227141+0000 mgr.smithi038.ldalxq (mgr.14182) 200 : cluster [DBG] 2023-11-30T22:59:48.012 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 22:59:47 smithi167 conmon[87022]: pgmap v167: 225 pgs: 1 peering, 224 active+clean; 7.2 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 255 B/s rd, 255 B/s wr, 0 op/s; 0 B/s, 0 objects/s recovering 2023-11-30T22:59:48.919 DEBUG:teuthology.orchestra.run.smithi038:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:0dc074ce0b0b3b4f393f56dd32ef36884ebf45a9 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 3faf8b00-8fd3-11ee-95a2-87774f69a715 -- ceph orch ls -f json 2023-11-30T22:59:48.944 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:59:48 smithi038 conmon[81956]: audit 2023-11-30T22:59:47.388384+0000 mgr.smithi038.ldalxq (mgr.14182) 201 : 2023-11-30T22:59:48.944 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:59:48 smithi038 conmon[81956]: audit [DBG] from='client.14628 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-11-30T22:59:49.012 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 22:59:48 smithi167 conmon[87022]: audit 2023-11-30T22:59:47.388384+0000 mgr.smithi038.ldalxq (mgr.14182) 201 : audit [DBG] from='client.14628 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-11-30T22:59:49.774 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:59:49 smithi038 conmon[81956]: cluster 2023-11-30T22:59:48.227660+0000 mgr.smithi038.ldalxq (mgr.14182) 202 : cluster [DBG] pgmap v168: 225 pgs: 225 active+clean; 7.2 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 255 B/s rd, 255 B/s wr, 0 op/s; 0 B/s, 0 objects/s recovering 2023-11-30T22:59:50.012 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 22:59:49 smithi167 conmon[87022]: cluster 2023-11-30T22:59:48.227660+0000 mgr.smithi038.ldalxq (mgr 2023-11-30T22:59:50.012 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 22:59:49 smithi167 conmon[87022]: .14182) 202 : cluster [DBG] pgmap v168: 225 pgs: 225 active+clean; 7.2 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 255 B/s rd, 255 B/s wr, 0 op/s; 0 B/s, 0 objects/s recovering 2023-11-30T22:59:50.762 INFO:teuthology.orchestra.run.smithi038.stdout: 2023-11-30T22:59:50.763 INFO:teuthology.orchestra.run.smithi038.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2023-11-30T22:54:47.122758Z", "last_refresh": "2023-11-30T22:58:55.866934Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2023-11-30T22:54:42.674972Z", "last_refresh": "2023-11-30T22:58:52.669086Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2023-11-30T22:54:45.114633Z", "last_refresh": "2023-11-30T22:58:55.867071Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2023-11-30T22:58:56.317378Z 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": 9049, "virtual_ip": "10.0.31.38/16"}, "status": {"created": "2023-11-30T22:58:56.312786Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.38/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2023-11-30T22:54:41.668043Z", "last_refresh": "2023-11-30T22:58:52.669241Z", "running": 2, "size": 2}}, {"events": ["2023-11-30T22:55:50.759225Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi038:172.21.15.38=smithi038", "smithi167:172.21.15.167=smithi167"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2023-11-30T22:55:50.756456Z", "last_refresh": "2023-11-30T22:58:52.669318Z", "running": 2, "size": 2}}, {"events": ["2023-11-30T22:58:56.311581Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2023-11-30T22:58:56.308071Z", "ports": [12049], "running": 0, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2023-11-30T22:54:46.136630Z", "last_refresh": "2023-11-30T22:58:52.669387Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2023-11-30T22:56:33.258058Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2023-11-30T22:56:33.253117Z", "last_refresh": "2023-11-30T22:58:52.669454Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2023-11-30T22:54:43.949497Z", "last_refresh": "2023-11-30T22:58:55.867217Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2023-11-30T22:58:52.105721Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2023-11-30T22:58:59.793467Z", "ports": [8800], "running": 0, "size": 2}}] 2023-11-30T22:59:50.973 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:59:50 smithi038 conmon[81956]: cluster 2023-11-30T22:59:50.228392+0000 mgr.smithi038.ldalxq 2023-11-30T22:59:50.973 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:59:50 smithi038 conmon[81956]: (mgr.14182) 203 : cluster [DBG] pgmap v169: 225 pgs: 225 active+clean; 7.2 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 127 B/s rd, 0 op/s; 0 B/s, 0 objects/s recovering 2023-11-30T22:59:51.012 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 22:59:50 smithi167 conmon[87022]: cluster 2023-11-30T22:59:50.228392+0000 mgr.smithi038.ldalxq (mgr.14182) 203 : cluster [DBG] pgmap v169: 225 pgs: 225 active+clean; 7.2 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 127 B/s rd, 0 op/s; 0 B/s, 0 objects/s recovering 2023-11-30T22:59:51.171 INFO:tasks.cephadm:nfs.foo has 0/1 2023-11-30T22:59:52.174 DEBUG:teuthology.orchestra.run.smithi038:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:0dc074ce0b0b3b4f393f56dd32ef36884ebf45a9 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 3faf8b00-8fd3-11ee-95a2-87774f69a715 -- ceph orch ls -f json 2023-11-30T22:59:52.903 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:59:52 smithi038 conmon[81956]: audit 2023-11-30T22:59:50.759069+0000 mgr.smithi038.ldalxq (mgr.14182) 204 : audit 2023-11-30T22:59:52.904 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:59:52 smithi038 conmon[81956]: [DBG] from='client.14632 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-11-30T22:59:53.012 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 22:59:52 smithi167 conmon[87022]: audit 2023-11-30T22:59:50.759069+0000 mgr.smithi038.ldalxq (mgr.14182) 204 : audit [DBG] from='client.14632 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-11-30T22:59:54.003 INFO:teuthology.orchestra.run.smithi038.stdout: 2023-11-30T22:59:54.005 INFO:teuthology.orchestra.run.smithi038.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2023-11-30T22:54:47.122758Z", "last_refresh": "2023-11-30T22:58:55.866934Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2023-11-30T22:54:42.674972Z", "last_refresh": "2023-11-30T22:58:52.669086Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2023-11-30T22:54:45.114633Z", "last_refresh": "2023-11-30T22:58:55.867071Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2023-11-30T22:58:56.317378Z 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": 9049, "virtual_ip": "10.0.31.38/16"}, "status": {"created": "2023-11-30T22:58:56.312786Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.38/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2023-11-30T22:54:41.668043Z", "last_refresh": "2023-11-30T22:58:52.669241Z", "running": 2, "size": 2}}, {"events": ["2023-11-30T22:55:50.759225Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi038:172.21.15.38=smithi038", "smithi167:172.21.15.167=smithi167"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2023-11-30T22:55:50.756456Z", "last_refresh": "2023-11-30T22:58:52.669318Z", "running": 2, "size": 2}}, {"events": ["2023-11-30T22:58:56.311581Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2023-11-30T22:58:56.308071Z", "ports": [12049], "running": 0, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2023-11-30T22:54:46.136630Z", "last_refresh": "2023-11-30T22:58:52.669387Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2023-11-30T22:56:33.258058Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2023-11-30T22:56:33.253117Z", "last_refresh": "2023-11-30T22:58:52.669454Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2023-11-30T22:54:43.949497Z", "last_refresh": "2023-11-30T22:58:55.867217Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2023-11-30T22:58:52.105721Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2023-11-30T22:58:59.793467Z", "ports": [8800], "running": 0, "size": 2}}] 2023-11-30T22:59:54.016 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 22:59:53 smithi167 conmon[87022]: cluster 2023-11-30T22:59:52.228958+0000 mgr.smithi038.ldalxq (mgr.14182) 205 : cluster [DBG] pgmap v170: 225 pgs: 225 active+clean; 7.2 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 106 B/s rd, 0 op/s; 0 B/s, 0 objects/s recovering 2023-11-30T22:59:54.026 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:59:53 smithi038 conmon[81956]: cluster 2023-11-30T22:59:52.228958+0000 mgr.smithi038.ldalxq (mgr.14182) 205 : cluster [DBG] pgmap v170: 225 pgs: 225 active+clean; 7.2 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 106 B/s rd, 0 op/s; 0 B/s, 0 objects/s recovering 2023-11-30T22:59:54.542 INFO:tasks.cephadm:nfs.foo has 0/1 2023-11-30T22:59:54.774 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:59:54 smithi038 conmon[81956]: audit 2023-11-30T22:59:53.998881 2023-11-30T22:59:54.774 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:59:54 smithi038 conmon[81956]: +0000 mgr.smithi038.ldalxq (mgr.14182) 206 : audit [DBG] from='client.14636 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-11-30T22:59:54.774 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:59:54 smithi038 conmon[81956]: cluster 2023-11-30T22:59:54.229720+0000 mgr.smithi038.ldalxq (mgr.14182) 207 : cluster [DBG] pgmap v171: 225 pgs: 225 active+clean; 7.2 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 96 B/s rd, 0 op/s; 0 B/s, 0 objects/s recovering 2023-11-30T22:59:55.012 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 22:59:54 smithi167 conmon[87022]: audit 2023-11-30T22:59:53.998881+0000 mgr.smithi038.ldalxq (mgr.14182) 206 : audit [DBG] from='client.14636 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-11-30T22:59:55.012 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 22:59:54 smithi167 conmon[87022]: cluster 2023-11-30T22:59:54.229720+0000 mgr.smithi038.ldalxq (mgr.14182) 207 : cluster [DBG] pgmap v171: 225 pgs: 225 active+clean; 7.2 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 96 B/s rd, 0 op/s; 0 B/s, 0 objects/s recovering 2023-11-30T22:59:55.543 DEBUG:teuthology.orchestra.run.smithi038:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:0dc074ce0b0b3b4f393f56dd32ef36884ebf45a9 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 3faf8b00-8fd3-11ee-95a2-87774f69a715 -- ceph orch ls -f json 2023-11-30T22:59:57.483 INFO:teuthology.orchestra.run.smithi038.stdout: 2023-11-30T22:59:57.484 INFO:teuthology.orchestra.run.smithi038.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2023-11-30T22:54:47.122758Z", "last_refresh": "2023-11-30T22:58:55.866934Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2023-11-30T22:54:42.674972Z", "last_refresh": "2023-11-30T22:58:52.669086Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2023-11-30T22:54:45.114633Z", "last_refresh": "2023-11-30T22:58:55.867071Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2023-11-30T22:58:56.317378Z 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": 9049, "virtual_ip": "10.0.31.38/16"}, "status": {"created": "2023-11-30T22:58:56.312786Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.38/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2023-11-30T22:54:41.668043Z", "last_refresh": "2023-11-30T22:58:52.669241Z", "running": 2, "size": 2}}, {"events": ["2023-11-30T22:55:50.759225Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi038:172.21.15.38=smithi038", "smithi167:172.21.15.167=smithi167"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2023-11-30T22:55:50.756456Z", "last_refresh": "2023-11-30T22:58:52.669318Z", "running": 2, "size": 2}}, {"events": ["2023-11-30T22:58:56.311581Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2023-11-30T22:58:56.308071Z", "ports": [12049], "running": 0, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2023-11-30T22:54:46.136630Z", "last_refresh": "2023-11-30T22:58:52.669387Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2023-11-30T22:56:33.258058Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2023-11-30T22:56:33.253117Z", "last_refresh": "2023-11-30T22:58:52.669454Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2023-11-30T22:54:43.949497Z", "last_refresh": "2023-11-30T22:58:55.867217Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2023-11-30T22:58:52.105721Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2023-11-30T22:58:59.793467Z", "ports": [8800], "running": 0, "size": 2}}] 2023-11-30T22:59:57.774 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:59:57 smithi038 conmon[81956]: cluster 2023-11-30T22:59:56.230407+0000 mgr.smithi038.ldalxq (mgr.14182) 208 : cluster [DBG] pgmap v172: 225 pgs: 225 active+clean; 7.2 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s; 0 B/s, 0 objects/s recovering 2023-11-30T22:59:57.774 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:59:57 smithi038 conmon[81956]: audit 2023-11-30T22:59:56.631485+0000 mon.smithi038 (mon.0) 666 : audit [INF] from='mgr.14182 172.21.15.38:0/2999689707' entity='mgr.smithi038.ldalxq' 2023-11-30T22:59:58.008 INFO:tasks.cephadm:nfs.foo has 0/1 2023-11-30T22:59:58.011 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 22:59:57 smithi167 conmon[87022]: cluster 2023-11-30T22:59:56.230407+0000 mgr.smithi038.ldalxq (mgr.14182) 208 : cluster [DBG] 2023-11-30T22:59:58.012 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 22:59:57 smithi167 conmon[87022]: pgmap v172: 225 pgs: 225 active+clean; 7.2 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s; 0 B/s, 0 objects/s recovering 2023-11-30T22:59:58.012 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 22:59:57 smithi167 conmon[87022]: audit 2023-11-30T22:59:56.631485+0000 mon.smithi038 (mon.0) 666 : audit [INF] from='mgr.14182 172.21.15.38:0/2999689707' entity='mgr.smithi038.ldalxq' 2023-11-30T22:59:58.945 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:59:58 smithi038 conmon[81956]: audit 2023-11-30T22:59:57.480133+0000 mgr.smithi038.ldalxq (mgr 2023-11-30T22:59:58.945 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:59:58 smithi038 conmon[81956]: .14182) 209 : audit [DBG] from='client.14640 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-11-30T22:59:59.009 DEBUG:teuthology.orchestra.run.smithi038:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:0dc074ce0b0b3b4f393f56dd32ef36884ebf45a9 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 3faf8b00-8fd3-11ee-95a2-87774f69a715 -- ceph orch ls -f json 2023-11-30T22:59:59.011 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 22:59:58 smithi167 conmon[87022]: audit 2023-11-30T22:59:57.480133+0000 mgr.smithi038.ldalxq (mgr.14182) 209 : audit [DBG] from='client.14640 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-11-30T22:59:59.988 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:59:59 smithi038 conmon[81956]: cluster 2023-11-30T22:59:58.230980+0000 mgr.smithi038.ldalxq (mgr.14182) 210 : cluster 2023-11-30T22:59:59.989 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 22:59:59 smithi038 conmon[81956]: [DBG] pgmap v173: 225 pgs: 225 active+clean; 7.2 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2023-11-30T23:00:00.012 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 22:59:59 smithi167 conmon[87022]: cluster 2023-11-30T22:59:58.230980+0000 mgr.smithi038.ldalxq (mgr.14182) 210 : cluster [DBG] pgmap v173: 225 pgs: 225 active+clean; 7.2 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2023-11-30T23:00:00.774 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:00:00 smithi038 conmon[81956]: cluster 2023-11-30T23:00:00.000182+0000 mon.smithi038 (mon.0) 667 : cluster [INF] overall HEALTH_OK 2023-11-30T23:00:00.774 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:00:00 smithi038 conmon[81956]: cluster 2023-11-30T23:00:00.231677+0000 mgr.smithi038.ldalxq (mgr.14182) 211 : cluster [DBG] pgmap v174: 225 pgs: 225 active+clean; 7.2 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2023-11-30T23:00:00.858 INFO:teuthology.orchestra.run.smithi038.stdout: 2023-11-30T23:00:00.858 INFO:teuthology.orchestra.run.smithi038.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2023-11-30T22:54:47.122758Z", "last_refresh": "2023-11-30T22:58:55.866934Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2023-11-30T22:54:42.674972Z", "last_refresh": "2023-11-30T22:58:52.669086Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2023-11-30T22:54:45.114633Z", "last_refresh": "2023-11-30T22:58:55.867071Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2023-11-30T22:58:56.317378Z 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": 9049, "virtual_ip": "10.0.31.38/16"}, "status": {"created": "2023-11-30T22:58:56.312786Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.38/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2023-11-30T22:54:41.668043Z", "last_refresh": "2023-11-30T22:58:52.669241Z", "running": 2, "size": 2}}, {"events": ["2023-11-30T22:55:50.759225Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi038:172.21.15.38=smithi038", "smithi167:172.21.15.167=smithi167"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2023-11-30T22:55:50.756456Z", "last_refresh": "2023-11-30T22:58:52.669318Z", "running": 2, "size": 2}}, {"events": ["2023-11-30T22:58:56.311581Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2023-11-30T22:58:56.308071Z", "ports": [12049], "running": 0, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2023-11-30T22:54:46.136630Z", "last_refresh": "2023-11-30T22:58:52.669387Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2023-11-30T22:56:33.258058Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2023-11-30T22:56:33.253117Z", "last_refresh": "2023-11-30T22:58:52.669454Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2023-11-30T22:54:43.949497Z", "last_refresh": "2023-11-30T22:58:55.867217Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2023-11-30T22:58:52.105721Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2023-11-30T22:58:59.793467Z", "ports": [8800], "running": 0, "size": 2}}] 2023-11-30T23:00:01.012 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:00:00 smithi167 conmon[87022]: cluster 2023-11-30T23:00:00.000182+0000 mon.smithi038 (mon.0) 667 : cluster [INF] 2023-11-30T23:00:01.012 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:00:00 smithi167 conmon[87022]: overall HEALTH_OK 2023-11-30T23:00:01.012 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:00:00 smithi167 conmon[87022]: cluster 2023-11-30T23:00:00.231677+0000 mgr.smithi038.ldalxq (mgr.14182) 211 : cluster [DBG] pgmap v174: 225 pgs: 225 active+clean; 7.2 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2023-11-30T23:00:01.373 INFO:tasks.cephadm:nfs.foo has 0/1 2023-11-30T23:00:02.376 DEBUG:teuthology.orchestra.run.smithi038:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:0dc074ce0b0b3b4f393f56dd32ef36884ebf45a9 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 3faf8b00-8fd3-11ee-95a2-87774f69a715 -- ceph orch ls -f json 2023-11-30T23:00:02.774 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:00:02 smithi038 conmon[81956]: audit 2023-11-30T23:00:00.854992+0000 mgr.smithi038.ldalxq 2023-11-30T23:00:02.774 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:00:02 smithi038 conmon[81956]: (mgr.14182) 212 : audit [DBG] from='client.14644 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-11-30T23:00:03.012 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:00:02 smithi167 conmon[87022]: audit 2023-11-30T23:00:00.854992+0000 mgr.smithi038.ldalxq (mgr.14182) 212 : audit [DBG] from='client.14644 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-11-30T23:00:04.012 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:00:03 smithi167 conmon[87022]: cluster 2023-11-30T23:00:02.232367+0000 mgr.smithi038.ldalxq (mgr.14182) 213 : cluster 2023-11-30T23:00:04.012 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:00:03 smithi167 conmon[87022]: [DBG] pgmap v175: 225 pgs: 225 active+clean; 7.2 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2023-11-30T23:00:04.024 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:00:03 smithi038 conmon[81956]: cluster 2023-11-30T23:00:02.232367+0000 2023-11-30T23:00:04.024 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:00:03 smithi038 conmon[81956]: mgr.smithi038.ldalxq (mgr.14182) 213 : cluster [DBG] pgmap v175: 225 pgs: 225 active+clean; 7.2 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2023-11-30T23:00:04.117 INFO:teuthology.orchestra.run.smithi038.stdout: 2023-11-30T23:00:04.117 INFO:teuthology.orchestra.run.smithi038.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2023-11-30T22:54:47.122758Z", "last_refresh": "2023-11-30T22:58:55.866934Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2023-11-30T22:54:42.674972Z", "last_refresh": "2023-11-30T22:58:52.669086Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2023-11-30T22:54:45.114633Z", "last_refresh": "2023-11-30T22:58:55.867071Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2023-11-30T22:58:56.317378Z 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": 9049, "virtual_ip": "10.0.31.38/16"}, "status": {"created": "2023-11-30T22:58:56.312786Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.38/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2023-11-30T22:54:41.668043Z", "last_refresh": "2023-11-30T22:58:52.669241Z", "running": 2, "size": 2}}, {"events": ["2023-11-30T22:55:50.759225Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi038:172.21.15.38=smithi038", "smithi167:172.21.15.167=smithi167"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2023-11-30T22:55:50.756456Z", "last_refresh": "2023-11-30T22:58:52.669318Z", "running": 2, "size": 2}}, {"events": ["2023-11-30T22:58:56.311581Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2023-11-30T22:58:56.308071Z", "ports": [12049], "running": 0, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2023-11-30T22:54:46.136630Z", "last_refresh": "2023-11-30T22:58:52.669387Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2023-11-30T22:56:33.258058Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2023-11-30T22:56:33.253117Z", "last_refresh": "2023-11-30T22:58:52.669454Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2023-11-30T22:54:43.949497Z", "last_refresh": "2023-11-30T22:58:55.867217Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2023-11-30T22:58:52.105721Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2023-11-30T22:58:59.793467Z", "ports": [8800], "running": 0, "size": 2}}] 2023-11-30T23:00:04.648 INFO:tasks.cephadm:nfs.foo has 0/1 2023-11-30T23:00:05.012 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:00:04 smithi167 conmon[87022]: audit 2023-11-30T23:00:04.113549+0000 mgr.smithi038.ldalxq (mgr.14182) 214 : audit [DBG] from='client.14648 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-11-30T23:00:05.012 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:00:04 smithi167 conmon[87022]: cluster 2023-11-30T23:00:04.233176+0000 mgr.smithi038.ldalxq (mgr.14182) 215 2023-11-30T23:00:05.012 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:00:04 smithi167 conmon[87022]: : cluster [DBG] pgmap v176: 225 pgs: 225 active+clean; 7.2 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2023-11-30T23:00:05.024 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:00:04 smithi038 conmon[81956]: audit 2023-11-30T23:00:04.113549+0000 mgr.smithi038.ldalxq (mgr.14182) 214 : audit [DBG] from='client.14648 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-11-30T23:00:05.024 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:00:04 smithi038 conmon[81956]: cluster 2023-11-30T23:00:04.233176+0000 mgr.smithi038.ldalxq (mgr.14182) 215 : cluster [DBG] pgmap v176: 225 pgs: 225 active+clean; 7.2 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2023-11-30T23:00:05.649 DEBUG:teuthology.orchestra.run.smithi038:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:0dc074ce0b0b3b4f393f56dd32ef36884ebf45a9 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 3faf8b00-8fd3-11ee-95a2-87774f69a715 -- ceph orch ls -f json 2023-11-30T23:00:07.414 INFO:teuthology.orchestra.run.smithi038.stdout: 2023-11-30T23:00:07.414 INFO:teuthology.orchestra.run.smithi038.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2023-11-30T22:54:47.122758Z", "last_refresh": "2023-11-30T22:58:55.866934Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2023-11-30T22:54:42.674972Z", "last_refresh": "2023-11-30T22:58:52.669086Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2023-11-30T22:54:45.114633Z", "last_refresh": "2023-11-30T22:58:55.867071Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2023-11-30T22:58:56.317378Z 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": 9049, "virtual_ip": "10.0.31.38/16"}, "status": {"created": "2023-11-30T22:58:56.312786Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.38/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2023-11-30T22:54:41.668043Z", "last_refresh": "2023-11-30T22:58:52.669241Z", "running": 2, "size": 2}}, {"events": ["2023-11-30T22:55:50.759225Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi038:172.21.15.38=smithi038", "smithi167:172.21.15.167=smithi167"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2023-11-30T22:55:50.756456Z", "last_refresh": "2023-11-30T22:58:52.669318Z", "running": 2, "size": 2}}, {"events": ["2023-11-30T22:58:56.311581Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2023-11-30T22:58:56.308071Z", "ports": [12049], "running": 0, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2023-11-30T22:54:46.136630Z", "last_refresh": "2023-11-30T22:58:52.669387Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2023-11-30T22:56:33.258058Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2023-11-30T22:56:33.253117Z", "last_refresh": "2023-11-30T22:58:52.669454Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2023-11-30T22:54:43.949497Z", "last_refresh": "2023-11-30T22:58:55.867217Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2023-11-30T22:58:52.105721Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2023-11-30T22:58:59.793467Z", "ports": [8800], "running": 0, "size": 2}}] 2023-11-30T23:00:07.774 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:00:07 smithi038 conmon[81956]: cluster 2023-11-30T23:00:06. 2023-11-30T23:00:07.774 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:00:07 smithi038 conmon[81956]: 233888+0000 mgr.smithi038.ldalxq (mgr.14182) 216 : cluster [DBG] pgmap v177: 225 pgs: 225 active+clean; 7.2 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2023-11-30T23:00:07.913 INFO:tasks.cephadm:nfs.foo has 0/1 2023-11-30T23:00:08.012 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:00:07 smithi167 conmon[87022]: cluster 2023-11-30T23:00:06.233888+0000 mgr.smithi038.ldalxq (mgr.14182) 216 : cluster [DBG] 2023-11-30T23:00:08.012 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:00:07 smithi167 conmon[87022]: pgmap v177: 225 pgs: 225 active+clean; 7.2 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2023-11-30T23:00:08.914 DEBUG:teuthology.orchestra.run.smithi038:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:0dc074ce0b0b3b4f393f56dd32ef36884ebf45a9 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 3faf8b00-8fd3-11ee-95a2-87774f69a715 -- ceph orch ls -f json 2023-11-30T23:00:08.945 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:00:08 smithi038 conmon[81956]: audit 2023-11-30T23:00:07.410897+0000 mgr.smithi038.ldalxq (mgr.14182) 217 : audit [DBG] from='client.14652 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-11-30T23:00:08.946 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:00:08 smithi038 conmon[81956]: 2023-11-30T23:00:09.012 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:00:08 smithi167 conmon[87022]: audit 2023-11-30T23:00:07.410897+0000 mgr.smithi038.ldalxq (mgr.14182) 217 : audit [DBG] from='client.14652 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-11-30T23:00:09.774 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:00:09 smithi038 conmon[81956]: cluster 2023-11-30T23:00:08.234537 2023-11-30T23:00:09.774 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:00:09 smithi038 conmon[81956]: +0000 mgr.smithi038.ldalxq (mgr.14182) 218 : cluster [DBG] pgmap v178: 225 pgs: 225 active+clean; 7.2 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2023-11-30T23:00:10.013 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:00:09 smithi167 conmon[87022]: cluster 2023-11-30T23:00:08.234537+0000 mgr.smithi038.ldalxq (mgr.14182) 218 : cluster [DBG] pgmap v178: 225 pgs: 225 active+clean; 7.2 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2023-11-30T23:00:10.714 INFO:teuthology.orchestra.run.smithi038.stdout: 2023-11-30T23:00:10.714 INFO:teuthology.orchestra.run.smithi038.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2023-11-30T22:54:47.122758Z", "last_refresh": "2023-11-30T22:58:55.866934Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2023-11-30T22:54:42.674972Z", "last_refresh": "2023-11-30T22:58:52.669086Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2023-11-30T22:54:45.114633Z", "last_refresh": "2023-11-30T22:58:55.867071Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2023-11-30T22:58:56.317378Z 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": 9049, "virtual_ip": "10.0.31.38/16"}, "status": {"created": "2023-11-30T22:58:56.312786Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.38/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2023-11-30T22:54:41.668043Z", "last_refresh": "2023-11-30T22:58:52.669241Z", "running": 2, "size": 2}}, {"events": ["2023-11-30T22:55:50.759225Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi038:172.21.15.38=smithi038", "smithi167:172.21.15.167=smithi167"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2023-11-30T22:55:50.756456Z", "last_refresh": "2023-11-30T22:58:52.669318Z", "running": 2, "size": 2}}, {"events": ["2023-11-30T22:58:56.311581Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2023-11-30T22:58:56.308071Z", "ports": [12049], "running": 0, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2023-11-30T22:54:46.136630Z", "last_refresh": "2023-11-30T22:58:52.669387Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2023-11-30T22:56:33.258058Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2023-11-30T22:56:33.253117Z", "last_refresh": "2023-11-30T22:58:52.669454Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2023-11-30T22:54:43.949497Z", "last_refresh": "2023-11-30T22:58:55.867217Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2023-11-30T22:58:52.105721Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2023-11-30T22:58:59.793467Z", "ports": [8800], "running": 0, "size": 2}}] 2023-11-30T23:00:10.979 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:00:10 smithi038 conmon[81956]: cluster 2023-11-30T23:00:10 2023-11-30T23:00:10.979 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:00:10 smithi038 conmon[81956]: .235260+0000 mgr.smithi038.ldalxq (mgr.14182) 219 : cluster [DBG] pgmap v179: 225 pgs: 225 active+clean; 7.2 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2023-11-30T23:00:11.012 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:00:10 smithi167 conmon[87022]: cluster 2023-11-30T23:00:10.235260+0000 mgr.smithi038.ldalxq (mgr.14182) 219 : cluster [DBG] pgmap v179: 225 pgs: 225 active+clean; 7.2 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2023-11-30T23:00:11.166 INFO:tasks.cephadm:nfs.foo has 0/1 2023-11-30T23:00:12.168 DEBUG:teuthology.orchestra.run.smithi038:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:0dc074ce0b0b3b4f393f56dd32ef36884ebf45a9 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 3faf8b00-8fd3-11ee-95a2-87774f69a715 -- ceph orch ls -f json 2023-11-30T23:00:12.951 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:00:12 smithi038 conmon[81956]: audit 2023-11-30T23:00:10.710050+0000 mgr.smithi038.ldalxq ( 2023-11-30T23:00:12.951 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:00:12 smithi038 conmon[81956]: mgr.14182) 220 : audit [DBG] from='client.14656 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-11-30T23:00:13.012 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:00:12 smithi167 conmon[87022]: audit 2023-11-30T23:00:10.710050+0000 mgr.smithi038.ldalxq (mgr.14182) 220 : audit [DBG] 2023-11-30T23:00:13.012 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:00:12 smithi167 conmon[87022]: from='client.14656 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-11-30T23:00:14.002 INFO:teuthology.orchestra.run.smithi038.stdout: 2023-11-30T23:00:14.002 INFO:teuthology.orchestra.run.smithi038.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2023-11-30T22:54:47.122758Z", "last_refresh": "2023-11-30T22:58:55.866934Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2023-11-30T22:54:42.674972Z", "last_refresh": "2023-11-30T22:58:52.669086Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2023-11-30T22:54:45.114633Z", "last_refresh": "2023-11-30T22:58:55.867071Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2023-11-30T22:58:56.317378Z 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": 9049, "virtual_ip": "10.0.31.38/16"}, "status": {"created": "2023-11-30T22:58:56.312786Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.38/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2023-11-30T22:54:41.668043Z", "last_refresh": "2023-11-30T22:58:52.669241Z", "running": 2, "size": 2}}, {"events": ["2023-11-30T22:55:50.759225Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi038:172.21.15.38=smithi038", "smithi167:172.21.15.167=smithi167"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2023-11-30T22:55:50.756456Z", "last_refresh": "2023-11-30T22:58:52.669318Z", "running": 2, "size": 2}}, {"events": ["2023-11-30T22:58:56.311581Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2023-11-30T22:58:56.308071Z", "ports": [12049], "running": 0, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2023-11-30T22:54:46.136630Z", "last_refresh": "2023-11-30T22:58:52.669387Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2023-11-30T22:56:33.258058Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2023-11-30T22:56:33.253117Z", "last_refresh": "2023-11-30T22:58:52.669454Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2023-11-30T22:54:43.949497Z", "last_refresh": "2023-11-30T22:58:55.867217Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2023-11-30T22:58:52.105721Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2023-11-30T22:58:59.793467Z", "ports": [8800], "running": 0, "size": 2}}] 2023-11-30T23:00:14.011 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:00:13 smithi167 conmon[87022]: cluster 2023-11-30T23:00:12.235814+0000 mgr.smithi038.ldalxq (mgr.14182) 221 : cluster [DBG] pgmap v180: 225 pgs: 225 active+clean; 7.2 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2023-11-30T23:00:14.023 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:00:13 smithi038 conmon[81956]: cluster 2023-11-30T23:00:12.235814+0000 mgr.smithi038.ldalxq (mgr.14182) 221 : cluster [DBG] pgmap v180: 225 pgs: 225 active+clean; 7.2 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2023-11-30T23:00:14.424 INFO:tasks.cephadm:nfs.foo has 0/1 2023-11-30T23:00:14.774 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:00:14 smithi038 conmon[81956]: audit 2023-11-30T23:00:13.997975+0000 mgr.smithi038.ldalxq (mgr.14182) 222 : audit [DBG] from='client.14660 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-11-30T23:00:14.774 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:00:14 smithi038 conmon[81956]: cluster 2023-11-30T23:00:14.236367+0000 mgr.smithi038.ldalxq (mgr.14182) 223 : cluster [DBG] pgmap v181: 225 pgs: 225 active+clean; 7.2 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2023-11-30T23:00:15.012 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:00:14 smithi167 conmon[87022]: audit 2023-11-30T23:00:13.997975+0000 mgr.smithi038.ldalxq (mgr.14182) 222 : audit [DBG] from='client.14660 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-11-30T23:00:15.012 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:00:14 smithi167 conmon[87022]: cluster 2023-11-30T23:00:14.236367+0000 mgr.smithi038.ldalxq (mgr.14182) 223 : cluster [DBG] pgmap v181: 225 pgs: 225 active+clean; 7.2 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2023-11-30T23:00:15.426 DEBUG:teuthology.orchestra.run.smithi038:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:0dc074ce0b0b3b4f393f56dd32ef36884ebf45a9 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 3faf8b00-8fd3-11ee-95a2-87774f69a715 -- ceph orch ls -f json 2023-11-30T23:00:17.149 INFO:teuthology.orchestra.run.smithi038.stdout: 2023-11-30T23:00:17.150 INFO:teuthology.orchestra.run.smithi038.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2023-11-30T22:54:47.122758Z", "last_refresh": "2023-11-30T22:58:55.866934Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2023-11-30T22:54:42.674972Z", "last_refresh": "2023-11-30T22:58:52.669086Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2023-11-30T22:54:45.114633Z", "last_refresh": "2023-11-30T22:58:55.867071Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2023-11-30T22:58:56.317378Z 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": 9049, "virtual_ip": "10.0.31.38/16"}, "status": {"created": "2023-11-30T22:58:56.312786Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.38/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2023-11-30T22:54:41.668043Z", "last_refresh": "2023-11-30T22:58:52.669241Z", "running": 2, "size": 2}}, {"events": ["2023-11-30T22:55:50.759225Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi038:172.21.15.38=smithi038", "smithi167:172.21.15.167=smithi167"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2023-11-30T22:55:50.756456Z", "last_refresh": "2023-11-30T22:58:52.669318Z", "running": 2, "size": 2}}, {"events": ["2023-11-30T22:58:56.311581Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2023-11-30T22:58:56.308071Z", "ports": [12049], "running": 0, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2023-11-30T22:54:46.136630Z", "last_refresh": "2023-11-30T22:58:52.669387Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2023-11-30T22:56:33.258058Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2023-11-30T22:56:33.253117Z", "last_refresh": "2023-11-30T22:58:52.669454Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2023-11-30T22:54:43.949497Z", "last_refresh": "2023-11-30T22:58:55.867217Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2023-11-30T22:58:52.105721Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2023-11-30T22:58:59.793467Z", "ports": [8800], "running": 0, "size": 2}}] 2023-11-30T23:00:17.688 INFO:tasks.cephadm:nfs.foo has 0/1 2023-11-30T23:00:18.012 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:00:17 smithi167 conmon[87022]: cluster 2023-11-30T23:00:16.237049+0000 mgr.smithi038.ldalxq (mgr.14182) 224 : cluster [DBG] pgmap v182: 225 pgs: 225 active+clean; 7.2 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2023-11-30T23:00:18.024 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:00:17 smithi038 conmon[81956]: cluster 2023-11-30T23:00:16.237049+0000 mgr.smithi038.ldalxq (mgr.14182) 224 : cluster [DBG] pgmap v182: 225 pgs: 225 active+clean; 7.2 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2023-11-30T23:00:18.689 DEBUG:teuthology.orchestra.run.smithi038:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:0dc074ce0b0b3b4f393f56dd32ef36884ebf45a9 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 3faf8b00-8fd3-11ee-95a2-87774f69a715 -- ceph orch ls -f json 2023-11-30T23:00:18.944 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:00:18 smithi038 conmon[81956]: audit 2023-11-30T23:00:17.143420+0000 mgr.smithi038.ldalxq (mgr.14182) 225 : audit [DBG] from='client.14664 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-11-30T23:00:19.012 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:00:18 smithi167 conmon[87022]: audit 2023-11-30T23:00:17.143420+0000 mgr.smithi038.ldalxq (mgr.14182) 225 : audit [DBG] from='client.14664 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-11-30T23:00:20.012 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:00:19 smithi167 conmon[87022]: cluster 2023-11-30T23:00:18.237827+0000 mgr.smithi038.ldalxq (mgr.14182) 226 : cluster [DBG] pgmap v183: 225 pgs: 225 active+clean; 7.2 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2023-11-30T23:00:20.024 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:00:19 smithi038 conmon[81956]: cluster 2023-11-30T23:00:18.237827+0000 mgr.smithi038.ldalxq (mgr 2023-11-30T23:00:20.025 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:00:19 smithi038 conmon[81956]: .14182) 226 : cluster [DBG] pgmap v183: 225 pgs: 225 active+clean; 7.2 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2023-11-30T23:00:20.545 INFO:teuthology.orchestra.run.smithi038.stdout: 2023-11-30T23:00:20.546 INFO:teuthology.orchestra.run.smithi038.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2023-11-30T22:54:47.122758Z", "last_refresh": "2023-11-30T22:58:55.866934Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2023-11-30T22:54:42.674972Z", "last_refresh": "2023-11-30T22:58:52.669086Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2023-11-30T22:54:45.114633Z", "last_refresh": "2023-11-30T22:58:55.867071Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2023-11-30T22:58:56.317378Z 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": 9049, "virtual_ip": "10.0.31.38/16"}, "status": {"created": "2023-11-30T22:58:56.312786Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.38/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2023-11-30T22:54:41.668043Z", "last_refresh": "2023-11-30T22:58:52.669241Z", "running": 2, "size": 2}}, {"events": ["2023-11-30T22:55:50.759225Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi038:172.21.15.38=smithi038", "smithi167:172.21.15.167=smithi167"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2023-11-30T22:55:50.756456Z", "last_refresh": "2023-11-30T22:58:52.669318Z", "running": 2, "size": 2}}, {"events": ["2023-11-30T22:58:56.311581Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2023-11-30T22:58:56.308071Z", "ports": [12049], "running": 0, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2023-11-30T22:54:46.136630Z", "last_refresh": "2023-11-30T22:58:52.669387Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2023-11-30T22:56:33.258058Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2023-11-30T22:56:33.253117Z", "last_refresh": "2023-11-30T22:58:52.669454Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2023-11-30T22:54:43.949497Z", "last_refresh": "2023-11-30T22:58:55.867217Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2023-11-30T22:58:52.105721Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2023-11-30T22:58:59.793467Z", "ports": [8800], "running": 0, "size": 2}}] 2023-11-30T23:00:20.986 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:00:20 smithi038 conmon[81956]: cluster 2023-11-30T23:00:20.238528+0000 mgr.smithi038.ldalxq (mgr.14182) 227 : cluster [DBG] pgmap v184: 225 pgs: 225 active+clean; 7.2 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2023-11-30T23:00:20.986 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:00:20 smithi038 conmon[81956]: audit 2023-11-30T23:00:20.542198+0000 mgr.smithi038.ldalxq (mgr.14182) 228 : audit [DBG] from='client.14668 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-11-30T23:00:21.012 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:00:20 smithi167 conmon[87022]: cluster 2023-11-30T23:00:20.238528+0000 mgr.smithi038.ldalxq (mgr.14182) 227 : cluster [DBG] pgmap v184: 225 pgs: 225 active+clean; 7.2 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2023-11-30T23:00:21.012 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:00:20 smithi167 conmon[87022]: audit 2023-11-30T23:00:20.542198+0000 mgr.smithi038.ldalxq (mgr.14182) 228 : audit [DBG] from='client.14668 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-11-30T23:00:21.034 INFO:tasks.cephadm:nfs.foo has 0/1 2023-11-30T23:00:22.035 DEBUG:teuthology.orchestra.run.smithi038:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:0dc074ce0b0b3b4f393f56dd32ef36884ebf45a9 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 3faf8b00-8fd3-11ee-95a2-87774f69a715 -- ceph orch ls -f json 2023-11-30T23:00:23.774 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:00:23 smithi038 conmon[81956]: cluster 2023-11-30T23:00: 2023-11-30T23:00:23.774 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:00:23 smithi038 conmon[81956]: 22.239022+0000 mgr.smithi038.ldalxq (mgr.14182) 229 : cluster [DBG] pgmap v185: 225 pgs: 225 active+clean; 7.2 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2023-11-30T23:00:23.834 INFO:teuthology.orchestra.run.smithi038.stdout: 2023-11-30T23:00:23.834 INFO:teuthology.orchestra.run.smithi038.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2023-11-30T22:54:47.122758Z", "last_refresh": "2023-11-30T22:58:55.866934Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2023-11-30T22:54:42.674972Z", "last_refresh": "2023-11-30T22:58:52.669086Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2023-11-30T22:54:45.114633Z", "last_refresh": "2023-11-30T22:58:55.867071Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2023-11-30T22:58:56.317378Z 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": 9049, "virtual_ip": "10.0.31.38/16"}, "status": {"created": "2023-11-30T22:58:56.312786Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.38/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2023-11-30T22:54:41.668043Z", "last_refresh": "2023-11-30T22:58:52.669241Z", "running": 2, "size": 2}}, {"events": ["2023-11-30T22:55:50.759225Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi038:172.21.15.38=smithi038", "smithi167:172.21.15.167=smithi167"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2023-11-30T22:55:50.756456Z", "last_refresh": "2023-11-30T22:58:52.669318Z", "running": 2, "size": 2}}, {"events": ["2023-11-30T22:58:56.311581Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2023-11-30T22:58:56.308071Z", "ports": [12049], "running": 0, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2023-11-30T22:54:46.136630Z", "last_refresh": "2023-11-30T22:58:52.669387Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2023-11-30T22:56:33.258058Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2023-11-30T22:56:33.253117Z", "last_refresh": "2023-11-30T22:58:52.669454Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2023-11-30T22:54:43.949497Z", "last_refresh": "2023-11-30T22:58:55.867217Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2023-11-30T22:58:52.105721Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2023-11-30T22:58:59.793467Z", "ports": [8800], "running": 0, "size": 2}}] 2023-11-30T23:00:24.012 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:00:23 smithi167 conmon[87022]: cluster 2023-11-30T23:00:22.239022+0000 mgr.smithi038.ldalxq (mgr.14182) 229 : cluster [DBG] pgmap v185: 225 pgs: 225 active+clean; 7.2 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2023-11-30T23:00:24.298 INFO:tasks.cephadm:nfs.foo has 0/1 2023-11-30T23:00:25.012 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:00:24 smithi167 conmon[87022]: audit 2023-11-30T23:00:23.830437+0000 mgr.smithi038.ldalxq (mgr.14182) 230 : 2023-11-30T23:00:25.012 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:00:24 smithi167 conmon[87022]: audit [DBG] from='client.14672 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-11-30T23:00:25.012 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:00:24 smithi167 conmon[87022]: cluster 2023-11-30T23:00:24.239769+0000 mgr.smithi038.ldalxq (mgr.14182) 231 : cluster [DBG] pgmap v186: 225 pgs: 225 active+clean; 7.2 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2023-11-30T23:00:25.023 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:00:24 smithi038 conmon[81956]: audit 2023-11-30T23:00:23.830437+0000 mgr.smithi038.ldalxq (mgr.14182) 230 : audit [DBG] from='client.14672 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-11-30T23:00:25.024 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:00:24 smithi038 conmon[81956]: cluster 2023-11-30T23:00:24.239769+0000 mgr.smithi038.ldalxq (mgr.14182) 231 : cluster [DBG] pgmap v186: 225 pgs: 225 active+clean; 7.2 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2023-11-30T23:00:25.299 DEBUG:teuthology.orchestra.run.smithi038:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:0dc074ce0b0b3b4f393f56dd32ef36884ebf45a9 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 3faf8b00-8fd3-11ee-95a2-87774f69a715 -- ceph orch ls -f json 2023-11-30T23:00:27.183 INFO:teuthology.orchestra.run.smithi038.stdout: 2023-11-30T23:00:27.183 INFO:teuthology.orchestra.run.smithi038.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2023-11-30T22:54:47.122758Z", "last_refresh": "2023-11-30T22:58:55.866934Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2023-11-30T22:54:42.674972Z", "last_refresh": "2023-11-30T22:58:52.669086Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2023-11-30T22:54:45.114633Z", "last_refresh": "2023-11-30T22:58:55.867071Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2023-11-30T22:58:56.317378Z 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": 9049, "virtual_ip": "10.0.31.38/16"}, "status": {"created": "2023-11-30T22:58:56.312786Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.38/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2023-11-30T22:54:41.668043Z", "last_refresh": "2023-11-30T22:58:52.669241Z", "running": 2, "size": 2}}, {"events": ["2023-11-30T22:55:50.759225Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi038:172.21.15.38=smithi038", "smithi167:172.21.15.167=smithi167"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2023-11-30T22:55:50.756456Z", "last_refresh": "2023-11-30T22:58:52.669318Z", "running": 2, "size": 2}}, {"events": ["2023-11-30T22:58:56.311581Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2023-11-30T22:58:56.308071Z", "ports": [12049], "running": 0, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2023-11-30T22:54:46.136630Z", "last_refresh": "2023-11-30T22:58:52.669387Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2023-11-30T22:56:33.258058Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2023-11-30T22:56:33.253117Z", "last_refresh": "2023-11-30T22:58:52.669454Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2023-11-30T22:54:43.949497Z", "last_refresh": "2023-11-30T22:58:55.867217Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2023-11-30T22:58:52.105721Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2023-11-30T22:58:59.793467Z", "ports": [8800], "running": 0, "size": 2}}] 2023-11-30T23:00:27.661 INFO:tasks.cephadm:nfs.foo has 0/1 2023-11-30T23:00:28.014 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:00:27 smithi167 conmon[87022]: cluster 2023-11-30T23:00:26.240675+0000 mgr.smithi038.ldalxq (mgr.14182) 232 : cluster [DBG] pgmap v187: 225 pgs: 225 active+clean; 7.2 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2023-11-30T23:00:28.024 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:00:27 smithi038 conmon[81956]: cluster 2023-11-30T23:00:26.240675 2023-11-30T23:00:28.024 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:00:27 smithi038 conmon[81956]: +0000 mgr.smithi038.ldalxq (mgr.14182) 232 : cluster [DBG] pgmap v187: 225 pgs: 225 active+clean; 7.2 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2023-11-30T23:00:28.662 DEBUG:teuthology.orchestra.run.smithi038:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:0dc074ce0b0b3b4f393f56dd32ef36884ebf45a9 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 3faf8b00-8fd3-11ee-95a2-87774f69a715 -- ceph orch ls -f json 2023-11-30T23:00:28.944 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:00:28 smithi038 conmon[81956]: audit 2023-11-30T23:00:27.179185+0000 mgr.smithi038.ldalxq (mgr.14182) 233 : 2023-11-30T23:00:28.945 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:00:28 smithi038 conmon[81956]: audit [DBG] from='client.14676 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-11-30T23:00:29.013 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:00:28 smithi167 conmon[87022]: audit 2023-11-30T23:00:27.179185+0000 mgr.smithi038.ldalxq (mgr.14182) 233 : audit [DBG] from='client.14676 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-11-30T23:00:30.012 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:00:29 smithi167 conmon[87022]: cluster 2023-11-30T23:00:28.241414+0000 mgr.smithi038.ldalxq (mgr.14182) 234 : cluster [DBG] 2023-11-30T23:00:30.012 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:00:29 smithi167 conmon[87022]: pgmap v188: 225 pgs: 225 active+clean; 7.2 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2023-11-30T23:00:30.024 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:00:29 smithi038 conmon[81956]: cluster 2023-11-30T23:00:28.241414+0000 mgr.smithi038.ldalxq (mgr.14182) 234 : cluster [DBG] pgmap v188: 225 pgs: 225 active+clean; 7.2 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2023-11-30T23:00:30.490 INFO:teuthology.orchestra.run.smithi038.stdout: 2023-11-30T23:00:30.490 INFO:teuthology.orchestra.run.smithi038.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2023-11-30T22:54:47.122758Z", "last_refresh": "2023-11-30T22:58:55.866934Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2023-11-30T22:54:42.674972Z", "last_refresh": "2023-11-30T22:58:52.669086Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2023-11-30T22:54:45.114633Z", "last_refresh": "2023-11-30T22:58:55.867071Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2023-11-30T22:58:56.317378Z 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": 9049, "virtual_ip": "10.0.31.38/16"}, "status": {"created": "2023-11-30T22:58:56.312786Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.38/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2023-11-30T22:54:41.668043Z", "last_refresh": "2023-11-30T22:58:52.669241Z", "running": 2, "size": 2}}, {"events": ["2023-11-30T22:55:50.759225Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi038:172.21.15.38=smithi038", "smithi167:172.21.15.167=smithi167"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2023-11-30T22:55:50.756456Z", "last_refresh": "2023-11-30T22:58:52.669318Z", "running": 2, "size": 2}}, {"events": ["2023-11-30T22:58:56.311581Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2023-11-30T22:58:56.308071Z", "ports": [12049], "running": 0, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2023-11-30T22:54:46.136630Z", "last_refresh": "2023-11-30T22:58:52.669387Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2023-11-30T22:56:33.258058Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2023-11-30T22:56:33.253117Z", "last_refresh": "2023-11-30T22:58:52.669454Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2023-11-30T22:54:43.949497Z", "last_refresh": "2023-11-30T22:58:55.867217Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2023-11-30T22:58:52.105721Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2023-11-30T22:58:59.793467Z", "ports": [8800], "running": 0, "size": 2}}] 2023-11-30T23:00:30.774 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:00:30 smithi038 conmon[81956]: cluster 2023-11-30T23:00:30.242123+0000 mgr.smithi038.ldalxq (mgr.14182) 235 : cluster [DBG] pgmap v189: 225 pgs: 225 active+clean; 7.2 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2023-11-30T23:00:30.775 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:00:30 smithi038 conmon[81956]: 2023-11-30T23:00:30.775 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:00:30 smithi038 conmon[81956]: audit 2023-11-30T23:00:30.485676+0000 mgr.smithi038.ldalxq (mgr.14182) 236 : audit [DBG] from='client.14680 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-11-30T23:00:30.915 INFO:tasks.cephadm:nfs.foo has 0/1 2023-11-30T23:00:31.012 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:00:30 smithi167 conmon[87022]: cluster 2023-11-30T23:00:30.242123+0000 mgr.smithi038.ldalxq (mgr.14182) 235 : cluster [DBG] pgmap v189: 225 pgs: 225 active+clean; 7.2 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2023-11-30T23:00:31.012 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:00:30 smithi167 conmon[87022]: audit 2023-11-30T23:00:30.485676+0000 mgr.smithi038.ldalxq (mgr.14182) 236 : audit [DBG] from='client.14680 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-11-30T23:00:31.916 DEBUG:teuthology.orchestra.run.smithi038:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:0dc074ce0b0b3b4f393f56dd32ef36884ebf45a9 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 3faf8b00-8fd3-11ee-95a2-87774f69a715 -- ceph orch ls -f json 2023-11-30T23:00:33.764 INFO:teuthology.orchestra.run.smithi038.stdout: 2023-11-30T23:00:33.764 INFO:teuthology.orchestra.run.smithi038.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2023-11-30T22:54:47.122758Z", "last_refresh": "2023-11-30T22:58:55.866934Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2023-11-30T22:54:42.674972Z", "last_refresh": "2023-11-30T22:58:52.669086Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2023-11-30T22:54:45.114633Z", "last_refresh": "2023-11-30T22:58:55.867071Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2023-11-30T22:58:56.317378Z 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": 9049, "virtual_ip": "10.0.31.38/16"}, "status": {"created": "2023-11-30T22:58:56.312786Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.38/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2023-11-30T22:54:41.668043Z", "last_refresh": "2023-11-30T22:58:52.669241Z", "running": 2, "size": 2}}, {"events": ["2023-11-30T22:55:50.759225Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi038:172.21.15.38=smithi038", "smithi167:172.21.15.167=smithi167"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2023-11-30T22:55:50.756456Z", "last_refresh": "2023-11-30T22:58:52.669318Z", "running": 2, "size": 2}}, {"events": ["2023-11-30T22:58:56.311581Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2023-11-30T22:58:56.308071Z", "ports": [12049], "running": 0, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2023-11-30T22:54:46.136630Z", "last_refresh": "2023-11-30T22:58:52.669387Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2023-11-30T22:56:33.258058Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2023-11-30T22:56:33.253117Z", "last_refresh": "2023-11-30T22:58:52.669454Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2023-11-30T22:54:43.949497Z", "last_refresh": "2023-11-30T22:58:55.867217Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2023-11-30T22:58:52.105721Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2023-11-30T22:58:59.793467Z", "ports": [8800], "running": 0, "size": 2}}] 2023-11-30T23:00:33.968 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:00:33 smithi038 conmon[81956]: cluster 2023-11-30T23:00:32.242830+0000 mgr.smithi038.ldalxq 2023-11-30T23:00:33.968 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:00:33 smithi038 conmon[81956]: (mgr.14182) 237 : cluster [DBG] pgmap v190: 225 pgs: 225 active+clean; 7.2 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2023-11-30T23:00:34.012 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:00:33 smithi167 conmon[87022]: cluster 2023-11-30T23:00:32.242830+0000 mgr.smithi038.ldalxq (mgr.14182) 237 : cluster [DBG] pgmap v190: 225 pgs: 225 active+clean; 7.2 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2023-11-30T23:00:34.278 INFO:tasks.cephadm:nfs.foo has 0/1 2023-11-30T23:00:35.012 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:00:34 smithi167 conmon[87022]: audit 2023-11-30T23:00:33.759130+0000 mgr.smithi038.ldalxq (mgr.14182) 238 : audit [DBG] from='client.14684 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-11-30T23:00:35.012 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:00:34 smithi167 conmon[87022]: cluster 2023-11-30T23:00: 2023-11-30T23:00:35.012 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:00:34 smithi167 conmon[87022]: 34.243552+0000 mgr.smithi038.ldalxq (mgr.14182) 239 : cluster [DBG] pgmap v191: 225 pgs: 225 active+clean; 7.2 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2023-11-30T23:00:35.024 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:00:34 smithi038 conmon[81956]: audit 2023-11-30T23:00:33.759130+0000 mgr.smithi038.ldalxq (mgr.14182) 2023-11-30T23:00:35.025 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:00:34 smithi038 conmon[81956]: 238 : audit [DBG] from='client.14684 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-11-30T23:00:35.025 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:00:34 smithi038 conmon[81956]: cluster 2023-11-30T23:00:34.243552+0000 mgr.smithi038.ldalxq (mgr.14182) 239 : cluster [DBG] pgmap v191: 225 pgs: 225 active+clean; 7.2 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2023-11-30T23:00:35.279 DEBUG:teuthology.orchestra.run.smithi038:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:0dc074ce0b0b3b4f393f56dd32ef36884ebf45a9 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 3faf8b00-8fd3-11ee-95a2-87774f69a715 -- ceph orch ls -f json 2023-11-30T23:00:37.127 INFO:teuthology.orchestra.run.smithi038.stdout: 2023-11-30T23:00:37.128 INFO:teuthology.orchestra.run.smithi038.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2023-11-30T22:54:47.122758Z", "last_refresh": "2023-11-30T22:58:55.866934Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2023-11-30T22:54:42.674972Z", "last_refresh": "2023-11-30T22:58:52.669086Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2023-11-30T22:54:45.114633Z", "last_refresh": "2023-11-30T22:58:55.867071Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2023-11-30T22:58:56.317378Z 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": 9049, "virtual_ip": "10.0.31.38/16"}, "status": {"created": "2023-11-30T22:58:56.312786Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.38/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2023-11-30T22:54:41.668043Z", "last_refresh": "2023-11-30T22:58:52.669241Z", "running": 2, "size": 2}}, {"events": ["2023-11-30T22:55:50.759225Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi038:172.21.15.38=smithi038", "smithi167:172.21.15.167=smithi167"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2023-11-30T22:55:50.756456Z", "last_refresh": "2023-11-30T22:58:52.669318Z", "running": 2, "size": 2}}, {"events": ["2023-11-30T22:58:56.311581Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2023-11-30T22:58:56.308071Z", "ports": [12049], "running": 0, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2023-11-30T22:54:46.136630Z", "last_refresh": "2023-11-30T22:58:52.669387Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2023-11-30T22:56:33.258058Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2023-11-30T22:56:33.253117Z", "last_refresh": "2023-11-30T22:58:52.669454Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2023-11-30T22:54:43.949497Z", "last_refresh": "2023-11-30T22:58:55.867217Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2023-11-30T22:58:52.105721Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2023-11-30T22:58:59.793467Z", "ports": [8800], "running": 0, "size": 2}}] 2023-11-30T23:00:37.636 INFO:tasks.cephadm:nfs.foo has 0/1 2023-11-30T23:00:38.012 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:00:37 smithi167 conmon[87022]: cluster 2023-11-30T23:00:36.244229+0000 mgr.smithi038.ldalxq (mgr.14182) 240 : cluster [DBG] pgmap v192: 225 pgs: 225 active+clean; 7.2 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2023-11-30T23:00:38.024 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:00:37 smithi038 conmon[81956]: cluster 2023-11-30T23:00:36.244229+0000 mgr.smithi038.ldalxq (mgr.14182) 240 : cluster [DBG] pgmap v192: 225 pgs: 225 active+clean; 7.2 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2023-11-30T23:00:38.636 DEBUG:teuthology.orchestra.run.smithi038:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:0dc074ce0b0b3b4f393f56dd32ef36884ebf45a9 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 3faf8b00-8fd3-11ee-95a2-87774f69a715 -- ceph orch ls -f json 2023-11-30T23:00:38.944 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:00:38 smithi038 conmon[81956]: audit 2023-11-30T23:00:37.123892+0000 mgr.smithi038.ldalxq (mgr.14182) 241 : audit [DBG] from='client.14688 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-11-30T23:00:38.944 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:00:38 smithi038 conmon[81956]: cluster 2023-11-30T23:00:38.244868+0000 mgr.smithi038.ldalxq (mgr.14182) 242 : cluster [DBG] pgmap v193: 225 pgs: 225 active+clean; 7.2 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2023-11-30T23:00:39.012 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:00:38 smithi167 conmon[87022]: audit 2023-11-30T23:00:37.123892+0000 mgr.smithi038.ldalxq (mgr.14182) 241 : audit [DBG] from='client.14688 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-11-30T23:00:39.012 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:00:38 smithi167 conmon[87022]: cluster 2023-11-30T23:00:39.012 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:00:38 smithi167 conmon[87022]: 2023-11-30T23:00:38.244868+0000 mgr.smithi038.ldalxq (mgr.14182) 242 : cluster [DBG] pgmap v193: 225 pgs: 225 active+clean; 7.2 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2023-11-30T23:00:40.511 INFO:teuthology.orchestra.run.smithi038.stdout: 2023-11-30T23:00:40.511 INFO:teuthology.orchestra.run.smithi038.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2023-11-30T22:54:47.122758Z", "last_refresh": "2023-11-30T22:58:55.866934Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2023-11-30T22:54:42.674972Z", "last_refresh": "2023-11-30T22:58:52.669086Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2023-11-30T22:54:45.114633Z", "last_refresh": "2023-11-30T22:58:55.867071Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2023-11-30T22:58:56.317378Z 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": 9049, "virtual_ip": "10.0.31.38/16"}, "status": {"created": "2023-11-30T22:58:56.312786Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.38/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2023-11-30T22:54:41.668043Z", "last_refresh": "2023-11-30T22:58:52.669241Z", "running": 2, "size": 2}}, {"events": ["2023-11-30T22:55:50.759225Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi038:172.21.15.38=smithi038", "smithi167:172.21.15.167=smithi167"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2023-11-30T22:55:50.756456Z", "last_refresh": "2023-11-30T22:58:52.669318Z", "running": 2, "size": 2}}, {"events": ["2023-11-30T22:58:56.311581Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2023-11-30T22:58:56.308071Z", "ports": [12049], "running": 0, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2023-11-30T22:54:46.136630Z", "last_refresh": "2023-11-30T22:58:52.669387Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2023-11-30T22:56:33.258058Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2023-11-30T22:56:33.253117Z", "last_refresh": "2023-11-30T22:58:52.669454Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2023-11-30T22:54:43.949497Z", "last_refresh": "2023-11-30T22:58:55.867217Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2023-11-30T22:58:52.105721Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2023-11-30T22:58:59.793467Z", "ports": [8800], "running": 0, "size": 2}}] 2023-11-30T23:00:40.998 INFO:tasks.cephadm:nfs.foo has 0/1 2023-11-30T23:00:41.762 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:00:41 smithi167 conmon[87022]: cluster 2023-11-30T23:00:40.245592+0000 mgr.smithi038.ldalxq (mgr.14182) 243 : cluster [DBG] pgmap v194: 225 pgs: 225 active+clean; 7.2 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2023-11-30T23:00:41.762 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:00:41 smithi167 conmon[87022]: 2023-11-30T23:00:41.762 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:00:41 smithi167 conmon[87022]: audit 2023-11-30T23:00:40.507137+0000 mgr.smithi038.ldalxq (mgr.14182) 244 : audit [DBG] from='client.14692 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-11-30T23:00:41.774 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:00:41 smithi038 conmon[81956]: cluster 2023-11-30T23:00:40.245592+0000 mgr.smithi038.ldalxq (mgr.14182) 243 : cluster [DBG] pgmap v194: 225 pgs: 225 active+clean; 7.2 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2023-11-30T23:00:41.774 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:00:41 smithi038 conmon[81956]: audit 2023-11-30T23:00:40.507137+0000 mgr.smithi038.ldalxq (mgr.14182) 244 : audit [DBG] from='client.14692 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-11-30T23:00:41.999 DEBUG:teuthology.orchestra.run.smithi038:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:0dc074ce0b0b3b4f393f56dd32ef36884ebf45a9 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 3faf8b00-8fd3-11ee-95a2-87774f69a715 -- ceph orch ls -f json 2023-11-30T23:00:43.775 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:00:43 smithi038 conmon[81956]: cluster 2023-11-30T23:00:42.246238+0000 mgr.smithi038.ldalxq (mgr.14182) 245 : cluster [DBG] pgmap v195: 225 pgs: 225 active+clean; 7.2 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2023-11-30T23:00:43.833 INFO:teuthology.orchestra.run.smithi038.stdout: 2023-11-30T23:00:43.833 INFO:teuthology.orchestra.run.smithi038.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2023-11-30T22:54:47.122758Z", "last_refresh": "2023-11-30T22:58:55.866934Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2023-11-30T22:54:42.674972Z", "last_refresh": "2023-11-30T22:58:52.669086Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2023-11-30T22:54:45.114633Z", "last_refresh": "2023-11-30T22:58:55.867071Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2023-11-30T22:58:56.317378Z 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": 9049, "virtual_ip": "10.0.31.38/16"}, "status": {"created": "2023-11-30T22:58:56.312786Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.38/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2023-11-30T22:54:41.668043Z", "last_refresh": "2023-11-30T22:58:52.669241Z", "running": 2, "size": 2}}, {"events": ["2023-11-30T22:55:50.759225Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi038:172.21.15.38=smithi038", "smithi167:172.21.15.167=smithi167"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2023-11-30T22:55:50.756456Z", "last_refresh": "2023-11-30T22:58:52.669318Z", "running": 2, "size": 2}}, {"events": ["2023-11-30T22:58:56.311581Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2023-11-30T22:58:56.308071Z", "ports": [12049], "running": 0, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2023-11-30T22:54:46.136630Z", "last_refresh": "2023-11-30T22:58:52.669387Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2023-11-30T22:56:33.258058Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2023-11-30T22:56:33.253117Z", "last_refresh": "2023-11-30T22:58:52.669454Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2023-11-30T22:54:43.949497Z", "last_refresh": "2023-11-30T22:58:55.867217Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2023-11-30T22:58:52.105721Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2023-11-30T22:58:59.793467Z", "ports": [8800], "running": 0, "size": 2}}] 2023-11-30T23:00:44.012 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:00:43 smithi167 conmon[87022]: cluster 2023-11-30T23:00:42.246238+0000 mgr.smithi038.ldalxq (mgr.14182) 245 : cluster [DBG] pgmap v195: 225 pgs: 225 active+clean; 7.2 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2023-11-30T23:00:44.012 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:00:43 smithi167 conmon[87022]: 2023-11-30T23:00:44.354 INFO:tasks.cephadm:nfs.foo has 0/1 2023-11-30T23:00:45.012 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:00:44 smithi167 conmon[87022]: audit 2023-11-30T23:00:43.830058+0000 mgr.smithi038.ldalxq (mgr.14182) 246 : audit [DBG] from='client.14696 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-11-30T23:00:45.012 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:00:44 smithi167 conmon[87022]: cluster 2023-11-30T23:00:44.246786+0000 mgr.smithi038.ldalxq (mgr.14182) 247 : cluster [DBG] pgmap v196: 225 pgs: 225 active+clean; 7.2 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2023-11-30T23:00:45.026 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:00:44 smithi038 conmon[81956]: audit 2023-11-30T23:00:43.830058+0000 mgr.smithi038.ldalxq (mgr 2023-11-30T23:00:45.026 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:00:44 smithi038 conmon[81956]: .14182) 246 : audit [DBG] from='client.14696 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-11-30T23:00:45.026 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:00:44 smithi038 conmon[81956]: cluster 2023-11-30T23:00:44.246786+0000 mgr.smithi038.ldalxq (mgr.14182) 247 : cluster [DBG] pgmap v196: 225 pgs: 225 active+clean; 7.2 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2023-11-30T23:00:45.355 DEBUG:teuthology.orchestra.run.smithi038:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:0dc074ce0b0b3b4f393f56dd32ef36884ebf45a9 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 3faf8b00-8fd3-11ee-95a2-87774f69a715 -- ceph orch ls -f json 2023-11-30T23:00:47.190 INFO:teuthology.orchestra.run.smithi038.stdout: 2023-11-30T23:00:47.191 INFO:teuthology.orchestra.run.smithi038.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2023-11-30T22:54:47.122758Z", "last_refresh": "2023-11-30T22:58:55.866934Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2023-11-30T22:54:42.674972Z", "last_refresh": "2023-11-30T22:58:52.669086Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2023-11-30T22:54:45.114633Z", "last_refresh": "2023-11-30T22:58:55.867071Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2023-11-30T22:58:56.317378Z 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": 9049, "virtual_ip": "10.0.31.38/16"}, "status": {"created": "2023-11-30T22:58:56.312786Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.38/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2023-11-30T22:54:41.668043Z", "last_refresh": "2023-11-30T22:58:52.669241Z", "running": 2, "size": 2}}, {"events": ["2023-11-30T22:55:50.759225Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi038:172.21.15.38=smithi038", "smithi167:172.21.15.167=smithi167"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2023-11-30T22:55:50.756456Z", "last_refresh": "2023-11-30T22:58:52.669318Z", "running": 2, "size": 2}}, {"events": ["2023-11-30T22:58:56.311581Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2023-11-30T22:58:56.308071Z", "ports": [12049], "running": 0, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2023-11-30T22:54:46.136630Z", "last_refresh": "2023-11-30T22:58:52.669387Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2023-11-30T22:56:33.258058Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2023-11-30T22:56:33.253117Z", "last_refresh": "2023-11-30T22:58:52.669454Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2023-11-30T22:54:43.949497Z", "last_refresh": "2023-11-30T22:58:55.867217Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2023-11-30T22:58:52.105721Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2023-11-30T22:58:59.793467Z", "ports": [8800], "running": 0, "size": 2}}] 2023-11-30T23:00:47.617 INFO:tasks.cephadm:nfs.foo has 0/1 2023-11-30T23:00:48.012 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:00:47 smithi167 conmon[87022]: cluster 2023-11-30T23:00:46.247626+0000 mgr.smithi038.ldalxq (mgr.14182) 248 : cluster [DBG] 2023-11-30T23:00:48.012 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:00:47 smithi167 conmon[87022]: pgmap v197: 225 pgs: 225 active+clean; 7.2 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2023-11-30T23:00:48.023 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:00:47 smithi038 conmon[81956]: cluster 2023-11-30T23:00:46.247626+0000 mgr.smithi038.ldalxq (mgr.14182) 248 : cluster [DBG] pgmap v197: 225 pgs: 225 active+clean; 7.2 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2023-11-30T23:00:48.618 DEBUG:teuthology.orchestra.run.smithi038:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:0dc074ce0b0b3b4f393f56dd32ef36884ebf45a9 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 3faf8b00-8fd3-11ee-95a2-87774f69a715 -- ceph orch ls -f json 2023-11-30T23:00:48.944 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:00:48 smithi038 conmon[81956]: audit 2023-11-30T23:00:47.184635+0000 mgr.smithi038.ldalxq (mgr.14182) 249 2023-11-30T23:00:48.944 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:00:48 smithi038 conmon[81956]: : audit [DBG] from='client.14700 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-11-30T23:00:49.019 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:00:48 smithi167 conmon[87022]: audit 2023-11-30T23:00:47.184635+0000 mgr.smithi038.ldalxq (mgr.14182) 249 : audit [DBG] from='client.14700 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-11-30T23:00:50.012 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:00:49 smithi167 conmon[87022]: cluster 2023-11-30T23:00:48.248246+0000 mgr.smithi038.ldalxq (mgr.14182) 250 : cluster [DBG] pgmap v198: 225 pgs: 225 active+clean; 7.2 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2023-11-30T23:00:50.012 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:00:49 smithi167 conmon[87022]: 2023-11-30T23:00:50.023 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:00:49 smithi038 conmon[81956]: cluster 2023-11-30T23:00:48.248246+0000 mgr.smithi038.ldalxq 2023-11-30T23:00:50.024 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:00:49 smithi038 conmon[81956]: (mgr.14182) 250 : cluster [DBG] pgmap v198: 225 pgs: 225 active+clean; 7.2 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2023-11-30T23:00:50.442 INFO:teuthology.orchestra.run.smithi038.stdout: 2023-11-30T23:00:50.442 INFO:teuthology.orchestra.run.smithi038.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2023-11-30T22:54:47.122758Z", "last_refresh": "2023-11-30T22:58:55.866934Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2023-11-30T22:54:42.674972Z", "last_refresh": "2023-11-30T22:58:52.669086Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2023-11-30T22:54:45.114633Z", "last_refresh": "2023-11-30T22:58:55.867071Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2023-11-30T22:58:56.317378Z 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": 9049, "virtual_ip": "10.0.31.38/16"}, "status": {"created": "2023-11-30T22:58:56.312786Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.38/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2023-11-30T22:54:41.668043Z", "last_refresh": "2023-11-30T22:58:52.669241Z", "running": 2, "size": 2}}, {"events": ["2023-11-30T22:55:50.759225Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi038:172.21.15.38=smithi038", "smithi167:172.21.15.167=smithi167"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2023-11-30T22:55:50.756456Z", "last_refresh": "2023-11-30T22:58:52.669318Z", "running": 2, "size": 2}}, {"events": ["2023-11-30T22:58:56.311581Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2023-11-30T22:58:56.308071Z", "ports": [12049], "running": 0, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2023-11-30T22:54:46.136630Z", "last_refresh": "2023-11-30T22:58:52.669387Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2023-11-30T22:56:33.258058Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2023-11-30T22:56:33.253117Z", "last_refresh": "2023-11-30T22:58:52.669454Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2023-11-30T22:54:43.949497Z", "last_refresh": "2023-11-30T22:58:55.867217Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2023-11-30T22:58:52.105721Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2023-11-30T22:58:59.793467Z", "ports": [8800], "running": 0, "size": 2}}] 2023-11-30T23:00:50.774 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:00:50 smithi038 conmon[81956]: cluster 2023-11-30T23:00:50.249058+0000 mgr.smithi038.ldalxq (mgr.14182) 251 : cluster [DBG] pgmap v199: 225 pgs: 225 active+clean; 7.2 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2023-11-30T23:00:50.774 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:00:50 smithi038 conmon[81956]: audit 2023-11-30T23:00:50.438736+0000 mgr.smithi038.ldalxq (mgr.14182) 252 : audit [DBG] from='client.14704 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-11-30T23:00:50.882 INFO:tasks.cephadm:nfs.foo has 0/1 2023-11-30T23:00:51.012 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:00:50 smithi167 conmon[87022]: cluster 2023-11-30T23:00:50.249058+0000 mgr.smithi038.ldalxq (mgr.14182) 251 : cluster [DBG] pgmap v199: 225 pgs: 225 active+clean; 7.2 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2023-11-30T23:00:51.012 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:00:50 smithi167 conmon[87022]: audit 2023-11-30T23:00:50.438736+0000 mgr.smithi038.ldalxq (mgr.14182) 252 : audit [DBG] from='client.14704 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-11-30T23:00:51.883 DEBUG:teuthology.orchestra.run.smithi038:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:0dc074ce0b0b3b4f393f56dd32ef36884ebf45a9 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 3faf8b00-8fd3-11ee-95a2-87774f69a715 -- ceph orch ls -f json 2023-11-30T23:00:52.774 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:00:52 smithi038 conmon[81956]: cluster 2023-11-30T23:00:52.249533+0000 mgr.smithi038.ldalxq (mgr.14182) 253 : cluster [DBG] pgmap v200: 225 pgs: 225 active+clean; 7.2 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2023-11-30T23:00:53.014 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:00:52 smithi167 conmon[87022]: cluster 2023-11-30T23:00:52.249533+0000 mgr.smithi038.ldalxq (mgr.14182) 253 : cluster [DBG] 2023-11-30T23:00:53.015 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:00:52 smithi167 conmon[87022]: pgmap v200: 225 pgs: 225 active+clean; 7.2 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2023-11-30T23:00:53.772 INFO:teuthology.orchestra.run.smithi038.stdout: 2023-11-30T23:00:53.772 INFO:teuthology.orchestra.run.smithi038.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2023-11-30T22:54:47.122758Z", "last_refresh": "2023-11-30T22:58:55.866934Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2023-11-30T22:54:42.674972Z", "last_refresh": "2023-11-30T22:58:52.669086Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2023-11-30T22:54:45.114633Z", "last_refresh": "2023-11-30T22:58:55.867071Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2023-11-30T22:58:56.317378Z 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": 9049, "virtual_ip": "10.0.31.38/16"}, "status": {"created": "2023-11-30T22:58:56.312786Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.38/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2023-11-30T22:54:41.668043Z", "last_refresh": "2023-11-30T22:58:52.669241Z", "running": 2, "size": 2}}, {"events": ["2023-11-30T22:55:50.759225Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi038:172.21.15.38=smithi038", "smithi167:172.21.15.167=smithi167"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2023-11-30T22:55:50.756456Z", "last_refresh": "2023-11-30T22:58:52.669318Z", "running": 2, "size": 2}}, {"events": ["2023-11-30T22:58:56.311581Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2023-11-30T22:58:56.308071Z", "ports": [12049], "running": 0, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2023-11-30T22:54:46.136630Z", "last_refresh": "2023-11-30T22:58:52.669387Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2023-11-30T22:56:33.258058Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2023-11-30T22:56:33.253117Z", "last_refresh": "2023-11-30T22:58:52.669454Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2023-11-30T22:54:43.949497Z", "last_refresh": "2023-11-30T22:58:55.867217Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2023-11-30T22:58:52.105721Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2023-11-30T22:58:59.793467Z", "ports": [8800], "running": 0, "size": 2}}] 2023-11-30T23:00:54.245 INFO:tasks.cephadm:nfs.foo has 0/1 2023-11-30T23:00:55.246 DEBUG:teuthology.orchestra.run.smithi038:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:0dc074ce0b0b3b4f393f56dd32ef36884ebf45a9 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 3faf8b00-8fd3-11ee-95a2-87774f69a715 -- ceph orch ls -f json 2023-11-30T23:00:55.762 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:00:55 smithi167 conmon[87022]: audit 2023-11-30T23:00:53.768364+0000 mgr.smithi038.ldalxq (mgr.14182) 254 : audit [DBG] from='client.14708 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-11-30T23:00:55.762 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:00:55 smithi167 conmon[87022]: cluster 2023-11-30T23:00:54. 2023-11-30T23:00:55.762 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:00:55 smithi167 conmon[87022]: 250225+0000 mgr.smithi038.ldalxq (mgr.14182) 255 : cluster [DBG] pgmap v201: 225 pgs: 225 active+clean; 7.2 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2023-11-30T23:00:55.774 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:00:55 smithi038 conmon[81956]: audit 2023-11-30T23:00:53.768364+0000 mgr.smithi038.ldalxq (mgr.14182) 254 : audit [DBG] 2023-11-30T23:00:55.774 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:00:55 smithi038 conmon[81956]: from='client.14708 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-11-30T23:00:55.774 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:00:55 smithi038 conmon[81956]: cluster 2023-11-30T23:00:54.250225+0000 mgr.smithi038.ldalxq (mgr.14182) 255 : cluster [DBG] pgmap v201: 225 pgs: 225 active+clean; 7.2 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2023-11-30T23:00:57.124 INFO:teuthology.orchestra.run.smithi038.stdout: 2023-11-30T23:00:57.124 INFO:teuthology.orchestra.run.smithi038.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2023-11-30T22:54:47.122758Z", "last_refresh": "2023-11-30T22:58:55.866934Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2023-11-30T22:54:42.674972Z", "last_refresh": "2023-11-30T22:58:52.669086Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2023-11-30T22:54:45.114633Z", "last_refresh": "2023-11-30T22:58:55.867071Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2023-11-30T22:58:56.317378Z 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": 9049, "virtual_ip": "10.0.31.38/16"}, "status": {"created": "2023-11-30T22:58:56.312786Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.38/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2023-11-30T22:54:41.668043Z", "last_refresh": "2023-11-30T22:58:52.669241Z", "running": 2, "size": 2}}, {"events": ["2023-11-30T22:55:50.759225Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi038:172.21.15.38=smithi038", "smithi167:172.21.15.167=smithi167"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2023-11-30T22:55:50.756456Z", "last_refresh": "2023-11-30T22:58:52.669318Z", "running": 2, "size": 2}}, {"events": ["2023-11-30T22:58:56.311581Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2023-11-30T22:58:56.308071Z", "ports": [12049], "running": 0, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2023-11-30T22:54:46.136630Z", "last_refresh": "2023-11-30T22:58:52.669387Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2023-11-30T22:56:33.258058Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2023-11-30T22:56:33.253117Z", "last_refresh": "2023-11-30T22:58:52.669454Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2023-11-30T22:54:43.949497Z", "last_refresh": "2023-11-30T22:58:55.867217Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2023-11-30T22:58:52.105721Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2023-11-30T22:58:59.793467Z", "ports": [8800], "running": 0, "size": 2}}] 2023-11-30T23:00:57.524 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:00:57 smithi038 conmon[81956]: cluster 2023-11-30T23:00:56.251070+0000 mgr.smithi038.ldalxq (mgr.14182) 256 : cluster [DBG] pgmap v202: 225 pgs: 225 active+clean; 7.2 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2023-11-30T23:00:57.613 INFO:tasks.cephadm:nfs.foo has 0/1 2023-11-30T23:00:57.762 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:00:57 smithi167 conmon[87022]: cluster 2023-11-30T23:00:56.251070+0000 mgr.smithi038.ldalxq (mgr.14182) 256 : cluster [DBG] pgmap v202: 225 pgs: 225 active+clean; 7.2 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2023-11-30T23:00:57.762 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:00:57 smithi167 conmon[87022]: 2023-11-30T23:00:58.614 DEBUG:teuthology.orchestra.run.smithi038:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:0dc074ce0b0b3b4f393f56dd32ef36884ebf45a9 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 3faf8b00-8fd3-11ee-95a2-87774f69a715 -- ceph orch ls -f json 2023-11-30T23:00:58.647 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:00:58 smithi038 conmon[81956]: audit 2023-11-30T23:00:57.119529+0000 mgr.smithi038.ldalxq (mgr.14182) 257 : audit [DBG] from='client.14712 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-11-30T23:00:58.762 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:00:58 smithi167 conmon[87022]: audit 2023-11-30T23:00:57.119529+0000 mgr.smithi038.ldalxq (mgr.14182) 257 : audit [DBG] from='client.14712 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-11-30T23:00:59.524 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:00:59 smithi038 conmon[81956]: cluster 2023-11-30T23:00:58.251746+0000 mgr.smithi038.ldalxq (mgr.14182 2023-11-30T23:00:59.524 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:00:59 smithi038 conmon[81956]: ) 258 : cluster [DBG] pgmap v203: 225 pgs: 225 active+clean; 7.2 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2023-11-30T23:00:59.761 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:00:59 smithi167 conmon[87022]: cluster 2023-11-30T23:00:58.251746+0000 mgr.smithi038.ldalxq (mgr.14182) 258 : cluster [DBG] pgmap v203: 225 pgs: 225 active+clean; 7.2 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2023-11-30T23:01:00.416 INFO:teuthology.orchestra.run.smithi038.stdout: 2023-11-30T23:01:00.417 INFO:teuthology.orchestra.run.smithi038.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2023-11-30T22:54:47.122758Z", "last_refresh": "2023-11-30T22:58:55.866934Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2023-11-30T22:54:42.674972Z", "last_refresh": "2023-11-30T22:58:52.669086Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2023-11-30T22:54:45.114633Z", "last_refresh": "2023-11-30T22:58:55.867071Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2023-11-30T22:58:56.317378Z 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": 9049, "virtual_ip": "10.0.31.38/16"}, "status": {"created": "2023-11-30T22:58:56.312786Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.38/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2023-11-30T22:54:41.668043Z", "last_refresh": "2023-11-30T22:58:52.669241Z", "running": 2, "size": 2}}, {"events": ["2023-11-30T22:55:50.759225Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi038:172.21.15.38=smithi038", "smithi167:172.21.15.167=smithi167"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2023-11-30T22:55:50.756456Z", "last_refresh": "2023-11-30T22:58:52.669318Z", "running": 2, "size": 2}}, {"events": ["2023-11-30T22:58:56.311581Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2023-11-30T22:58:56.308071Z", "ports": [12049], "running": 0, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2023-11-30T22:54:46.136630Z", "last_refresh": "2023-11-30T22:58:52.669387Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2023-11-30T22:56:33.258058Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2023-11-30T22:56:33.253117Z", "last_refresh": "2023-11-30T22:58:52.669454Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2023-11-30T22:54:43.949497Z", "last_refresh": "2023-11-30T22:58:55.867217Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2023-11-30T22:58:52.105721Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2023-11-30T22:58:59.793467Z", "ports": [8800], "running": 0, "size": 2}}] 2023-11-30T23:01:00.866 INFO:tasks.cephadm:nfs.foo has 0/1 2023-11-30T23:01:01.524 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:01:01 smithi038 conmon[81956]: cluster 2023-11-30T23:01:00.252420+0000 mgr.smithi038.ldalxq (mgr.14182) 259 : cluster [DBG] pgmap v204: 225 pgs: 225 active+clean; 7.2 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2023-11-30T23:01:01.524 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:01:01 smithi038 conmon[81956]: audit 2023-11-30T23:01:00.412789+0000 mgr.smithi038.ldalxq (mgr.14182) 260 : audit [DBG] from='client.14716 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-11-30T23:01:01.762 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:01:01 smithi167 conmon[87022]: cluster 2023-11-30T23:01:00.252420+0000 mgr.smithi038.ldalxq (mgr.14182) 259 : cluster [DBG] pgmap v204: 225 pgs: 225 active+clean; 7.2 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2023-11-30T23:01:01.762 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:01:01 smithi167 conmon[87022]: 2023-11-30T23:01:01.762 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:01:01 smithi167 conmon[87022]: audit 2023-11-30T23:01:00.412789+0000 mgr.smithi038.ldalxq (mgr.14182) 260 : audit [DBG] from='client.14716 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-11-30T23:01:01.867 DEBUG:teuthology.orchestra.run.smithi038:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:0dc074ce0b0b3b4f393f56dd32ef36884ebf45a9 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 3faf8b00-8fd3-11ee-95a2-87774f69a715 -- ceph orch ls -f json 2023-11-30T23:01:02.976 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:01:02 smithi038 conmon[81956]: cluster 2023-11-30T23:01:02.252934+0000 mgr.smithi038.ldalxq (mgr.14182) 261 : cluster [DBG] pgmap v205: 225 pgs: 225 active+clean; 7.2 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2023-11-30T23:01:03.012 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:01:02 smithi167 conmon[87022]: cluster 2023-11-30T23:01:02.252934+0000 mgr.smithi038.ldalxq (mgr.14182) 261 : cluster [DBG] 2023-11-30T23:01:03.012 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:01:02 smithi167 conmon[87022]: pgmap v205: 225 pgs: 225 active+clean; 7.2 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2023-11-30T23:01:03.559 INFO:teuthology.orchestra.run.smithi038.stdout: 2023-11-30T23:01:03.559 INFO:teuthology.orchestra.run.smithi038.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2023-11-30T22:54:47.122758Z", "last_refresh": "2023-11-30T22:58:55.866934Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2023-11-30T22:54:42.674972Z", "last_refresh": "2023-11-30T22:58:52.669086Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2023-11-30T22:54:45.114633Z", "last_refresh": "2023-11-30T22:58:55.867071Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2023-11-30T22:58:56.317378Z 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": 9049, "virtual_ip": "10.0.31.38/16"}, "status": {"created": "2023-11-30T22:58:56.312786Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.38/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2023-11-30T22:54:41.668043Z", "last_refresh": "2023-11-30T22:58:52.669241Z", "running": 2, "size": 2}}, {"events": ["2023-11-30T22:55:50.759225Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi038:172.21.15.38=smithi038", "smithi167:172.21.15.167=smithi167"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2023-11-30T22:55:50.756456Z", "last_refresh": "2023-11-30T22:58:52.669318Z", "running": 2, "size": 2}}, {"events": ["2023-11-30T22:58:56.311581Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2023-11-30T22:58:56.308071Z", "ports": [12049], "running": 0, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2023-11-30T22:54:46.136630Z", "last_refresh": "2023-11-30T22:58:52.669387Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2023-11-30T22:56:33.258058Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2023-11-30T22:56:33.253117Z", "last_refresh": "2023-11-30T22:58:52.669454Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2023-11-30T22:54:43.949497Z", "last_refresh": "2023-11-30T22:58:55.867217Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2023-11-30T22:58:52.105721Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2023-11-30T22:58:59.793467Z", "ports": [8800], "running": 0, "size": 2}}] 2023-11-30T23:01:04.004 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:01:03 smithi038 conmon[81956]: audit 2023-11-30T23:01:03.554823+0000 mgr.smithi038.ldalxq 2023-11-30T23:01:04.004 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:01:03 smithi038 conmon[81956]: (mgr.14182) 262 : audit [DBG] from='client.14720 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-11-30T23:01:04.012 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:01:03 smithi167 conmon[87022]: audit 2023-11-30T23:01:03.554823+0000 mgr.smithi038.ldalxq (mgr.14182) 262 : 2023-11-30T23:01:04.012 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:01:03 smithi167 conmon[87022]: audit [DBG] from='client.14720 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-11-30T23:01:04.033 INFO:tasks.cephadm:nfs.foo has 0/1 2023-11-30T23:01:05.012 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:01:04 smithi167 conmon[87022]: cluster 2023-11-30T23:01:04.253684+0000 mgr.smithi038.ldalxq (mgr.14182) 263 : cluster [DBG] pgmap v206: 225 pgs: 225 active+clean; 7.2 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2023-11-30T23:01:05.012 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:01:04 smithi167 conmon[87022]: 2023-11-30T23:01:05.024 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:01:04 smithi038 conmon[81956]: cluster 2023-11-30T23:01:04.253684+0000 mgr.smithi038.ldalxq (mgr.14182) 263 : cluster [DBG] pgmap v206: 225 pgs: 225 active+clean; 7.2 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2023-11-30T23:01:05.033 DEBUG:teuthology.orchestra.run.smithi038:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:0dc074ce0b0b3b4f393f56dd32ef36884ebf45a9 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 3faf8b00-8fd3-11ee-95a2-87774f69a715 -- ceph orch ls -f json 2023-11-30T23:01:06.870 INFO:teuthology.orchestra.run.smithi038.stdout: 2023-11-30T23:01:06.870 INFO:teuthology.orchestra.run.smithi038.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2023-11-30T22:54:47.122758Z", "last_refresh": "2023-11-30T22:58:55.866934Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2023-11-30T22:54:42.674972Z", "last_refresh": "2023-11-30T22:58:52.669086Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2023-11-30T22:54:45.114633Z", "last_refresh": "2023-11-30T22:58:55.867071Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2023-11-30T22:58:56.317378Z 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": 9049, "virtual_ip": "10.0.31.38/16"}, "status": {"created": "2023-11-30T22:58:56.312786Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.38/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2023-11-30T22:54:41.668043Z", "last_refresh": "2023-11-30T22:58:52.669241Z", "running": 2, "size": 2}}, {"events": ["2023-11-30T22:55:50.759225Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi038:172.21.15.38=smithi038", "smithi167:172.21.15.167=smithi167"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2023-11-30T22:55:50.756456Z", "last_refresh": "2023-11-30T22:58:52.669318Z", "running": 2, "size": 2}}, {"events": ["2023-11-30T22:58:56.311581Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2023-11-30T22:58:56.308071Z", "ports": [12049], "running": 0, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2023-11-30T22:54:46.136630Z", "last_refresh": "2023-11-30T22:58:52.669387Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2023-11-30T22:56:33.258058Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2023-11-30T22:56:33.253117Z", "last_refresh": "2023-11-30T22:58:52.669454Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2023-11-30T22:54:43.949497Z", "last_refresh": "2023-11-30T22:58:55.867217Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2023-11-30T22:58:52.105721Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2023-11-30T22:58:59.793467Z", "ports": [8800], "running": 0, "size": 2}}] 2023-11-30T23:01:07.398 INFO:tasks.cephadm:nfs.foo has 0/1 2023-11-30T23:01:07.762 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:01:07 smithi167 conmon[87022]: cluster 2023-11-30T23:01:06.254358+0000 mgr.smithi038.ldalxq (mgr.14182) 264 : cluster [DBG] 2023-11-30T23:01:07.762 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:01:07 smithi167 conmon[87022]: pgmap v207: 225 pgs: 225 active+clean; 7.2 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2023-11-30T23:01:07.774 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:01:07 smithi038 conmon[81956]: cluster 2023-11-30T23:01:06.254358+0000 mgr.smithi038.ldalxq (mgr.14182) 264 : cluster [DBG] pgmap v207: 225 pgs: 225 active+clean; 7.2 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2023-11-30T23:01:08.400 DEBUG:teuthology.orchestra.run.smithi038:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:0dc074ce0b0b3b4f393f56dd32ef36884ebf45a9 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 3faf8b00-8fd3-11ee-95a2-87774f69a715 -- ceph orch ls -f json 2023-11-30T23:01:08.762 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:01:08 smithi167 conmon[87022]: audit 2023-11-30T23:01:06.866303+0000 mgr.smithi038.ldalxq (mgr.14182) 265 : audit [DBG] from='client.14724 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-11-30T23:01:08.773 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:01:08 smithi038 conmon[81956]: audit 2023-11-30T23:01:06.866303+0000 mgr.smithi038.ldalxq (mgr.14182) 265 2023-11-30T23:01:08.774 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:01:08 smithi038 conmon[81956]: : audit [DBG] from='client.14724 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-11-30T23:01:09.764 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:01:09 smithi167 conmon[87022]: cluster 2023-11-30T23:01:08.254924+0000 mgr.smithi038.ldalxq (mgr.14182 2023-11-30T23:01:09.764 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:01:09 smithi167 conmon[87022]: ) 266 : cluster [DBG] pgmap v208: 225 pgs: 225 active+clean; 7.2 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2023-11-30T23:01:09.774 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:01:09 smithi038 conmon[81956]: cluster 2023-11-30T23:01:08.254924+0000 mgr.smithi038.ldalxq (mgr.14182) 266 : cluster [DBG] pgmap v208: 225 pgs: 225 active+clean; 7.2 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2023-11-30T23:01:10.216 INFO:teuthology.orchestra.run.smithi038.stdout: 2023-11-30T23:01:10.217 INFO:teuthology.orchestra.run.smithi038.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2023-11-30T22:54:47.122758Z", "last_refresh": "2023-11-30T22:58:55.866934Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2023-11-30T22:54:42.674972Z", "last_refresh": "2023-11-30T22:58:52.669086Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2023-11-30T22:54:45.114633Z", "last_refresh": "2023-11-30T22:58:55.867071Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2023-11-30T22:58:56.317378Z 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": 9049, "virtual_ip": "10.0.31.38/16"}, "status": {"created": "2023-11-30T22:58:56.312786Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.38/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2023-11-30T22:54:41.668043Z", "last_refresh": "2023-11-30T22:58:52.669241Z", "running": 2, "size": 2}}, {"events": ["2023-11-30T22:55:50.759225Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi038:172.21.15.38=smithi038", "smithi167:172.21.15.167=smithi167"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2023-11-30T22:55:50.756456Z", "last_refresh": "2023-11-30T22:58:52.669318Z", "running": 2, "size": 2}}, {"events": ["2023-11-30T22:58:56.311581Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2023-11-30T22:58:56.308071Z", "ports": [12049], "running": 0, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2023-11-30T22:54:46.136630Z", "last_refresh": "2023-11-30T22:58:52.669387Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2023-11-30T22:56:33.258058Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2023-11-30T22:56:33.253117Z", "last_refresh": "2023-11-30T22:58:52.669454Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2023-11-30T22:54:43.949497Z", "last_refresh": "2023-11-30T22:58:55.867217Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2023-11-30T22:58:52.105721Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2023-11-30T22:58:59.793467Z", "ports": [8800], "running": 0, "size": 2}}] 2023-11-30T23:01:10.661 INFO:tasks.cephadm:nfs.foo has 0/1 2023-11-30T23:01:11.662 DEBUG:teuthology.orchestra.run.smithi038:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:0dc074ce0b0b3b4f393f56dd32ef36884ebf45a9 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 3faf8b00-8fd3-11ee-95a2-87774f69a715 -- ceph orch ls -f json 2023-11-30T23:01:11.692 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:01:11 smithi038 conmon[81956]: audit 2023-11-30T23:01:10.213203+0000 mgr.smithi038.ldalxq (mgr.14182) 267 : audit [DBG] from='client.14728 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-11-30T23:01:11.693 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:01:11 smithi038 conmon[81956]: cluster 2023-11-30T23:01:10.255639+0000 mgr.smithi038.ldalxq (mgr.14182) 268 : cluster [DBG] pgmap v209: 225 pgs: 225 active+clean; 7.2 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2023-11-30T23:01:11.762 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:01:11 smithi167 conmon[87022]: audit 2023-11-30T23:01:10.213203+0000 mgr.smithi038.ldalxq (mgr.14182) 267 : audit [DBG] from='client.14728 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-11-30T23:01:11.762 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:01:11 smithi167 conmon[87022]: 2023-11-30T23:01:11.762 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:01:11 smithi167 conmon[87022]: cluster 2023-11-30T23:01:10.255639+0000 mgr.smithi038.ldalxq (mgr.14182) 268 : cluster [DBG] pgmap v209: 225 pgs: 225 active+clean; 7.2 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2023-11-30T23:01:13.012 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:01:12 smithi167 conmon[87022]: cluster 2023-11-30T23:01:12.256121+0000 mgr.smithi038.ldalxq (mgr.14182) 269 : cluster 2023-11-30T23:01:13.012 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:01:12 smithi167 conmon[87022]: [DBG] pgmap v210: 225 pgs: 225 active+clean; 7.2 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2023-11-30T23:01:13.024 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:01:12 smithi038 conmon[81956]: cluster 2023-11-30T23:01:12.256121+0000 mgr.smithi038.ldalxq (mgr.14182) 269 : cluster [DBG] pgmap v210: 225 pgs: 225 active+clean; 7.2 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2023-11-30T23:01:13.488 INFO:teuthology.orchestra.run.smithi038.stdout: 2023-11-30T23:01:13.488 INFO:teuthology.orchestra.run.smithi038.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2023-11-30T22:54:47.122758Z", "last_refresh": "2023-11-30T22:58:55.866934Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2023-11-30T22:54:42.674972Z", "last_refresh": "2023-11-30T22:58:52.669086Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2023-11-30T22:54:45.114633Z", "last_refresh": "2023-11-30T22:58:55.867071Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2023-11-30T22:58:56.317378Z 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": 9049, "virtual_ip": "10.0.31.38/16"}, "status": {"created": "2023-11-30T22:58:56.312786Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.38/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2023-11-30T22:54:41.668043Z", "last_refresh": "2023-11-30T22:58:52.669241Z", "running": 2, "size": 2}}, {"events": ["2023-11-30T22:55:50.759225Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi038:172.21.15.38=smithi038", "smithi167:172.21.15.167=smithi167"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2023-11-30T22:55:50.756456Z", "last_refresh": "2023-11-30T22:58:52.669318Z", "running": 2, "size": 2}}, {"events": ["2023-11-30T22:58:56.311581Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2023-11-30T22:58:56.308071Z", "ports": [12049], "running": 0, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2023-11-30T22:54:46.136630Z", "last_refresh": "2023-11-30T22:58:52.669387Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2023-11-30T22:56:33.258058Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2023-11-30T22:56:33.253117Z", "last_refresh": "2023-11-30T22:58:52.669454Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2023-11-30T22:54:43.949497Z", "last_refresh": "2023-11-30T22:58:55.867217Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2023-11-30T22:58:52.105721Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2023-11-30T22:58:59.793467Z", "ports": [8800], "running": 0, "size": 2}}] 2023-11-30T23:01:13.774 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:01:13 smithi038 conmon[81956]: audit 2023-11-30T23:01:13.484358+0000 mgr.smithi038.ldalxq (mgr.14182) 270 : audit [DBG] from='client.14732 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-11-30T23:01:13.912 INFO:tasks.cephadm:nfs.foo has 0/1 2023-11-30T23:01:14.012 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:01:13 smithi167 conmon[87022]: audit 2023-11-30T23:01:13.484358+0000 mgr.smithi038.ldalxq (mgr.14182) 270 : audit [DBG] 2023-11-30T23:01:14.012 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:01:13 smithi167 conmon[87022]: from='client.14732 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-11-30T23:01:14.914 DEBUG:teuthology.orchestra.run.smithi038:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:0dc074ce0b0b3b4f393f56dd32ef36884ebf45a9 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 3faf8b00-8fd3-11ee-95a2-87774f69a715 -- ceph orch ls -f json 2023-11-30T23:01:14.945 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:01:14 smithi038 conmon[81956]: cluster 2023-11-30T23:01:14.256926+0000 mgr.smithi038.ldalxq (mgr.14182) 271 : cluster [DBG] pgmap v211: 225 pgs: 225 active+clean; 7.2 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2023-11-30T23:01:15.012 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:01:14 smithi167 conmon[87022]: cluster 2023-11-30T23:01:14.256926+0000 mgr.smithi038.ldalxq (mgr.14182) 271 : 2023-11-30T23:01:15.012 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:01:14 smithi167 conmon[87022]: cluster [DBG] pgmap v211: 225 pgs: 225 active+clean; 7.2 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2023-11-30T23:01:16.656 INFO:teuthology.orchestra.run.smithi038.stdout: 2023-11-30T23:01:16.656 INFO:teuthology.orchestra.run.smithi038.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2023-11-30T22:54:47.122758Z", "last_refresh": "2023-11-30T22:58:55.866934Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2023-11-30T22:54:42.674972Z", "last_refresh": "2023-11-30T22:58:52.669086Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2023-11-30T22:54:45.114633Z", "last_refresh": "2023-11-30T22:58:55.867071Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2023-11-30T22:58:56.317378Z 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": 9049, "virtual_ip": "10.0.31.38/16"}, "status": {"created": "2023-11-30T22:58:56.312786Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.38/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2023-11-30T22:54:41.668043Z", "last_refresh": "2023-11-30T22:58:52.669241Z", "running": 2, "size": 2}}, {"events": ["2023-11-30T22:55:50.759225Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi038:172.21.15.38=smithi038", "smithi167:172.21.15.167=smithi167"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2023-11-30T22:55:50.756456Z", "last_refresh": "2023-11-30T22:58:52.669318Z", "running": 2, "size": 2}}, {"events": ["2023-11-30T22:58:56.311581Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2023-11-30T22:58:56.308071Z", "ports": [12049], "running": 0, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2023-11-30T22:54:46.136630Z", "last_refresh": "2023-11-30T22:58:52.669387Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2023-11-30T22:56:33.258058Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2023-11-30T22:56:33.253117Z", "last_refresh": "2023-11-30T22:58:52.669454Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2023-11-30T22:54:43.949497Z", "last_refresh": "2023-11-30T22:58:55.867217Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2023-11-30T22:58:52.105721Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2023-11-30T22:58:59.793467Z", "ports": [8800], "running": 0, "size": 2}}] 2023-11-30T23:01:17.266 INFO:tasks.cephadm:nfs.foo has 0/1 2023-11-30T23:01:17.762 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:01:17 smithi167 conmon[87022]: cluster 2023-11-30T23:01:16.257603+0000 mgr.smithi038.ldalxq (mgr.14182) 272 : cluster [DBG] pgmap v212: 225 pgs: 225 active+clean; 7.2 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2023-11-30T23:01:17.762 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:01:17 smithi167 conmon[87022]: 2023-11-30T23:01:17.774 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:01:17 smithi038 conmon[81956]: cluster 2023-11-30T23:01:16.257603+0000 mgr.smithi038.ldalxq (mgr.14182) 272 : cluster [DBG] pgmap v212: 225 pgs: 225 active+clean; 7.2 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2023-11-30T23:01:18.267 DEBUG:teuthology.orchestra.run.smithi038:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:0dc074ce0b0b3b4f393f56dd32ef36884ebf45a9 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 3faf8b00-8fd3-11ee-95a2-87774f69a715 -- ceph orch ls -f json 2023-11-30T23:01:18.762 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:01:18 smithi167 conmon[87022]: audit 2023-11-30T23:01:16.652794+0000 mgr.smithi038.ldalxq (mgr.14182) 273 : audit [DBG] from='client.14736 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-11-30T23:01:18.774 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:01:18 smithi038 conmon[81956]: audit 2023-11-30T23:01:16.652794+0000 2023-11-30T23:01:18.774 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:01:18 smithi038 conmon[81956]: mgr.smithi038.ldalxq (mgr.14182) 273 : audit [DBG] from='client.14736 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-11-30T23:01:19.524 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:01:19 smithi038 conmon[81956]: cluster 2023-11-30T23:01:18.258256+0000 mgr.smithi038.ldalxq (mgr.14182) 274 : cluster [DBG] pgmap v213: 225 pgs: 225 active+clean; 7.2 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2023-11-30T23:01:19.761 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:01:19 smithi167 conmon[87022]: cluster 2023-11-30T23:01:18.258256+0000 mgr.smithi038.ldalxq (mgr. 2023-11-30T23:01:19.762 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:01:19 smithi167 conmon[87022]: 14182) 274 : cluster [DBG] pgmap v213: 225 pgs: 225 active+clean; 7.2 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2023-11-30T23:01:20.087 INFO:teuthology.orchestra.run.smithi038.stdout: 2023-11-30T23:01:20.087 INFO:teuthology.orchestra.run.smithi038.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2023-11-30T22:54:47.122758Z", "last_refresh": "2023-11-30T22:58:55.866934Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2023-11-30T22:54:42.674972Z", "last_refresh": "2023-11-30T22:58:52.669086Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2023-11-30T22:54:45.114633Z", "last_refresh": "2023-11-30T22:58:55.867071Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2023-11-30T22:58:56.317378Z 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": 9049, "virtual_ip": "10.0.31.38/16"}, "status": {"created": "2023-11-30T22:58:56.312786Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.38/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2023-11-30T22:54:41.668043Z", "last_refresh": "2023-11-30T22:58:52.669241Z", "running": 2, "size": 2}}, {"events": ["2023-11-30T22:55:50.759225Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi038:172.21.15.38=smithi038", "smithi167:172.21.15.167=smithi167"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2023-11-30T22:55:50.756456Z", "last_refresh": "2023-11-30T22:58:52.669318Z", "running": 2, "size": 2}}, {"events": ["2023-11-30T22:58:56.311581Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2023-11-30T22:58:56.308071Z", "ports": [12049], "running": 0, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2023-11-30T22:54:46.136630Z", "last_refresh": "2023-11-30T22:58:52.669387Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2023-11-30T22:56:33.258058Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2023-11-30T22:56:33.253117Z", "last_refresh": "2023-11-30T22:58:52.669454Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2023-11-30T22:54:43.949497Z", "last_refresh": "2023-11-30T22:58:55.867217Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2023-11-30T22:58:52.105721Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2023-11-30T22:58:59.793467Z", "ports": [8800], "running": 0, "size": 2}}] 2023-11-30T23:01:20.620 INFO:tasks.cephadm:nfs.foo has 0/1 2023-11-30T23:01:21.621 DEBUG:teuthology.orchestra.run.smithi038:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:0dc074ce0b0b3b4f393f56dd32ef36884ebf45a9 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 3faf8b00-8fd3-11ee-95a2-87774f69a715 -- ceph orch ls -f json 2023-11-30T23:01:21.651 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:01:21 smithi038 conmon[81956]: audit 2023-11-30T23:01:20.083643+0000 mgr.smithi038.ldalxq (mgr.14182) 275 : audit [DBG] from='client.14740 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-11-30T23:01:21.651 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:01:21 smithi038 conmon[81956]: cluster 2023-11-30T23:01:21.651 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:01:21 smithi038 conmon[81956]: 2023-11-30T23:01:20.259025+0000 mgr.smithi038.ldalxq (mgr.14182) 276 : cluster [DBG] pgmap v214: 225 pgs: 225 active+clean; 7.2 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 341 B/s rd, 0 op/s 2023-11-30T23:01:21.762 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:01:21 smithi167 conmon[87022]: audit 2023-11-30T23:01:20.083643+0000 mgr.smithi038.ldalxq (mgr.14182) 275 : audit [DBG] from='client.14740 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-11-30T23:01:21.762 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:01:21 smithi167 conmon[87022]: 2023-11-30T23:01:21.763 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:01:21 smithi167 conmon[87022]: cluster 2023-11-30T23:01:20.259025+0000 mgr.smithi038.ldalxq (mgr.14182) 276 : cluster [DBG] pgmap v214: 225 pgs: 225 active+clean; 7.2 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 341 B/s rd, 0 op/s 2023-11-30T23:01:22.986 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:01:22 smithi038 conmon[81956]: cluster 2023-11-30T23:01:22.259576+0000 mgr.smithi038.ldalxq (mgr.14182) 277 : cluster [DBG] pgmap v215: 225 pgs: 225 active+clean; 7.2 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 341 B/s rd, 0 op/s 2023-11-30T23:01:23.012 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:01:22 smithi167 conmon[87022]: cluster 2023-11-30T23:01:22.259576+0000 mgr.smithi038.ldalxq (mgr.14182) 277 : cluster [DBG] pgmap v215: 225 pgs: 225 active+clean; 7.2 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 341 B/s rd, 0 op/s 2023-11-30T23:01:23.643 INFO:teuthology.orchestra.run.smithi038.stdout: 2023-11-30T23:01:23.643 INFO:teuthology.orchestra.run.smithi038.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2023-11-30T22:54:47.122758Z", "last_refresh": "2023-11-30T22:58:55.866934Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2023-11-30T22:54:42.674972Z", "last_refresh": "2023-11-30T22:58:52.669086Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2023-11-30T22:54:45.114633Z", "last_refresh": "2023-11-30T22:58:55.867071Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2023-11-30T22:58:56.317378Z 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": 9049, "virtual_ip": "10.0.31.38/16"}, "status": {"created": "2023-11-30T22:58:56.312786Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.38/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2023-11-30T22:54:41.668043Z", "last_refresh": "2023-11-30T22:58:52.669241Z", "running": 2, "size": 2}}, {"events": ["2023-11-30T22:55:50.759225Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi038:172.21.15.38=smithi038", "smithi167:172.21.15.167=smithi167"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2023-11-30T22:55:50.756456Z", "last_refresh": "2023-11-30T22:58:52.669318Z", "running": 2, "size": 2}}, {"events": ["2023-11-30T22:58:56.311581Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2023-11-30T22:58:56.308071Z", "ports": [12049], "running": 0, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2023-11-30T22:54:46.136630Z", "last_refresh": "2023-11-30T22:58:52.669387Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2023-11-30T22:56:33.258058Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2023-11-30T22:56:33.253117Z", "last_refresh": "2023-11-30T22:58:52.669454Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2023-11-30T22:54:43.949497Z", "last_refresh": "2023-11-30T22:58:55.867217Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2023-11-30T22:58:52.105721Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2023-11-30T22:58:59.793467Z", "ports": [8800], "running": 0, "size": 2}}] 2023-11-30T23:01:24.068 INFO:tasks.cephadm:nfs.foo has 0/1 2023-11-30T23:01:25.070 DEBUG:teuthology.orchestra.run.smithi038:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:0dc074ce0b0b3b4f393f56dd32ef36884ebf45a9 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 3faf8b00-8fd3-11ee-95a2-87774f69a715 -- ceph orch ls -f json 2023-11-30T23:01:25.524 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:01:25 smithi038 conmon[81956]: audit 2023-11-30T23:01:23.638936+0000 mgr.smithi038.ldalxq (mgr.14182) 2023-11-30T23:01:25.549 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:01:25 smithi038 conmon[81956]: 278 : audit [DBG] from='client.14744 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-11-30T23:01:25.549 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:01:25 smithi038 conmon[81956]: cluster 2023-11-30T23:01:24.260440+0000 mgr.smithi038.ldalxq (mgr.14182) 279 : cluster [DBG] pgmap v216: 225 pgs: 225 active+clean; 7.2 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 426 B/s rd, 0 op/s 2023-11-30T23:01:25.762 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:01:25 smithi167 conmon[87022]: audit 2023-11-30T23:01:23.638936+0000 mgr.smithi038.ldalxq (mgr.14182) 278 : audit [DBG] 2023-11-30T23:01:25.762 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:01:25 smithi167 conmon[87022]: from='client.14744 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-11-30T23:01:25.762 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:01:25 smithi167 conmon[87022]: cluster 2023-11-30T23:01:24.260440+0000 mgr.smithi038.ldalxq (mgr.14182) 279 : cluster [DBG] pgmap v216: 225 pgs: 225 active+clean; 7.2 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 426 B/s rd, 0 op/s 2023-11-30T23:01:26.888 INFO:teuthology.orchestra.run.smithi038.stdout: 2023-11-30T23:01:26.888 INFO:teuthology.orchestra.run.smithi038.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2023-11-30T22:54:47.122758Z", "last_refresh": "2023-11-30T22:58:55.866934Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2023-11-30T22:54:42.674972Z", "last_refresh": "2023-11-30T22:58:52.669086Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2023-11-30T22:54:45.114633Z", "last_refresh": "2023-11-30T22:58:55.867071Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2023-11-30T22:58:56.317378Z 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": 9049, "virtual_ip": "10.0.31.38/16"}, "status": {"created": "2023-11-30T22:58:56.312786Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.38/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2023-11-30T22:54:41.668043Z", "last_refresh": "2023-11-30T22:58:52.669241Z", "running": 2, "size": 2}}, {"events": ["2023-11-30T22:55:50.759225Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi038:172.21.15.38=smithi038", "smithi167:172.21.15.167=smithi167"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2023-11-30T22:55:50.756456Z", "last_refresh": "2023-11-30T22:58:52.669318Z", "running": 2, "size": 2}}, {"events": ["2023-11-30T22:58:56.311581Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2023-11-30T22:58:56.308071Z", "ports": [12049], "running": 0, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2023-11-30T22:54:46.136630Z", "last_refresh": "2023-11-30T22:58:52.669387Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2023-11-30T22:56:33.258058Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2023-11-30T22:56:33.253117Z", "last_refresh": "2023-11-30T22:58:52.669454Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2023-11-30T22:54:43.949497Z", "last_refresh": "2023-11-30T22:58:55.867217Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2023-11-30T22:58:52.105721Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2023-11-30T22:58:59.793467Z", "ports": [8800], "running": 0, "size": 2}}] 2023-11-30T23:01:27.422 INFO:tasks.cephadm:nfs.foo has 0/1 2023-11-30T23:01:27.762 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:01:27 smithi167 conmon[87022]: cluster 2023-11-30T23:01:26.261104+0000 mgr.smithi038.ldalxq (mgr.14182) 280 : cluster [DBG] pgmap v217: 225 pgs: 225 active+clean; 7.2 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 341 B/s rd, 0 op/s 2023-11-30T23:01:27.774 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:01:27 smithi038 conmon[81956]: cluster 2023-11-30T23:01:26.261104+0000 mgr.smithi038.ldalxq (mgr.14182) 280 : cluster [DBG] pgmap v217: 225 pgs: 225 active+clean; 7.2 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 341 B/s rd, 0 op/s 2023-11-30T23:01:28.425 DEBUG:teuthology.orchestra.run.smithi038:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:0dc074ce0b0b3b4f393f56dd32ef36884ebf45a9 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 3faf8b00-8fd3-11ee-95a2-87774f69a715 -- ceph orch ls -f json 2023-11-30T23:01:28.762 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:01:28 smithi167 conmon[87022]: audit 2023-11-30T23:01:26.884547+0000 mgr.smithi038.ldalxq (mgr.14182) 281 : audit [DBG] from='client.14748 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-11-30T23:01:28.773 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:01:28 smithi038 conmon[81956]: audit 2023-11-30T23:01:26.884547+0000 2023-11-30T23:01:28.774 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:01:28 smithi038 conmon[81956]: mgr.smithi038.ldalxq (mgr.14182) 281 : audit [DBG] from='client.14748 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-11-30T23:01:29.762 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:01:29 smithi167 conmon[87022]: cluster 2023-11-30T23:01:28.261877+0000 mgr.smithi038.ldalxq (mgr.14182) 282 : cluster [DBG] pgmap v218: 225 pgs: 225 active+clean; 7.2 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 341 B/s rd, 0 op/s 2023-11-30T23:01:29.774 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:01:29 smithi038 conmon[81956]: cluster 2023-11-30T23:01:28.261877+0000 mgr.smithi038.ldalxq (mgr 2023-11-30T23:01:29.774 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:01:29 smithi038 conmon[81956]: .14182) 282 : cluster [DBG] pgmap v218: 225 pgs: 225 active+clean; 7.2 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 341 B/s rd, 0 op/s 2023-11-30T23:01:30.246 INFO:teuthology.orchestra.run.smithi038.stdout: 2023-11-30T23:01:30.247 INFO:teuthology.orchestra.run.smithi038.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2023-11-30T22:54:47.122758Z", "last_refresh": "2023-11-30T22:58:55.866934Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2023-11-30T22:54:42.674972Z", "last_refresh": "2023-11-30T22:58:52.669086Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2023-11-30T22:54:45.114633Z", "last_refresh": "2023-11-30T22:58:55.867071Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2023-11-30T22:58:56.317378Z 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": 9049, "virtual_ip": "10.0.31.38/16"}, "status": {"created": "2023-11-30T22:58:56.312786Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.38/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2023-11-30T22:54:41.668043Z", "last_refresh": "2023-11-30T22:58:52.669241Z", "running": 2, "size": 2}}, {"events": ["2023-11-30T22:55:50.759225Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi038:172.21.15.38=smithi038", "smithi167:172.21.15.167=smithi167"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2023-11-30T22:55:50.756456Z", "last_refresh": "2023-11-30T22:58:52.669318Z", "running": 2, "size": 2}}, {"events": ["2023-11-30T22:58:56.311581Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2023-11-30T22:58:56.308071Z", "ports": [12049], "running": 0, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2023-11-30T22:54:46.136630Z", "last_refresh": "2023-11-30T22:58:52.669387Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2023-11-30T22:56:33.258058Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2023-11-30T22:56:33.253117Z", "last_refresh": "2023-11-30T22:58:52.669454Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2023-11-30T22:54:43.949497Z", "last_refresh": "2023-11-30T22:58:55.867217Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2023-11-30T22:58:52.105721Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2023-11-30T22:58:59.793467Z", "ports": [8800], "running": 0, "size": 2}}] 2023-11-30T23:01:30.888 INFO:tasks.cephadm:nfs.foo has 0/1 2023-11-30T23:01:31.762 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:01:31 smithi167 conmon[87022]: audit 2023-11-30T23:01:30.242726+0000 mgr.smithi038.ldalxq (mgr.14182) 283 : audit [DBG] from='client.14752 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-11-30T23:01:31.762 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:01:31 smithi167 conmon[87022]: cluster 2023-11-30T23:01:30.262697+0000 mgr.smithi038.ldalxq (mgr.14182) 284 : cluster [DBG] pgmap v219: 225 pgs: 225 active+clean; 7.2 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 341 B/s rd, 0 op/s 2023-11-30T23:01:31.775 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:01:31 smithi038 conmon[81956]: audit 2023-11-30T23:01:30.242726+0000 mgr.smithi038.ldalxq (mgr.14182) 283 : audit [DBG] from='client.14752 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-11-30T23:01:31.776 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:01:31 smithi038 conmon[81956]: cluster 2023-11-30T23:01:30.262697+0000 mgr.smithi038.ldalxq (mgr.14182) 284 : cluster [DBG] pgmap v219: 225 pgs: 225 active+clean; 7.2 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 341 B/s rd, 0 op/s 2023-11-30T23:01:31.889 DEBUG:teuthology.orchestra.run.smithi038:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:0dc074ce0b0b3b4f393f56dd32ef36884ebf45a9 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 3faf8b00-8fd3-11ee-95a2-87774f69a715 -- ceph orch ls -f json 2023-11-30T23:01:32.775 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:01:32 smithi038 conmon[81956]: cluster 2023-11-30T23:01:32.263325+0000 mgr.smithi038.ldalxq (mgr.14182 2023-11-30T23:01:32.775 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:01:32 smithi038 conmon[81956]: ) 285 : cluster [DBG] pgmap v220: 225 pgs: 225 active+clean; 7.2 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2023-11-30T23:01:33.012 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:01:32 smithi167 conmon[87022]: cluster 2023-11-30T23:01:32.263325+0000 mgr.smithi038.ldalxq (mgr.14182) 285 : cluster [DBG] pgmap v220: 225 pgs: 225 active+clean; 7.2 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2023-11-30T23:01:33.629 INFO:teuthology.orchestra.run.smithi038.stdout: 2023-11-30T23:01:33.629 INFO:teuthology.orchestra.run.smithi038.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2023-11-30T22:54:47.122758Z", "last_refresh": "2023-11-30T22:58:55.866934Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2023-11-30T22:54:42.674972Z", "last_refresh": "2023-11-30T22:58:52.669086Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2023-11-30T22:54:45.114633Z", "last_refresh": "2023-11-30T22:58:55.867071Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2023-11-30T22:58:56.317378Z 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": 9049, "virtual_ip": "10.0.31.38/16"}, "status": {"created": "2023-11-30T22:58:56.312786Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.38/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2023-11-30T22:54:41.668043Z", "last_refresh": "2023-11-30T22:58:52.669241Z", "running": 2, "size": 2}}, {"events": ["2023-11-30T22:55:50.759225Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi038:172.21.15.38=smithi038", "smithi167:172.21.15.167=smithi167"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2023-11-30T22:55:50.756456Z", "last_refresh": "2023-11-30T22:58:52.669318Z", "running": 2, "size": 2}}, {"events": ["2023-11-30T22:58:56.311581Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2023-11-30T22:58:56.308071Z", "ports": [12049], "running": 0, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2023-11-30T22:54:46.136630Z", "last_refresh": "2023-11-30T22:58:52.669387Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2023-11-30T22:56:33.258058Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2023-11-30T22:56:33.253117Z", "last_refresh": "2023-11-30T22:58:52.669454Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2023-11-30T22:54:43.949497Z", "last_refresh": "2023-11-30T22:58:55.867217Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2023-11-30T22:58:52.105721Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2023-11-30T22:58:59.793467Z", "ports": [8800], "running": 0, "size": 2}}] 2023-11-30T23:01:34.018 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:01:33 smithi167 conmon[87022]: audit 2023-11-30T23:01:33.625120+0000 mgr.smithi038.ldalxq (mgr.14182) 286 : audit [DBG] from='client.14756 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-11-30T23:01:34.024 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:01:33 smithi038 conmon[81956]: audit 2023-11-30T23:01:33.625120+0000 mgr.smithi038.ldalxq (mgr.14182) 286 : audit [DBG] from='client.14756 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-11-30T23:01:34.153 INFO:tasks.cephadm:nfs.foo has 0/1 2023-11-30T23:01:35.012 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:01:34 smithi167 conmon[87022]: cluster 2023-11-30T23:01:34.264126+0000 mgr.smithi038.ldalxq (mgr.14182) 287 : cluster [DBG] pgmap v221: 225 pgs: 225 active+clean; 7.2 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2023-11-30T23:01:35.025 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:01:34 smithi038 conmon[81956]: cluster 2023-11-30T23:01:34.264126+0000 2023-11-30T23:01:35.026 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:01:34 smithi038 conmon[81956]: mgr.smithi038.ldalxq (mgr.14182) 287 : cluster [DBG] pgmap v221: 225 pgs: 225 active+clean; 7.2 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2023-11-30T23:01:35.154 DEBUG:teuthology.orchestra.run.smithi038:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:0dc074ce0b0b3b4f393f56dd32ef36884ebf45a9 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 3faf8b00-8fd3-11ee-95a2-87774f69a715 -- ceph orch ls -f json 2023-11-30T23:01:36.972 INFO:teuthology.orchestra.run.smithi038.stdout: 2023-11-30T23:01:36.972 INFO:teuthology.orchestra.run.smithi038.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2023-11-30T22:54:47.122758Z", "last_refresh": "2023-11-30T22:58:55.866934Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2023-11-30T22:54:42.674972Z", "last_refresh": "2023-11-30T22:58:52.669086Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2023-11-30T22:54:45.114633Z", "last_refresh": "2023-11-30T22:58:55.867071Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2023-11-30T22:58:56.317378Z 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": 9049, "virtual_ip": "10.0.31.38/16"}, "status": {"created": "2023-11-30T22:58:56.312786Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.38/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2023-11-30T22:54:41.668043Z", "last_refresh": "2023-11-30T22:58:52.669241Z", "running": 2, "size": 2}}, {"events": ["2023-11-30T22:55:50.759225Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi038:172.21.15.38=smithi038", "smithi167:172.21.15.167=smithi167"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2023-11-30T22:55:50.756456Z", "last_refresh": "2023-11-30T22:58:52.669318Z", "running": 2, "size": 2}}, {"events": ["2023-11-30T22:58:56.311581Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2023-11-30T22:58:56.308071Z", "ports": [12049], "running": 0, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2023-11-30T22:54:46.136630Z", "last_refresh": "2023-11-30T22:58:52.669387Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2023-11-30T22:56:33.258058Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2023-11-30T22:56:33.253117Z", "last_refresh": "2023-11-30T22:58:52.669454Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2023-11-30T22:54:43.949497Z", "last_refresh": "2023-11-30T22:58:55.867217Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2023-11-30T22:58:52.105721Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2023-11-30T22:58:59.793467Z", "ports": [8800], "running": 0, "size": 2}}] 2023-11-30T23:01:37.410 INFO:tasks.cephadm:nfs.foo has 0/1 2023-11-30T23:01:37.763 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:01:37 smithi167 conmon[87022]: cluster 2023-11-30T23:01:36.264901+0000 mgr.smithi038.ldalxq (mgr.14182) 288 : cluster [DBG] pgmap v222: 225 pgs: 225 active+clean; 7.2 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2023-11-30T23:01:37.774 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:01:37 smithi038 conmon[81956]: cluster 2023-11-30T23:01:36.264901+0000 mgr.smithi038.ldalxq (mgr.14182) 288 : cluster [DBG] pgmap v222: 225 pgs: 225 active+clean; 7.2 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2023-11-30T23:01:38.411 DEBUG:teuthology.orchestra.run.smithi038:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:0dc074ce0b0b3b4f393f56dd32ef36884ebf45a9 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 3faf8b00-8fd3-11ee-95a2-87774f69a715 -- ceph orch ls -f json 2023-11-30T23:01:38.762 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:01:38 smithi167 conmon[87022]: audit 2023-11-30T23:01:36.968793+0000 mgr.smithi038.ldalxq (mgr.14182) 289 : audit [DBG] from='client.14760 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-11-30T23:01:38.774 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:01:38 smithi038 conmon[81956]: audit 2023-11-30T23:01:36.968793+0000 mgr.smithi038.ldalxq (mgr.14182) 289 : audit [DBG] 2023-11-30T23:01:38.776 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:01:38 smithi038 conmon[81956]: from='client.14760 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-11-30T23:01:39.762 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:01:39 smithi167 conmon[87022]: cluster 2023-11-30T23:01:38.265629+0000 mgr.smithi038.ldalxq (mgr.14182) 290 : cluster [DBG] pgmap v223: 225 pgs: 225 active+clean; 7.2 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2023-11-30T23:01:39.774 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:01:39 smithi038 conmon[81956]: cluster 2023-11-30T23:01:38.265629+0000 mgr.smithi038.ldalxq (mgr. 2023-11-30T23:01:39.774 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:01:39 smithi038 conmon[81956]: 14182) 290 : cluster [DBG] pgmap v223: 225 pgs: 225 active+clean; 7.2 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2023-11-30T23:01:40.246 INFO:teuthology.orchestra.run.smithi038.stdout: 2023-11-30T23:01:43.770 INFO:teuthology.orchestra.run.smithi038.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2023-11-30T22:54:47.122758Z", "last_refresh": "2023-11-30T22:58:55.866934Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2023-11-30T22:54:42.674972Z", "last_refresh": "2023-11-30T22:58:52.669086Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2023-11-30T22:54:45.114633Z", "last_refresh": "2023-11-30T22:58:55.867071Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2023-11-30T22:58:56.317378Z 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": 9049, "virtual_ip": "10.0.31.38/16"}, "status": {"created": "2023-11-30T22:58:56.312786Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.38/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2023-11-30T22:54:41.668043Z", "last_refresh": "2023-11-30T22:58:52.669241Z", "running": 2, "size": 2}}, {"events": ["2023-11-30T22:55:50.759225Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi038:172.21.15.38=smithi038", "smithi167:172.21.15.167=smithi167"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2023-11-30T22:55:50.756456Z", "last_refresh": "2023-11-30T22:58:52.669318Z", "running": 2, "size": 2}}, {"events": ["2023-11-30T22:58:56.311581Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2023-11-30T22:58:56.308071Z", "ports": [12049], "running": 0, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2023-11-30T22:54:46.136630Z", "last_refresh": "2023-11-30T22:58:52.669387Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2023-11-30T22:56:33.258058Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2023-11-30T22:56:33.253117Z", "last_refresh": "2023-11-30T22:58:52.669454Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2023-11-30T22:54:43.949497Z", "last_refresh": "2023-11-30T22:58:55.867217Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2023-11-30T22:58:52.105721Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2023-11-30T22:58:59.793467Z", "ports": [8800], "running": 0, "size": 2}}] 2023-11-30T23:01:43.771 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:01:41 smithi167 conmon[87022]: audit 2023-11-30T23:01:40.242618+0000 mgr.smithi038.ldalxq (mgr.14182) 291 : audit [DBG] from='client.14764 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-11-30T23:01:43.771 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:01:41 smithi167 conmon[87022]: cluster 2023-11-30T23:01:40.266582+0000 mgr.smithi038.ldalxq (mgr.14182) 292 : cluster [DBG] pgmap v224: 225 pgs: 225 active+clean; 7.2 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2023-11-30T23:01:43.771 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:01:42 smithi167 conmon[87022]: cluster 2023-11-30T23:01:42.267135+0000 mgr.smithi038.ldalxq (mgr.14182) 293 : cluster [DBG] pgmap v225: 225 pgs: 225 active+clean; 7.2 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2023-11-30T23:01:43.772 INFO:tasks.cephadm:nfs.foo has 0/1 2023-11-30T23:01:43.772 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:01:41 smithi038 conmon[81956]: audit 2023-11-30T23:01:40.242618+0000 mgr.smithi038.ldalxq (mgr.14182) 2023-11-30T23:01:43.773 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:01:41 smithi038 conmon[81956]: 291 : audit [DBG] from='client.14764 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-11-30T23:01:43.773 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:01:41 smithi038 conmon[81956]: cluster 2023-11-30T23:01:40.266582+0000 mgr.smithi038.ldalxq (mgr.14182) 292 : cluster [DBG] pgmap v224: 225 pgs: 225 active+clean; 7.2 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2023-11-30T23:01:43.773 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:01:42 smithi038 conmon[81956]: cluster 2023-11-30T23:01:42.267135+0000 mgr.smithi038.ldalxq ( 2023-11-30T23:01:43.773 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:01:42 smithi038 conmon[81956]: mgr.14182) 293 : cluster [DBG] pgmap v225: 225 pgs: 225 active+clean; 7.2 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2023-11-30T23:01:44.774 DEBUG:teuthology.orchestra.run.smithi038:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:0dc074ce0b0b3b4f393f56dd32ef36884ebf45a9 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 3faf8b00-8fd3-11ee-95a2-87774f69a715 -- ceph orch ls -f json 2023-11-30T23:01:45.741 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:01:45 smithi038 conmon[81956]: cluster 2023-11-30T23:01:44.267875+0000 2023-11-30T23:01:45.741 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:01:45 smithi038 conmon[81956]: mgr.smithi038.ldalxq (mgr.14182) 294 : cluster [DBG] pgmap v226: 225 pgs: 225 active+clean; 7.2 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2023-11-30T23:01:45.762 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:01:45 smithi167 conmon[87022]: cluster 2023-11-30T23:01:44.267875+0000 mgr.smithi038.ldalxq (mgr.14182) 294 : cluster [DBG] pgmap v226: 225 pgs: 225 active+clean; 7.2 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2023-11-30T23:01:46.603 INFO:teuthology.orchestra.run.smithi038.stdout: 2023-11-30T23:01:46.603 INFO:teuthology.orchestra.run.smithi038.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2023-11-30T22:54:47.122758Z", "last_refresh": "2023-11-30T22:58:55.866934Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2023-11-30T22:54:42.674972Z", "last_refresh": "2023-11-30T22:58:52.669086Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2023-11-30T22:54:45.114633Z", "last_refresh": "2023-11-30T22:58:55.867071Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2023-11-30T22:58:56.317378Z 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": 9049, "virtual_ip": "10.0.31.38/16"}, "status": {"created": "2023-11-30T22:58:56.312786Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.38/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2023-11-30T22:54:41.668043Z", "last_refresh": "2023-11-30T22:58:52.669241Z", "running": 2, "size": 2}}, {"events": ["2023-11-30T22:55:50.759225Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi038:172.21.15.38=smithi038", "smithi167:172.21.15.167=smithi167"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2023-11-30T22:55:50.756456Z", "last_refresh": "2023-11-30T22:58:52.669318Z", "running": 2, "size": 2}}, {"events": ["2023-11-30T22:58:56.311581Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2023-11-30T22:58:56.308071Z", "ports": [12049], "running": 0, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2023-11-30T22:54:46.136630Z", "last_refresh": "2023-11-30T22:58:52.669387Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2023-11-30T22:56:33.258058Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2023-11-30T22:56:33.253117Z", "last_refresh": "2023-11-30T22:58:52.669454Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2023-11-30T22:54:43.949497Z", "last_refresh": "2023-11-30T22:58:55.867217Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2023-11-30T22:58:52.105721Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2023-11-30T22:58:59.793467Z", "ports": [8800], "running": 0, "size": 2}}] 2023-11-30T23:01:47.041 INFO:tasks.cephadm:nfs.foo has 0/1 2023-11-30T23:01:47.764 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:01:47 smithi167 conmon[87022]: cluster 2023-11-30T23:01:46.268559+0000 mgr.smithi038.ldalxq (mgr.14182) 295 : cluster [DBG] pgmap v227: 225 pgs: 225 active+clean; 7.2 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2023-11-30T23:01:47.765 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:01:47 smithi167 conmon[87022]: audit 2023-11-30T23:01:46.599740+0000 mgr.smithi038.ldalxq (mgr.14182) 296 : audit [DBG] from='client.14768 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-11-30T23:01:47.778 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:01:47 smithi038 conmon[81956]: cluster 2023-11-30T23:01:46.268559+0000 mgr.smithi038.ldalxq (mgr.14182) 295 : cluster [DBG] pgmap v227: 225 pgs: 225 active+clean; 7.2 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2023-11-30T23:01:47.778 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:01:47 smithi038 conmon[81956]: audit 2023-11-30T23:01:46.599740+0000 mgr.smithi038.ldalxq (mgr.14182) 296 : audit [DBG] from='client.14768 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-11-30T23:01:48.043 DEBUG:teuthology.orchestra.run.smithi038:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:0dc074ce0b0b3b4f393f56dd32ef36884ebf45a9 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 3faf8b00-8fd3-11ee-95a2-87774f69a715 -- ceph orch ls -f json 2023-11-30T23:01:49.763 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:01:49 smithi167 conmon[87022]: cluster 2023-11-30T23:01:48.269123+0000 mgr.smithi038.ldalxq (mgr.14182) 297 : cluster [DBG] pgmap v228: 225 pgs: 225 active+clean; 7.2 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2023-11-30T23:01:49.774 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:01:49 smithi038 conmon[81956]: cluster 2023-11-30T23:01:48.269123+0000 mgr.smithi038.ldalxq (mgr. 2023-11-30T23:01:49.774 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:01:49 smithi038 conmon[81956]: 14182) 297 : cluster [DBG] pgmap v228: 225 pgs: 225 active+clean; 7.2 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2023-11-30T23:01:49.845 INFO:teuthology.orchestra.run.smithi038.stdout: 2023-11-30T23:01:49.845 INFO:teuthology.orchestra.run.smithi038.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2023-11-30T22:54:47.122758Z", "last_refresh": "2023-11-30T22:58:55.866934Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2023-11-30T22:54:42.674972Z", "last_refresh": "2023-11-30T22:58:52.669086Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2023-11-30T22:54:45.114633Z", "last_refresh": "2023-11-30T22:58:55.867071Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2023-11-30T22:58:56.317378Z 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": 9049, "virtual_ip": "10.0.31.38/16"}, "status": {"created": "2023-11-30T22:58:56.312786Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.38/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2023-11-30T22:54:41.668043Z", "last_refresh": "2023-11-30T22:58:52.669241Z", "running": 2, "size": 2}}, {"events": ["2023-11-30T22:55:50.759225Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi038:172.21.15.38=smithi038", "smithi167:172.21.15.167=smithi167"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2023-11-30T22:55:50.756456Z", "last_refresh": "2023-11-30T22:58:52.669318Z", "running": 2, "size": 2}}, {"events": ["2023-11-30T22:58:56.311581Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2023-11-30T22:58:56.308071Z", "ports": [12049], "running": 0, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2023-11-30T22:54:46.136630Z", "last_refresh": "2023-11-30T22:58:52.669387Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2023-11-30T22:56:33.258058Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2023-11-30T22:56:33.253117Z", "last_refresh": "2023-11-30T22:58:52.669454Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2023-11-30T22:54:43.949497Z", "last_refresh": "2023-11-30T22:58:55.867217Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2023-11-30T22:58:52.105721Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2023-11-30T22:58:59.793467Z", "ports": [8800], "running": 0, "size": 2}}] 2023-11-30T23:01:50.305 INFO:tasks.cephadm:nfs.foo has 0/1 2023-11-30T23:01:51.306 DEBUG:teuthology.orchestra.run.smithi038:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:0dc074ce0b0b3b4f393f56dd32ef36884ebf45a9 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 3faf8b00-8fd3-11ee-95a2-87774f69a715 -- ceph orch ls -f json 2023-11-30T23:01:51.762 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:01:51 smithi167 conmon[87022]: audit 2023-11-30T23:01:49.841999+0000 mgr.smithi038.ldalxq (mgr.14182) 298 : audit [DBG] from='client.14772 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-11-30T23:01:51.762 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:01:51 smithi167 conmon[87022]: cluster 2023-11-30T23:01:50.269953+0000 mgr.smithi038.ldalxq (mgr.14182) 299 : cluster [DBG] pgmap v229: 225 pgs: 225 active+clean; 7.2 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2023-11-30T23:01:51.774 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:01:51 smithi038 conmon[81956]: audit 2023-11-30T23:01:49.841999+0000 mgr.smithi038.ldalxq (mgr.14182) 298 : audit [DBG] from='client.14772 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-11-30T23:01:51.774 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:01:51 smithi038 conmon[81956]: cluster 2023-11-30T23:01:50.269953+0000 mgr.smithi038.ldalxq (mgr.14182) 299 : cluster [DBG] pgmap v229: 225 pgs: 225 active+clean; 7.2 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2023-11-30T23:01:53.012 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:01:52 smithi167 conmon[87022]: cluster 2023-11-30T23:01:52.270437+0000 mgr.smithi038.ldalxq (mgr.14182) 300 : cluster [DBG] 2023-11-30T23:01:53.012 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:01:52 smithi167 conmon[87022]: pgmap v230: 225 pgs: 225 active+clean; 7.2 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2023-11-30T23:01:53.026 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:01:52 smithi038 conmon[81956]: cluster 2023-11-30T23:01:52.270437+0000 mgr.smithi038.ldalxq (mgr.14182) 300 : cluster [DBG] pgmap v230: 225 pgs: 225 active+clean; 7.2 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2023-11-30T23:01:53.043 INFO:teuthology.orchestra.run.smithi038.stdout: 2023-11-30T23:01:53.044 INFO:teuthology.orchestra.run.smithi038.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2023-11-30T22:54:47.122758Z", "last_refresh": "2023-11-30T22:58:55.866934Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2023-11-30T22:54:42.674972Z", "last_refresh": "2023-11-30T22:58:52.669086Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2023-11-30T22:54:45.114633Z", "last_refresh": "2023-11-30T22:58:55.867071Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2023-11-30T22:58:56.317378Z 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": 9049, "virtual_ip": "10.0.31.38/16"}, "status": {"created": "2023-11-30T22:58:56.312786Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.38/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2023-11-30T22:54:41.668043Z", "last_refresh": "2023-11-30T22:58:52.669241Z", "running": 2, "size": 2}}, {"events": ["2023-11-30T22:55:50.759225Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi038:172.21.15.38=smithi038", "smithi167:172.21.15.167=smithi167"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2023-11-30T22:55:50.756456Z", "last_refresh": "2023-11-30T22:58:52.669318Z", "running": 2, "size": 2}}, {"events": ["2023-11-30T22:58:56.311581Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2023-11-30T22:58:56.308071Z", "ports": [12049], "running": 0, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2023-11-30T22:54:46.136630Z", "last_refresh": "2023-11-30T22:58:52.669387Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2023-11-30T22:56:33.258058Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2023-11-30T22:56:33.253117Z", "last_refresh": "2023-11-30T22:58:52.669454Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2023-11-30T22:54:43.949497Z", "last_refresh": "2023-11-30T22:58:55.867217Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2023-11-30T22:58:52.105721Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2023-11-30T22:58:59.793467Z", "ports": [8800], "running": 0, "size": 2}}] 2023-11-30T23:01:53.572 INFO:tasks.cephadm:nfs.foo has 0/1 2023-11-30T23:01:54.012 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:01:53 smithi167 conmon[87022]: audit 2023-11-30T23:01:53.040056+0000 mgr.smithi038.ldalxq (mgr.14182) 301 : audit [DBG] 2023-11-30T23:01:54.012 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:01:53 smithi167 conmon[87022]: from='client.14776 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-11-30T23:01:54.024 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:01:53 smithi038 conmon[81956]: audit 2023-11-30T23:01:53.040056+0000 mgr.smithi038.ldalxq 2023-11-30T23:01:54.024 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:01:53 smithi038 conmon[81956]: (mgr.14182) 301 : audit [DBG] from='client.14776 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-11-30T23:01:54.574 DEBUG:teuthology.orchestra.run.smithi038:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:0dc074ce0b0b3b4f393f56dd32ef36884ebf45a9 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 3faf8b00-8fd3-11ee-95a2-87774f69a715 -- ceph orch ls -f json 2023-11-30T23:01:55.014 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:01:54 smithi167 conmon[87022]: cluster 2023-11-30T23:01:54.271116+0000 mgr.smithi038.ldalxq (mgr.14182) 302 : cluster [DBG] pgmap v231: 225 pgs: 225 active+clean; 7.2 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2023-11-30T23:01:55.024 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:01:54 smithi038 conmon[81956]: cluster 2023-11-30T23:01:54.271116+0000 mgr.smithi038.ldalxq (mgr.14182 2023-11-30T23:01:55.024 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:01:54 smithi038 conmon[81956]: ) 302 : cluster [DBG] pgmap v231: 225 pgs: 225 active+clean; 7.2 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2023-11-30T23:01:56.403 INFO:teuthology.orchestra.run.smithi038.stdout: 2023-11-30T23:01:56.403 INFO:teuthology.orchestra.run.smithi038.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2023-11-30T22:54:47.122758Z", "last_refresh": "2023-11-30T22:58:55.866934Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2023-11-30T22:54:42.674972Z", "last_refresh": "2023-11-30T22:58:52.669086Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2023-11-30T22:54:45.114633Z", "last_refresh": "2023-11-30T22:58:55.867071Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2023-11-30T22:58:56.317378Z 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": 9049, "virtual_ip": "10.0.31.38/16"}, "status": {"created": "2023-11-30T22:58:56.312786Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.38/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2023-11-30T22:54:41.668043Z", "last_refresh": "2023-11-30T22:58:52.669241Z", "running": 2, "size": 2}}, {"events": ["2023-11-30T22:55:50.759225Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi038:172.21.15.38=smithi038", "smithi167:172.21.15.167=smithi167"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2023-11-30T22:55:50.756456Z", "last_refresh": "2023-11-30T22:58:52.669318Z", "running": 2, "size": 2}}, {"events": ["2023-11-30T22:58:56.311581Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2023-11-30T22:58:56.308071Z", "ports": [12049], "running": 0, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2023-11-30T22:54:46.136630Z", "last_refresh": "2023-11-30T22:58:52.669387Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2023-11-30T22:56:33.258058Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2023-11-30T22:56:33.253117Z", "last_refresh": "2023-11-30T22:58:52.669454Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2023-11-30T22:54:43.949497Z", "last_refresh": "2023-11-30T22:58:55.867217Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2023-11-30T22:58:52.105721Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2023-11-30T22:58:59.793467Z", "ports": [8800], "running": 0, "size": 2}}] 2023-11-30T23:01:56.928 INFO:tasks.cephadm:nfs.foo has 0/1 2023-11-30T23:01:57.762 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:01:57 smithi167 conmon[87022]: cluster 2023-11-30T23:01:56.271819+0000 mgr.smithi038.ldalxq (mgr.14182) 303 : cluster [DBG] pgmap v232: 225 pgs: 225 active+clean; 7.2 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2023-11-30T23:01:57.763 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:01:57 smithi167 conmon[87022]: audit 2023-11-30T23:01:56.399504+0000 mgr.smithi038.ldalxq (mgr.14182) 304 : audit [DBG] from='client.14780 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-11-30T23:01:57.774 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:01:57 smithi038 conmon[81956]: cluster 2023-11-30T23:01:56.271819+0000 mgr.smithi038.ldalxq (mgr.14182) 303 : cluster [DBG] pgmap v232: 225 pgs: 225 active+clean; 7.2 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2023-11-30T23:01:57.774 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:01:57 smithi038 conmon[81956]: audit 2023-11-30T23:01:56.399504+0000 mgr.smithi038.ldalxq (mgr.14182) 304 : audit [DBG] from='client.14780 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-11-30T23:01:57.929 DEBUG:teuthology.orchestra.run.smithi038:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:0dc074ce0b0b3b4f393f56dd32ef36884ebf45a9 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 3faf8b00-8fd3-11ee-95a2-87774f69a715 -- ceph orch ls -f json 2023-11-30T23:01:59.762 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:01:59 smithi167 conmon[87022]: cluster 2023-11-30T23:01:58.272343+0000 mgr.smithi038.ldalxq (mgr.14182) 305 : cluster [DBG] pgmap v233: 225 pgs: 225 active+clean; 7.2 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2023-11-30T23:01:59.774 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:01:59 smithi038 conmon[81956]: cluster 2023-11-30T23:01:58.272343+0000 mgr.smithi038.ldalxq 2023-11-30T23:01:59.774 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:01:59 smithi038 conmon[81956]: (mgr.14182) 305 : cluster [DBG] pgmap v233: 225 pgs: 225 active+clean; 7.2 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2023-11-30T23:01:59.776 INFO:teuthology.orchestra.run.smithi038.stdout: 2023-11-30T23:01:59.776 INFO:teuthology.orchestra.run.smithi038.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2023-11-30T22:54:47.122758Z", "last_refresh": "2023-11-30T22:58:55.866934Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2023-11-30T22:54:42.674972Z", "last_refresh": "2023-11-30T22:58:52.669086Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2023-11-30T22:54:45.114633Z", "last_refresh": "2023-11-30T22:58:55.867071Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2023-11-30T22:58:56.317378Z 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": 9049, "virtual_ip": "10.0.31.38/16"}, "status": {"created": "2023-11-30T22:58:56.312786Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.38/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2023-11-30T22:54:41.668043Z", "last_refresh": "2023-11-30T22:58:52.669241Z", "running": 2, "size": 2}}, {"events": ["2023-11-30T22:55:50.759225Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi038:172.21.15.38=smithi038", "smithi167:172.21.15.167=smithi167"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2023-11-30T22:55:50.756456Z", "last_refresh": "2023-11-30T22:58:52.669318Z", "running": 2, "size": 2}}, {"events": ["2023-11-30T22:58:56.311581Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2023-11-30T22:58:56.308071Z", "ports": [12049], "running": 0, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2023-11-30T22:54:46.136630Z", "last_refresh": "2023-11-30T22:58:52.669387Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2023-11-30T22:56:33.258058Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2023-11-30T22:56:33.253117Z", "last_refresh": "2023-11-30T22:58:52.669454Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2023-11-30T22:54:43.949497Z", "last_refresh": "2023-11-30T22:58:55.867217Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2023-11-30T22:58:52.105721Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2023-11-30T22:58:59.793467Z", "ports": [8800], "running": 0, "size": 2}}] 2023-11-30T23:02:00.193 INFO:tasks.cephadm:nfs.foo has 0/1 2023-11-30T23:02:01.194 DEBUG:teuthology.orchestra.run.smithi038:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:0dc074ce0b0b3b4f393f56dd32ef36884ebf45a9 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 3faf8b00-8fd3-11ee-95a2-87774f69a715 -- ceph orch ls -f json 2023-11-30T23:02:01.524 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:02:01 smithi038 conmon[81956]: audit 2023-11-30T23:01:59.773222+0000 mgr.smithi038.ldalxq (mgr.14182) 306 : audit [DBG] from='client.14784 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-11-30T23:02:01.524 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:02:01 smithi038 conmon[81956]: cluster 2023-11-30T23:02:00.273106+0000 mgr.smithi038.ldalxq (mgr.14182) 307 : cluster [DBG] pgmap v234: 225 pgs: 225 active+clean; 7.2 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2023-11-30T23:02:01.762 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:02:01 smithi167 conmon[87022]: audit 2023-11-30T23:01:59.773222+0000 mgr.smithi038.ldalxq (mgr.14182) 306 : audit [DBG] from='client.14784 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-11-30T23:02:01.762 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:02:01 smithi167 conmon[87022]: cluster 2023-11-30T23:02:00.273106+0000 2023-11-30T23:02:01.762 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:02:01 smithi167 conmon[87022]: mgr.smithi038.ldalxq (mgr.14182) 307 : cluster [DBG] pgmap v234: 225 pgs: 225 active+clean; 7.2 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2023-11-30T23:02:02.774 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:02:02 smithi038 conmon[81956]: cluster 2023-11-30T23:02:02.273524+0000 mgr.smithi038.ldalxq (mgr.14182 2023-11-30T23:02:02.774 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:02:02 smithi038 conmon[81956]: ) 308 : cluster [DBG] pgmap v235: 225 pgs: 225 active+clean; 7.2 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2023-11-30T23:02:02.891 INFO:teuthology.orchestra.run.smithi038.stdout: 2023-11-30T23:02:02.892 INFO:teuthology.orchestra.run.smithi038.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2023-11-30T22:54:47.122758Z", "last_refresh": "2023-11-30T22:58:55.866934Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2023-11-30T22:54:42.674972Z", "last_refresh": "2023-11-30T22:58:52.669086Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2023-11-30T22:54:45.114633Z", "last_refresh": "2023-11-30T22:58:55.867071Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2023-11-30T22:58:56.317378Z 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": 9049, "virtual_ip": "10.0.31.38/16"}, "status": {"created": "2023-11-30T22:58:56.312786Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.38/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2023-11-30T22:54:41.668043Z", "last_refresh": "2023-11-30T22:58:52.669241Z", "running": 2, "size": 2}}, {"events": ["2023-11-30T22:55:50.759225Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi038:172.21.15.38=smithi038", "smithi167:172.21.15.167=smithi167"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2023-11-30T22:55:50.756456Z", "last_refresh": "2023-11-30T22:58:52.669318Z", "running": 2, "size": 2}}, {"events": ["2023-11-30T22:58:56.311581Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2023-11-30T22:58:56.308071Z", "ports": [12049], "running": 0, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2023-11-30T22:54:46.136630Z", "last_refresh": "2023-11-30T22:58:52.669387Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2023-11-30T22:56:33.258058Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2023-11-30T22:56:33.253117Z", "last_refresh": "2023-11-30T22:58:52.669454Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2023-11-30T22:54:43.949497Z", "last_refresh": "2023-11-30T22:58:55.867217Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2023-11-30T22:58:52.105721Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2023-11-30T22:58:59.793467Z", "ports": [8800], "running": 0, "size": 2}}] 2023-11-30T23:02:03.012 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:02:02 smithi167 conmon[87022]: cluster 2023-11-30T23:02:02.273524+0000 mgr.smithi038.ldalxq (mgr.14182) 308 : cluster [DBG] pgmap v235: 225 pgs: 225 active+clean; 7.2 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2023-11-30T23:02:03.343 INFO:tasks.cephadm:nfs.foo has 0/1 2023-11-30T23:02:04.012 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:02:03 smithi167 conmon[87022]: audit 2023-11-30T23:02:02.888448+0000 mgr.smithi038.ldalxq (mgr.14182) 309 : audit [DBG] from='client.14788 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-11-30T23:02:04.024 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:02:03 smithi038 conmon[81956]: audit 2023-11-30T23:02:02.888448+0000 mgr.smithi038.ldalxq (mgr.14182) 309 : audit [DBG] from='client.14788 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-11-30T23:02:04.344 DEBUG:teuthology.orchestra.run.smithi038:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:0dc074ce0b0b3b4f393f56dd32ef36884ebf45a9 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 3faf8b00-8fd3-11ee-95a2-87774f69a715 -- ceph orch ls -f json 2023-11-30T23:02:04.915 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:02:04 smithi038 conmon[81956]: cluster 2023-11-30T23:02:04.274339+0000 mgr.smithi038.ldalxq 2023-11-30T23:02:04.915 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:02:04 smithi038 conmon[81956]: (mgr.14182) 310 : cluster [DBG] pgmap v236: 225 pgs: 225 active+clean; 7.2 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2023-11-30T23:02:05.012 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:02:04 smithi167 conmon[87022]: cluster 2023-11-30T23:02:04.274339+0000 mgr.smithi038.ldalxq (mgr.14182) 310 : cluster [DBG] pgmap v236: 225 pgs: 225 active+clean; 7.2 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2023-11-30T23:02:06.189 INFO:teuthology.orchestra.run.smithi038.stdout: 2023-11-30T23:02:06.190 INFO:teuthology.orchestra.run.smithi038.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2023-11-30T22:54:47.122758Z", "last_refresh": "2023-11-30T22:58:55.866934Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2023-11-30T22:54:42.674972Z", "last_refresh": "2023-11-30T22:58:52.669086Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2023-11-30T22:54:45.114633Z", "last_refresh": "2023-11-30T22:58:55.867071Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2023-11-30T22:58:56.317378Z 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": 9049, "virtual_ip": "10.0.31.38/16"}, "status": {"created": "2023-11-30T22:58:56.312786Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.38/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2023-11-30T22:54:41.668043Z", "last_refresh": "2023-11-30T22:58:52.669241Z", "running": 2, "size": 2}}, {"events": ["2023-11-30T22:55:50.759225Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi038:172.21.15.38=smithi038", "smithi167:172.21.15.167=smithi167"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2023-11-30T22:55:50.756456Z", "last_refresh": "2023-11-30T22:58:52.669318Z", "running": 2, "size": 2}}, {"events": ["2023-11-30T22:58:56.311581Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2023-11-30T22:58:56.308071Z", "ports": [12049], "running": 0, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2023-11-30T22:54:46.136630Z", "last_refresh": "2023-11-30T22:58:52.669387Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2023-11-30T22:56:33.258058Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2023-11-30T22:56:33.253117Z", "last_refresh": "2023-11-30T22:58:52.669454Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2023-11-30T22:54:43.949497Z", "last_refresh": "2023-11-30T22:58:55.867217Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2023-11-30T22:58:52.105721Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2023-11-30T22:58:59.793467Z", "ports": [8800], "running": 0, "size": 2}}] 2023-11-30T23:02:06.710 INFO:tasks.cephadm:nfs.foo has 0/1 2023-11-30T23:02:07.524 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:02:07 smithi038 conmon[81956]: audit 2023-11-30T23:02:06.186232+0000 mgr.smithi038.ldalxq 2023-11-30T23:02:07.524 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:02:07 smithi038 conmon[81956]: (mgr.14182) 311 : audit [DBG] from='client.14792 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-11-30T23:02:07.524 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:02:07 smithi038 conmon[81956]: cluster 2023-11-30T23:02:06.274991+0000 mgr.smithi038.ldalxq (mgr.14182) 312 : cluster [DBG] pgmap v237: 225 pgs: 225 active+clean; 7.2 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2023-11-30T23:02:07.524 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:02:07 smithi038 conmon[81956]: audit 2023-11-30T23:02:07.110999+0000 mon.smithi038 (mon.0) 668 : audit [INF] from='mgr.14182 172.21.15.38:0/2999689707' entity='mgr.smithi038.ldalxq' cmd=[{"prefix": "auth rm", "entity": "client.ingress.nfs.foo.smithi167.buykdj"}]: dispatch 2023-11-30T23:02:07.711 DEBUG:teuthology.orchestra.run.smithi038:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:0dc074ce0b0b3b4f393f56dd32ef36884ebf45a9 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 3faf8b00-8fd3-11ee-95a2-87774f69a715 -- ceph orch ls -f json 2023-11-30T23:02:07.762 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:02:07 smithi167 conmon[87022]: audit 2023-11-30T23:02:06.186232+0000 mgr.smithi038.ldalxq (mgr.14182) 311 : audit [DBG] from='client.14792 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-11-30T23:02:07.762 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:02:07 smithi167 conmon[87022]: cluster 2023-11-30T23:02:06.274991+0000 2023-11-30T23:02:07.762 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:02:07 smithi167 conmon[87022]: mgr.smithi038.ldalxq (mgr.14182) 312 : cluster [DBG] pgmap v237: 225 pgs: 225 active+clean; 7.2 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2023-11-30T23:02:07.762 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:02:07 smithi167 conmon[87022]: audit 2023-11-30T23:02:07.110999+0000 mon.smithi038 (mon.0) 668 : audit [INF] from='mgr.14182 172.21.15.38:0/2999689707' entity='mgr.smithi038.ldalxq' cmd=[{"prefix": "auth rm", "entity": "client.ingress.nfs.foo.smithi167.buykdj"}]: dispatch 2023-11-30T23:02:08.524 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:02:08 smithi038 conmon[81956]: cephadm 2023-11-30T23:02:07.110444+0000 mgr.smithi038.ldalxq (mgr.14182) 313 : cephadm [ERR] cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi167-buykdj 2023-11-30T23:02:08.524 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:02:08 smithi038 conmon[81956]: /bin/podman: stderr Error: error inspecting object: no such container ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi167-buykdj 2023-11-30T23:02:08.525 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:02:08 smithi038 conmon[81956]: Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi167.buykdj 2023-11-30T23:02:08.525 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:02:08 smithi038 conmon[81956]: /bin/podman: stderr Error: error inspecting object: no such container ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi167.buykdj 2023-11-30T23:02:08.525 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:02:08 smithi038 conmon[81956]: Deploy daemon haproxy.nfs.foo.smithi167.buykdj ... 2023-11-30T23:02:08.525 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:02:08 smithi038 conmon[81956]: Non-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi167 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2023-11-30T23:02:08.525 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:02:08 smithi038 conmon[81956]: stat: stderr Trying to pull docker.io/library/haproxy:2.3... 2023-11-30T23:02:08.525 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:02:08 smithi038 conmon[81956]: stat: stderr time="2023-11-30T22:59:44Z" level=warning msg="failed, retrying in 1s ... (1/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit" 2023-11-30T23:02:08.525 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:02:08 smithi038 conmon[81956]: stat: stderr time="2023-11-30T23:00:21Z" level=warning msg="failed, retrying in 1s ... (2/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit" 2023-11-30T23:02:08.525 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:02:08 smithi038 conmon[81956]: stat: stderr time="2023-11-30T23:00:59Z" level=warning msg="failed, retrying in 1s ... (3/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit" 2023-11-30T23:02:08.525 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:02:08 smithi038 conmon[81956]: stat: stderr Error: Error determining manifest MIME type for docker://haproxy:2.3: Error reading manifest sha256:058f434330f13dbbc46761f3e9a76af2408e9ec1898c9ac5a8baf00b42e756a9 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit 2023-11-30T23:02:08.525 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:02:08 smithi038 conmon[81956]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi167 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2023-11-30T23:02:08.525 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:02:08 smithi038 conmon[81956]: Traceback (most recent call last): 2023-11-30T23:02:08.525 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:02:08 smithi038 conmon[81956]: File "/usr/share/ceph/mgr/cephadm/serve.py", line 1538, in _remote_connection 2023-11-30T23:02:08.526 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:02:08 smithi038 conmon[81956]: yield (conn, connr) 2023-11-30T23:02:08.526 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:02:08 smithi038 conmon[81956]: File "/usr/share/ceph/mgr/cephadm/serve.py", line 1426, in _run_cephadm 2023-11-30T23:02:08.526 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:02:08 smithi038 conmon[81956]: code, '\n'.join(err))) 2023-11-30T23:02:08.526 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:02:08 smithi038 conmon[81956]: orchestrator._interface.OrchestratorError: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi167-buykdj 2023-11-30T23:02:08.526 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:02:08 smithi038 conmon[81956]: /bin/podman: stderr Error: error inspecting object: no such container ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi167-buykdj 2023-11-30T23:02:08.526 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:02:08 smithi038 conmon[81956]: Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi167.buykdj 2023-11-30T23:02:08.526 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:02:08 smithi038 conmon[81956]: /bin/podman: stderr Error: error inspecting object: no such container ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi167.buykdj 2023-11-30T23:02:08.526 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:02:08 smithi038 conmon[81956]: Deploy daemon haproxy.nfs.foo.smithi167.buykdj ... 2023-11-30T23:02:08.526 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:02:08 smithi038 conmon[81956]: Non-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi167 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2023-11-30T23:02:08.526 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:02:08 smithi038 conmon[81956]: stat: stderr Trying to pull docker.io/library/haproxy:2.3... 2023-11-30T23:02:08.526 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:02:08 smithi038 conmon[81956]: stat: stderr time="2023-11-30T22:59:44Z" level=warning msg="failed, retrying in 1s ... (1/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit" 2023-11-30T23:02:08.526 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:02:08 smithi038 conmon[81956]: stat: stderr time="2023-11-30T23:00:21Z" level=warning msg="failed, retrying in 1s ... (2/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit" 2023-11-30T23:02:08.526 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:02:08 smithi038 conmon[81956]: stat: stderr time="2023-11-30T23:00:59Z" level=warning msg="failed, retrying in 1s ... (3/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit" 2023-11-30T23:02:08.527 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:02:08 smithi038 conmon[81956]: stat: stderr Error: Error determining manifest MIME type for docker://haproxy:2.3: Error reading manifest sha256:058f434330f13dbbc46761f3e9a76af2408e9ec1898c9ac5a8baf00b42e756a9 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit 2023-11-30T23:02:08.527 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:02:08 smithi038 conmon[81956]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi167 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2023-11-30T23:02:08.527 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:02:08 smithi038 conmon[81956]: cephadm 2023-11-30T23:02:07.110654+0000 mgr.smithi038.ldalxq (mgr.14182) 314 : cephadm [INF] Removing key for client.ingress.nfs.foo.smithi167.buykdj 2023-11-30T23:02:08.527 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:02:08 smithi038 conmon[81956]: cephadm 2023-11-30T23:02:07.111796+0000 mgr.smithi038.ldalxq (mgr.14182) 315 : cephadm [ERR] Failed while placing haproxy.nfs.foo.smithi167.buykdj on smithi167: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podma 2023-11-30T23:02:08.527 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:02:08 smithi038 conmon[81956]: n container inspect --format {{.State.Status}} ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi167-buykdj 2023-11-30T23:02:08.527 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:02:08 smithi038 conmon[81956]: /bin/podman: stderr Error: error inspecting object: no such container ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi167-buykdj 2023-11-30T23:02:08.527 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:02:08 smithi038 conmon[81956]: Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi167.buykdj 2023-11-30T23:02:08.527 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:02:08 smithi038 conmon[81956]: /bin/podman: stderr Error: error inspecting object: no such container ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi167.buykdj 2023-11-30T23:02:08.527 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:02:08 smithi038 conmon[81956]: Deploy daemon haproxy.nfs.foo.smithi167.buykdj ... 2023-11-30T23:02:08.527 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:02:08 smithi038 conmon[81956]: Non-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi167 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2023-11-30T23:02:08.527 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:02:08 smithi038 conmon[81956]: stat: stderr Trying to pull docker.io/library/haproxy:2.3... 2023-11-30T23:02:08.527 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:02:08 smithi038 conmon[81956]: stat: stderr time="2023-11-30T22:59:44Z" level=warning msg="failed, retrying in 1s ... (1/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit" 2023-11-30T23:02:08.528 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:02:08 smithi038 conmon[81956]: stat: stderr time="2023-11-30T23:00:21Z" level=warning msg="failed, retrying in 1s ... (2/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit" 2023-11-30T23:02:08.528 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:02:08 smithi038 conmon[81956]: stat: stderr time="2023-11-30T23:00:59Z" level=warning msg="failed, retrying in 1s ... (3/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit" 2023-11-30T23:02:08.528 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:02:08 smithi038 conmon[81956]: stat: stderr Error: Error determining manifest MIME type for docker://haproxy:2.3: Error reading manifest sha256:058f434330f13dbbc46761f3e9a76af2408e9ec1898c9ac5a8baf00b42e756a9 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit 2023-11-30T23:02:08.528 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:02:08 smithi038 conmon[81956]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi167 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2023-11-30T23:02:08.528 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:02:08 smithi038 conmon[81956]: cephadm 2023-11-30T23:02:07.114600+0000 mgr.smithi038.ldalxq (mgr.14182) 316 : cephadm [INF] Deploying daemon haproxy.nfs.foo.smithi038.fwcakz on smithi038 2023-11-30T23:02:08.762 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:02:08 smithi167 conmon[87022]: cephadm 2023-11-30T23:02:07.110444+0000 mgr.smithi038.ldalxq (mgr.14182) 313 : cephadm [ERR] cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi167-buykdj 2023-11-30T23:02:08.762 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:02:08 smithi167 conmon[87022]: /bin/podman: stderr Error: error inspecting object: no such container ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi167-buykdj 2023-11-30T23:02:08.763 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:02:08 smithi167 conmon[87022]: Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi167.buykdj 2023-11-30T23:02:08.763 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:02:08 smithi167 conmon[87022]: /bin/podman: stderr Error: error inspecting object: no such container ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi167.buykdj 2023-11-30T23:02:08.763 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:02:08 smithi167 conmon[87022]: Deploy daemon haproxy.nfs.foo.smithi167.buykdj ... 2023-11-30T23:02:08.763 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:02:08 smithi167 conmon[87022]: Non-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi167 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2023-11-30T23:02:08.763 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:02:08 smithi167 conmon[87022]: stat: stderr Trying to pull docker.io/library/haproxy:2.3... 2023-11-30T23:02:08.763 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:02:08 smithi167 conmon[87022]: stat: stderr time="2023-11-30T22:59:44Z" level=warning msg="failed, retrying in 1s ... (1/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit" 2023-11-30T23:02:08.763 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:02:08 smithi167 conmon[87022]: stat: stderr time="2023-11-30T23:00:21Z" level=warning msg="failed, retrying in 1s ... (2/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit" 2023-11-30T23:02:08.763 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:02:08 smithi167 conmon[87022]: stat: stderr time="2023-11-30T23:00:59Z" level=warning msg="failed, retrying in 1s ... (3/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit" 2023-11-30T23:02:08.763 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:02:08 smithi167 conmon[87022]: stat: stderr Error: Error determining manifest MIME type for docker://haproxy:2.3: Error reading manifest sha256:058f434330f13dbbc46761f3e9a76af2408e9ec1898c9ac5a8baf00b42e756a9 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit 2023-11-30T23:02:08.763 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:02:08 smithi167 conmon[87022]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi167 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2023-11-30T23:02:08.763 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:02:08 smithi167 conmon[87022]: Traceback (most recent call last): 2023-11-30T23:02:08.763 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:02:08 smithi167 conmon[87022]: File "/usr/share/ceph/mgr/cephadm/serve.py", line 1538, in _remote_connection 2023-11-30T23:02:08.764 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:02:08 smithi167 conmon[87022]: yield (conn, connr) 2023-11-30T23:02:08.764 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:02:08 smithi167 conmon[87022]: File "/usr/share/ceph/mgr/cephadm/serve.py", line 1426, in _run_cephadm 2023-11-30T23:02:08.764 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:02:08 smithi167 conmon[87022]: code, '\n'.join(err))) 2023-11-30T23:02:08.764 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:02:08 smithi167 conmon[87022]: orchestrator._interface.OrchestratorError: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi167-buykdj 2023-11-30T23:02:08.764 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:02:08 smithi167 conmon[87022]: /bin/podman: stderr Error: error inspecting object: no such container ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi167-buykdj 2023-11-30T23:02:08.764 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:02:08 smithi167 conmon[87022]: Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi167.buykdj 2023-11-30T23:02:08.764 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:02:08 smithi167 conmon[87022]: /bin/podman: stderr Error: error inspecting object: no such container ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi167.buykdj 2023-11-30T23:02:08.764 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:02:08 smithi167 conmon[87022]: Deploy daemon haproxy.nfs.foo.smithi167.buykdj ... 2023-11-30T23:02:08.764 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:02:08 smithi167 conmon[87022]: Non-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi167 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2023-11-30T23:02:08.764 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:02:08 smithi167 conmon[87022]: stat: stderr Trying to pull docker.io/library/haproxy:2.3... 2023-11-30T23:02:08.764 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:02:08 smithi167 conmon[87022]: stat: stderr time="2023-11-30T22:59:44Z" level=warning msg="failed, retrying in 1s ... (1/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit" 2023-11-30T23:02:08.764 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:02:08 smithi167 conmon[87022]: stat: stderr time="2023-11-30T23:00:21Z" level=warning msg="failed, retrying in 1s ... (2/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit" 2023-11-30T23:02:08.765 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:02:08 smithi167 conmon[87022]: stat: stderr time="2023-11-30T23:00:59Z" level=warning msg="failed, retrying in 1s ... (3/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit" 2023-11-30T23:02:08.765 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:02:08 smithi167 conmon[87022]: stat: stderr Error: Error determining manifest MIME type for docker://haproxy:2.3: Error reading manifest sha256:058f434330f13dbbc46761f3e9a76af2408e9ec1898c9ac5a8baf00b42e756a9 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit 2023-11-30T23:02:08.765 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:02:08 smithi167 conmon[87022]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi167 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2023-11-30T23:02:08.765 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:02:08 smithi167 conmon[87022]: cephadm 2023-11-30T23:02:07.110654+0000 mgr.smithi038.ldalxq (mgr.14182) 314 : cephadm [INF] Removing key for client.ingress.nfs.foo.smithi167.buykdj 2023-11-30T23:02:08.765 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:02:08 smithi167 conmon[87022]: cephadm 2023-11-30T23:02:07.111796+0000 mgr.smithi038.ldalxq (mgr.14182) 315 : cephadm [ERR] Failed while placing haproxy.nfs.foo.smithi167.buykdj on smithi167: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi167-buykdj 2023-11-30T23:02:08.765 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:02:08 smithi167 conmon[87022]: /bin/podman: stderr Error: error inspecting object: no such container ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi167-buykdj 2023-11-30T23:02:08.765 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:02:08 smithi167 conmon[87022]: Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi167.buykdj 2023-11-30T23:02:08.765 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:02:08 smithi167 conmon[87022]: /bin/podman: stderr Error: error inspecting object: no such container ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi167.buykdj 2023-11-30T23:02:08.765 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:02:08 smithi167 conmon[87022]: Deploy daemon haproxy.nfs.foo.smithi167.buykdj ... 2023-11-30T23:02:08.765 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:02:08 smithi167 conmon[87022]: Non-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi167 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2023-11-30T23:02:08.765 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:02:08 smithi167 conmon[87022]: stat: stderr Trying to pull docker.io/library/haproxy:2.3... 2023-11-30T23:02:08.765 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:02:08 smithi167 conmon[87022]: stat: stderr time="2023-11-30T22:59:44Z" level=warning msg="failed, retrying in 1s ... (1/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit" 2023-11-30T23:02:08.765 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:02:08 smithi167 conmon[87022]: stat: stderr time="2023-11-30T23:00:21Z" level=warning msg="failed, retrying in 1s ... (2/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit" 2023-11-30T23:02:08.766 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:02:08 smithi167 conmon[87022]: stat: stderr time="2023-11-30T23:00:59Z" level=warning msg="failed, retrying in 1s ... (3/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit" 2023-11-30T23:02:08.766 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:02:08 smithi167 conmon[87022]: stat: stderr Error: Error determining manifest MIME type for docker://haproxy:2.3: Error reading manifest sha256:058f434330f13dbbc46761f3e9a76af2408e9ec1898c9ac5a8baf00b42e756a9 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit 2023-11-30T23:02:08.766 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:02:08 smithi167 conmon[87022]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi167 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2023-11-30T23:02:08.766 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:02:08 smithi167 conmon[87022]: cephadm 2023-11-30T23:02:07.114600+0000 mgr.smithi038.ldalxq (mgr.14182) 316 : cephadm [INF] Deploying daemon haproxy.nfs.foo.smithi038.fwcakz on smithi038 2023-11-30T23:02:09.541 INFO:teuthology.orchestra.run.smithi038.stdout: 2023-11-30T23:02:09.541 INFO:teuthology.orchestra.run.smithi038.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2023-11-30T22:54:47.122758Z", "last_refresh": "2023-11-30T22:58:55.866934Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2023-11-30T22:54:42.674972Z", "last_refresh": "2023-11-30T22:58:52.669086Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2023-11-30T22:54:45.114633Z", "last_refresh": "2023-11-30T22:58:55.867071Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2023-11-30T22:58:56.317378Z service:ingress.nfs.foo [INFO] \"service was created\"", "2023-11-30T23:02:07.111634Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi167.buykdj on smithi167: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi167-buykdj\n/bin/podman: stderr Error: error inspecting object: no such container ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi167-buykdj\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi167.buykdj\n/bin/podman: stderr Error: error inspecting object: no such container ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi167.buykdj\nDeploy daemon haproxy.nfs.foo.smithi167.buykdj ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi167 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2023-11-30T22:59:44Z\" level=warning msg=\"failed, retrying in 1s ... (1/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-11-30T23:00:21Z\" level=warning msg=\"failed, retrying in 1s ... (2/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-11-30T23:00:59Z\" level=warning msg=\"failed, retrying in 1s ... (3/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: Error determining manifest MIME type for docker://haproxy:2.3: Error reading manifest sha256:058f434330f13dbbc46761f3e9a76af2408e9ec1898c9ac5a8baf00b42e756a9 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi167 -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": 9049, "virtual_ip": "10.0.31.38/16"}, "status": {"created": "2023-11-30T22:58:56.312786Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.38/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2023-11-30T22:54:41.668043Z", "last_refresh": "2023-11-30T22:58:52.669241Z", "running": 2, "size": 2}}, {"events": ["2023-11-30T22:55:50.759225Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi038:172.21.15.38=smithi038", "smithi167:172.21.15.167=smithi167"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2023-11-30T22:55:50.756456Z", "last_refresh": "2023-11-30T22:58:52.669318Z", "running": 2, "size": 2}}, {"events": ["2023-11-30T22:58:56.311581Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2023-11-30T22:58:56.308071Z", "ports": [12049], "running": 0, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2023-11-30T22:54:46.136630Z", "last_refresh": "2023-11-30T22:58:52.669387Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2023-11-30T22:56:33.258058Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2023-11-30T22:56:33.253117Z", "last_refresh": "2023-11-30T22:58:52.669454Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2023-11-30T22:54:43.949497Z", "last_refresh": "2023-11-30T22:58:55.867217Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2023-11-30T22:58:52.105721Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2023-11-30T22:58:59.793467Z", "ports": [8800], "running": 0, "size": 2}}] 2023-11-30T23:02:09.755 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:02:09 smithi038 conmon[81956]: cluster 2023-11-30T23:02:08.275521+0000 mgr.smithi038.ldalxq 2023-11-30T23:02:09.755 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:02:09 smithi038 conmon[81956]: (mgr.14182) 317 : cluster [DBG] pgmap v238: 225 pgs: 225 active+clean; 7.2 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2023-11-30T23:02:09.762 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:02:09 smithi167 conmon[87022]: cluster 2023-11-30T23:02:08.275521+0000 mgr.smithi038.ldalxq (mgr.14182) 317 : cluster [DBG] pgmap v238: 225 pgs: 225 active+clean; 7.2 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2023-11-30T23:02:09.952 INFO:tasks.cephadm:nfs.foo has 0/1 2023-11-30T23:02:10.762 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:02:10 smithi167 conmon[87022]: audit 2023-11-30T23:02:09.536770+0000 mgr.smithi038.ldalxq (mgr.14182) 318 : audit 2023-11-30T23:02:10.762 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:02:10 smithi167 conmon[87022]: [DBG] from='client.14796 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-11-30T23:02:10.774 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:02:10 smithi038 conmon[81956]: audit 2023-11-30T23:02:09.536770+0000 mgr.smithi038.ldalxq (mgr.14182) 318 2023-11-30T23:02:10.774 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:02:10 smithi038 conmon[81956]: : audit [DBG] from='client.14796 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-11-30T23:02:10.953 DEBUG:teuthology.orchestra.run.smithi038:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:0dc074ce0b0b3b4f393f56dd32ef36884ebf45a9 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 3faf8b00-8fd3-11ee-95a2-87774f69a715 -- ceph orch ls -f json 2023-11-30T23:02:11.608 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:02:11 smithi038 conmon[81956]: cluster 2023-11-30T23:02:10.276278+0000 mgr.smithi038.ldalxq (mgr.14182) 319 : cluster [DBG] pgmap v239: 225 pgs: 225 active+clean; 7.2 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2023-11-30T23:02:11.762 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:02:11 smithi167 conmon[87022]: cluster 2023-11-30T23:02:10.276278+0000 mgr.smithi038.ldalxq (mgr.14182) 319 : 2023-11-30T23:02:11.762 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:02:11 smithi167 conmon[87022]: cluster [DBG] pgmap v239: 225 pgs: 225 active+clean; 7.2 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2023-11-30T23:02:12.774 INFO:teuthology.orchestra.run.smithi038.stdout: 2023-11-30T23:02:12.775 INFO:teuthology.orchestra.run.smithi038.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2023-11-30T22:54:47.122758Z", "last_refresh": "2023-11-30T22:58:55.866934Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2023-11-30T22:54:42.674972Z", "last_refresh": "2023-11-30T22:58:52.669086Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2023-11-30T22:54:45.114633Z", "last_refresh": "2023-11-30T22:58:55.867071Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2023-11-30T22:58:56.317378Z service:ingress.nfs.foo [INFO] \"service was created\"", "2023-11-30T23:02:07.111634Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi167.buykdj on smithi167: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi167-buykdj\n/bin/podman: stderr Error: error inspecting object: no such container ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi167-buykdj\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi167.buykdj\n/bin/podman: stderr Error: error inspecting object: no such container ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi167.buykdj\nDeploy daemon haproxy.nfs.foo.smithi167.buykdj ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi167 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2023-11-30T22:59:44Z\" level=warning msg=\"failed, retrying in 1s ... (1/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-11-30T23:00:21Z\" level=warning msg=\"failed, retrying in 1s ... (2/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-11-30T23:00:59Z\" level=warning msg=\"failed, retrying in 1s ... (3/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: Error determining manifest MIME type for docker://haproxy:2.3: Error reading manifest sha256:058f434330f13dbbc46761f3e9a76af2408e9ec1898c9ac5a8baf00b42e756a9 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi167 -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": 9049, "virtual_ip": "10.0.31.38/16"}, "status": {"created": "2023-11-30T22:58:56.312786Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.38/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2023-11-30T22:54:41.668043Z", "last_refresh": "2023-11-30T22:58:52.669241Z", "running": 2, "size": 2}}, {"events": ["2023-11-30T22:55:50.759225Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi038:172.21.15.38=smithi038", "smithi167:172.21.15.167=smithi167"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2023-11-30T22:55:50.756456Z", "last_refresh": "2023-11-30T22:58:52.669318Z", "running": 2, "size": 2}}, {"events": ["2023-11-30T22:58:56.311581Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2023-11-30T22:58:56.308071Z", "ports": [12049], "running": 0, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2023-11-30T22:54:46.136630Z", "last_refresh": "2023-11-30T22:58:52.669387Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2023-11-30T22:56:33.258058Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2023-11-30T22:56:33.253117Z", "last_refresh": "2023-11-30T22:58:52.669454Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2023-11-30T22:54:43.949497Z", "last_refresh": "2023-11-30T22:58:55.867217Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2023-11-30T22:58:52.105721Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2023-11-30T22:58:59.793467Z", "ports": [8800], "running": 0, "size": 2}}] 2023-11-30T23:02:12.997 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:02:12 smithi038 conmon[81956]: cluster 2023-11-30T23:02:12.276721+0000 mgr.smithi038.ldalxq (mgr. 2023-11-30T23:02:12.998 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:02:12 smithi038 conmon[81956]: 14182) 320 : cluster [DBG] pgmap v240: 225 pgs: 225 active+clean; 7.2 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 511 B/s rd, 85 B/s wr, 0 op/s 2023-11-30T23:02:13.012 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:02:12 smithi167 conmon[87022]: cluster 2023-11-30T23:02:12.276721+0000 mgr.smithi038.ldalxq (mgr.14182) 320 : 2023-11-30T23:02:13.012 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:02:12 smithi167 conmon[87022]: cluster [DBG] pgmap v240: 225 pgs: 225 active+clean; 7.2 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 511 B/s rd, 85 B/s wr, 0 op/s 2023-11-30T23:02:13.201 INFO:tasks.cephadm:nfs.foo has 0/1 2023-11-30T23:02:14.011 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:02:13 smithi167 conmon[87022]: audit 2023-11-30T23:02:12.770235+0000 mgr.smithi038.ldalxq (mgr.14182) 321 : audit 2023-11-30T23:02:14.012 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:02:13 smithi167 conmon[87022]: [DBG] from='client.14800 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-11-30T23:02:14.024 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:02:13 smithi038 conmon[81956]: audit 2023-11-30T23:02:12.770235+0000 mgr.smithi038.ldalxq (mgr.14182 2023-11-30T23:02:14.024 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:02:13 smithi038 conmon[81956]: ) 321 : audit [DBG] from='client.14800 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-11-30T23:02:14.202 DEBUG:teuthology.orchestra.run.smithi038:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:0dc074ce0b0b3b4f393f56dd32ef36884ebf45a9 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 3faf8b00-8fd3-11ee-95a2-87774f69a715 -- ceph orch ls -f json 2023-11-30T23:02:14.931 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:02:14 smithi038 conmon[81956]: cluster 2023-11-30T23:02:14.277376+0000 2023-11-30T23:02:14.931 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:02:14 smithi038 conmon[81956]: mgr.smithi038.ldalxq (mgr.14182) 322 : cluster [DBG] pgmap v241: 225 pgs: 225 active+clean; 7.2 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 853 B/s rd, 85 B/s wr, 0 op/s 2023-11-30T23:02:15.013 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:02:14 smithi167 conmon[87022]: cluster 2023-11-30T23:02:14.277376+0000 mgr.smithi038.ldalxq (mgr.14182) 322 2023-11-30T23:02:15.013 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:02:14 smithi167 conmon[87022]: : cluster [DBG] pgmap v241: 225 pgs: 225 active+clean; 7.2 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 853 B/s rd, 85 B/s wr, 0 op/s 2023-11-30T23:02:15.918 INFO:teuthology.orchestra.run.smithi038.stdout: 2023-11-30T23:02:15.918 INFO:teuthology.orchestra.run.smithi038.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2023-11-30T22:54:47.122758Z", "last_refresh": "2023-11-30T22:58:55.866934Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2023-11-30T22:54:42.674972Z", "last_refresh": "2023-11-30T22:58:52.669086Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2023-11-30T22:54:45.114633Z", "last_refresh": "2023-11-30T22:58:55.867071Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2023-11-30T22:58:56.317378Z service:ingress.nfs.foo [INFO] \"service was created\"", "2023-11-30T23:02:07.111634Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi167.buykdj on smithi167: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi167-buykdj\n/bin/podman: stderr Error: error inspecting object: no such container ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi167-buykdj\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi167.buykdj\n/bin/podman: stderr Error: error inspecting object: no such container ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi167.buykdj\nDeploy daemon haproxy.nfs.foo.smithi167.buykdj ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi167 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2023-11-30T22:59:44Z\" level=warning msg=\"failed, retrying in 1s ... (1/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-11-30T23:00:21Z\" level=warning msg=\"failed, retrying in 1s ... (2/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-11-30T23:00:59Z\" level=warning msg=\"failed, retrying in 1s ... (3/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: Error determining manifest MIME type for docker://haproxy:2.3: Error reading manifest sha256:058f434330f13dbbc46761f3e9a76af2408e9ec1898c9ac5a8baf00b42e756a9 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi167 -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": 9049, "virtual_ip": "10.0.31.38/16"}, "status": {"created": "2023-11-30T22:58:56.312786Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.38/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2023-11-30T22:54:41.668043Z", "last_refresh": "2023-11-30T22:58:52.669241Z", "running": 2, "size": 2}}, {"events": ["2023-11-30T22:55:50.759225Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi038:172.21.15.38=smithi038", "smithi167:172.21.15.167=smithi167"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2023-11-30T22:55:50.756456Z", "last_refresh": "2023-11-30T22:58:52.669318Z", "running": 2, "size": 2}}, {"events": ["2023-11-30T22:58:56.311581Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2023-11-30T22:58:56.308071Z", "ports": [12049], "running": 0, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2023-11-30T22:54:46.136630Z", "last_refresh": "2023-11-30T22:58:52.669387Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2023-11-30T22:56:33.258058Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2023-11-30T22:56:33.253117Z", "last_refresh": "2023-11-30T22:58:52.669454Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2023-11-30T22:54:43.949497Z", "last_refresh": "2023-11-30T22:58:55.867217Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2023-11-30T22:58:52.105721Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2023-11-30T22:58:59.793467Z", "ports": [8800], "running": 0, "size": 2}}] 2023-11-30T23:02:16.351 INFO:tasks.cephadm:nfs.foo has 0/1 2023-11-30T23:02:17.351 DEBUG:teuthology.orchestra.run.smithi038:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:0dc074ce0b0b3b4f393f56dd32ef36884ebf45a9 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 3faf8b00-8fd3-11ee-95a2-87774f69a715 -- ceph orch ls -f json 2023-11-30T23:02:17.764 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:02:17 smithi167 conmon[87022]: audit 2023-11-30T23:02:15.914453+0000 mgr.smithi038.ldalxq (mgr.14182) 323 : audit 2023-11-30T23:02:17.765 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:02:17 smithi167 conmon[87022]: [DBG] from='client.14804 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-11-30T23:02:17.766 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:02:17 smithi167 conmon[87022]: cluster 2023-11-30T23:02:16.278311+0000 mgr.smithi038.ldalxq (mgr.14182) 324 : cluster [DBG] pgmap v242: 225 pgs: 225 active+clean; 7.2 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 1.2 KiB/s rd, 85 B/s wr, 1 op/s 2023-11-30T23:02:17.774 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:02:17 smithi038 conmon[81956]: audit 2023-11-30T23:02:15.914453+0000 mgr.smithi038.ldalxq (mgr.14182) 323 : audit [DBG] from='client.14804 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-11-30T23:02:17.774 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:02:17 smithi038 conmon[81956]: cluster 2023-11-30T23:02:16.278311+0000 mgr.smithi038.ldalxq (mgr.14182) 324 : cluster [DBG] pgmap v242: 225 pgs: 225 active+clean; 7.2 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 1.2 KiB/s rd, 85 B/s wr, 1 op/s 2023-11-30T23:02:19.053 INFO:teuthology.orchestra.run.smithi038.stdout: 2023-11-30T23:02:19.053 INFO:teuthology.orchestra.run.smithi038.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2023-11-30T22:54:47.122758Z", "last_refresh": "2023-11-30T22:58:55.866934Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2023-11-30T22:54:42.674972Z", "last_refresh": "2023-11-30T22:58:52.669086Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2023-11-30T22:54:45.114633Z", "last_refresh": "2023-11-30T22:58:55.867071Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2023-11-30T22:58:56.317378Z service:ingress.nfs.foo [INFO] \"service was created\"", "2023-11-30T23:02:07.111634Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi167.buykdj on smithi167: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi167-buykdj\n/bin/podman: stderr Error: error inspecting object: no such container ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi167-buykdj\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi167.buykdj\n/bin/podman: stderr Error: error inspecting object: no such container ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi167.buykdj\nDeploy daemon haproxy.nfs.foo.smithi167.buykdj ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi167 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2023-11-30T22:59:44Z\" level=warning msg=\"failed, retrying in 1s ... (1/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-11-30T23:00:21Z\" level=warning msg=\"failed, retrying in 1s ... (2/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-11-30T23:00:59Z\" level=warning msg=\"failed, retrying in 1s ... (3/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: Error determining manifest MIME type for docker://haproxy:2.3: Error reading manifest sha256:058f434330f13dbbc46761f3e9a76af2408e9ec1898c9ac5a8baf00b42e756a9 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi167 -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": 9049, "virtual_ip": "10.0.31.38/16"}, "status": {"created": "2023-11-30T22:58:56.312786Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.38/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2023-11-30T22:54:41.668043Z", "last_refresh": "2023-11-30T22:58:52.669241Z", "running": 2, "size": 2}}, {"events": ["2023-11-30T22:55:50.759225Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi038:172.21.15.38=smithi038", "smithi167:172.21.15.167=smithi167"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2023-11-30T22:55:50.756456Z", "last_refresh": "2023-11-30T22:58:52.669318Z", "running": 2, "size": 2}}, {"events": ["2023-11-30T22:58:56.311581Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2023-11-30T22:58:56.308071Z", "ports": [12049], "running": 0, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2023-11-30T22:54:46.136630Z", "last_refresh": "2023-11-30T22:58:52.669387Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2023-11-30T22:56:33.258058Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2023-11-30T22:56:33.253117Z", "last_refresh": "2023-11-30T22:58:52.669454Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2023-11-30T22:54:43.949497Z", "last_refresh": "2023-11-30T22:58:55.867217Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2023-11-30T22:58:52.105721Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2023-11-30T22:58:59.793467Z", "ports": [8800], "running": 0, "size": 2}}] 2023-11-30T23:02:19.515 INFO:tasks.cephadm:nfs.foo has 0/1 2023-11-30T23:02:19.523 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:02:19 smithi038 conmon[81956]: cluster 2023-11-30T23:02:18.278803+0000 mgr.smithi038.ldalxq (mgr. 2023-11-30T23:02:19.524 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:02:19 smithi038 conmon[81956]: 14182) 325 : cluster [DBG] pgmap v243: 225 pgs: 225 active+clean; 7.2 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 1.2 KiB/s rd, 85 B/s wr, 1 op/s 2023-11-30T23:02:19.762 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:02:19 smithi167 conmon[87022]: cluster 2023-11-30T23:02:18.278803+0000 mgr.smithi038.ldalxq (mgr.14182) 325 : cluster [DBG] pgmap v243: 225 pgs: 225 active+clean; 7.2 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 1.2 KiB/s rd, 85 B/s wr, 1 op/s 2023-11-30T23:02:20.517 DEBUG:teuthology.orchestra.run.smithi038:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:0dc074ce0b0b3b4f393f56dd32ef36884ebf45a9 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 3faf8b00-8fd3-11ee-95a2-87774f69a715 -- ceph orch ls -f json 2023-11-30T23:02:20.762 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:02:20 smithi167 conmon[87022]: audit 2023-11-30T23:02:19.047453+0000 mgr.smithi038.ldalxq (mgr.14182) 326 : audit [DBG] from='client.14808 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-11-30T23:02:20.762 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:02:20 smithi167 conmon[87022]: 2023-11-30T23:02:20.774 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:02:20 smithi038 conmon[81956]: audit 2023-11-30T23:02:19.047453+0000 mgr.smithi038.ldalxq (mgr.14182) 326 : audit 2023-11-30T23:02:20.774 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:02:20 smithi038 conmon[81956]: [DBG] from='client.14808 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-11-30T23:02:21.628 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:02:21 smithi038 conmon[81956]: cluster 2023-11-30T23:02:20.279606+0000 mgr.smithi038.ldalxq (mgr 2023-11-30T23:02:21.628 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:02:21 smithi038 conmon[81956]: .14182) 327 : cluster [DBG] pgmap v244: 225 pgs: 225 active+clean; 7.2 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 1.2 KiB/s rd, 85 B/s wr, 1 op/s 2023-11-30T23:02:21.762 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:02:21 smithi167 conmon[87022]: cluster 2023-11-30T23:02:20.279606+0000 mgr.smithi038.ldalxq (mgr.14182) 327 : cluster 2023-11-30T23:02:21.762 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:02:21 smithi167 conmon[87022]: [DBG] pgmap v244: 225 pgs: 225 active+clean; 7.2 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 1.2 KiB/s rd, 85 B/s wr, 1 op/s 2023-11-30T23:02:22.221 INFO:teuthology.orchestra.run.smithi038.stdout: 2023-11-30T23:02:22.221 INFO:teuthology.orchestra.run.smithi038.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2023-11-30T22:54:47.122758Z", "last_refresh": "2023-11-30T22:58:55.866934Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2023-11-30T22:54:42.674972Z", "last_refresh": "2023-11-30T22:58:52.669086Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2023-11-30T22:54:45.114633Z", "last_refresh": "2023-11-30T22:58:55.867071Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2023-11-30T22:58:56.317378Z service:ingress.nfs.foo [INFO] \"service was created\"", "2023-11-30T23:02:07.111634Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi167.buykdj on smithi167: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi167-buykdj\n/bin/podman: stderr Error: error inspecting object: no such container ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi167-buykdj\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi167.buykdj\n/bin/podman: stderr Error: error inspecting object: no such container ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi167.buykdj\nDeploy daemon haproxy.nfs.foo.smithi167.buykdj ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi167 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2023-11-30T22:59:44Z\" level=warning msg=\"failed, retrying in 1s ... (1/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-11-30T23:00:21Z\" level=warning msg=\"failed, retrying in 1s ... (2/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-11-30T23:00:59Z\" level=warning msg=\"failed, retrying in 1s ... (3/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: Error determining manifest MIME type for docker://haproxy:2.3: Error reading manifest sha256:058f434330f13dbbc46761f3e9a76af2408e9ec1898c9ac5a8baf00b42e756a9 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi167 -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": 9049, "virtual_ip": "10.0.31.38/16"}, "status": {"created": "2023-11-30T22:58:56.312786Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.38/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2023-11-30T22:54:41.668043Z", "last_refresh": "2023-11-30T22:58:52.669241Z", "running": 2, "size": 2}}, {"events": ["2023-11-30T22:55:50.759225Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi038:172.21.15.38=smithi038", "smithi167:172.21.15.167=smithi167"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2023-11-30T22:55:50.756456Z", "last_refresh": "2023-11-30T22:58:52.669318Z", "running": 2, "size": 2}}, {"events": ["2023-11-30T22:58:56.311581Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2023-11-30T22:58:56.308071Z", "ports": [12049], "running": 0, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2023-11-30T22:54:46.136630Z", "last_refresh": "2023-11-30T22:58:52.669387Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2023-11-30T22:56:33.258058Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2023-11-30T22:56:33.253117Z", "last_refresh": "2023-11-30T22:58:52.669454Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2023-11-30T22:54:43.949497Z", "last_refresh": "2023-11-30T22:58:55.867217Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2023-11-30T22:58:52.105721Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2023-11-30T22:58:59.793467Z", "ports": [8800], "running": 0, "size": 2}}] 2023-11-30T23:02:22.765 INFO:tasks.cephadm:nfs.foo has 0/1 2023-11-30T23:02:23.012 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:02:22 smithi167 conmon[87022]: audit 2023-11-30T23:02:22.217822+0000 mgr.smithi038.ldalxq (mgr.14182) 328 : audit [DBG] from='client.14812 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-11-30T23:02:23.012 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:02:22 smithi167 conmon[87022]: cluster 2023-11-30T23:02:22.280101+0000 mgr.smithi038.ldalxq (mgr.14182) 329 : cluster [DBG] pgmap v245: 225 pgs: 225 active+clean; 7.2 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 1.2 KiB/s rd, 85 B/s wr, 1 op/s 2023-11-30T23:02:23.023 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:02:22 smithi038 conmon[81956]: audit 2023-11-30T23:02:22.217822+0000 mgr.smithi038.ldalxq (mgr.14182) 328 : audit [DBG] from='client.14812 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-11-30T23:02:23.024 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:02:22 smithi038 conmon[81956]: cluster 2023-11-30T23:02:22.280101+0000 mgr.smithi038.ldalxq (mgr.14182) 329 : cluster [DBG] pgmap v245: 225 pgs: 225 active+clean; 7.2 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 1.2 KiB/s rd, 85 B/s wr, 1 op/s 2023-11-30T23:02:23.766 DEBUG:teuthology.orchestra.run.smithi038:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:0dc074ce0b0b3b4f393f56dd32ef36884ebf45a9 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 3faf8b00-8fd3-11ee-95a2-87774f69a715 -- ceph orch ls -f json 2023-11-30T23:02:25.508 INFO:teuthology.orchestra.run.smithi038.stdout: 2023-11-30T23:02:25.508 INFO:teuthology.orchestra.run.smithi038.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2023-11-30T22:54:47.122758Z", "last_refresh": "2023-11-30T22:58:55.866934Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2023-11-30T22:54:42.674972Z", "last_refresh": "2023-11-30T22:58:52.669086Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2023-11-30T22:54:45.114633Z", "last_refresh": "2023-11-30T22:58:55.867071Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2023-11-30T22:58:56.317378Z service:ingress.nfs.foo [INFO] \"service was created\"", "2023-11-30T23:02:07.111634Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi167.buykdj on smithi167: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi167-buykdj\n/bin/podman: stderr Error: error inspecting object: no such container ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi167-buykdj\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi167.buykdj\n/bin/podman: stderr Error: error inspecting object: no such container ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi167.buykdj\nDeploy daemon haproxy.nfs.foo.smithi167.buykdj ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi167 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2023-11-30T22:59:44Z\" level=warning msg=\"failed, retrying in 1s ... (1/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-11-30T23:00:21Z\" level=warning msg=\"failed, retrying in 1s ... (2/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-11-30T23:00:59Z\" level=warning msg=\"failed, retrying in 1s ... (3/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: Error determining manifest MIME type for docker://haproxy:2.3: Error reading manifest sha256:058f434330f13dbbc46761f3e9a76af2408e9ec1898c9ac5a8baf00b42e756a9 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi167 -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": 9049, "virtual_ip": "10.0.31.38/16"}, "status": {"created": "2023-11-30T22:58:56.312786Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.38/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2023-11-30T22:54:41.668043Z", "last_refresh": "2023-11-30T22:58:52.669241Z", "running": 2, "size": 2}}, {"events": ["2023-11-30T22:55:50.759225Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi038:172.21.15.38=smithi038", "smithi167:172.21.15.167=smithi167"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2023-11-30T22:55:50.756456Z", "last_refresh": "2023-11-30T22:58:52.669318Z", "running": 2, "size": 2}}, {"events": ["2023-11-30T22:58:56.311581Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2023-11-30T22:58:56.308071Z", "ports": [12049], "running": 0, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2023-11-30T22:54:46.136630Z", "last_refresh": "2023-11-30T22:58:52.669387Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2023-11-30T22:56:33.258058Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2023-11-30T22:56:33.253117Z", "last_refresh": "2023-11-30T22:58:52.669454Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2023-11-30T22:54:43.949497Z", "last_refresh": "2023-11-30T22:58:55.867217Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2023-11-30T22:58:52.105721Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2023-11-30T22:58:59.793467Z", "ports": [8800], "running": 0, "size": 2}}] 2023-11-30T23:02:25.524 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:02:25 smithi038 conmon[81956]: cluster 2023-11-30T23:02:24.280622+0000 mgr.smithi038.ldalxq (mgr.14182) 330 : cluster [DBG] pgmap v246: 225 pgs: 225 active+clean; 7.2 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 853 B/s rd, 0 op/s 2023-11-30T23:02:25.762 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:02:25 smithi167 conmon[87022]: cluster 2023-11-30T23:02:24.280622+0000 mgr.smithi038.ldalxq (mgr.14182) 330 : cluster [DBG] 2023-11-30T23:02:25.762 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:02:25 smithi167 conmon[87022]: pgmap v246: 225 pgs: 225 active+clean; 7.2 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 853 B/s rd, 0 op/s 2023-11-30T23:02:26.030 INFO:tasks.cephadm:nfs.foo has 0/1 2023-11-30T23:02:26.762 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:02:26 smithi167 conmon[87022]: audit 2023-11-30T23:02:25.504564+0000 mgr.smithi038.ldalxq (mgr.14182) 331 : audit [DBG] from='client.14816 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-11-30T23:02:26.774 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:02:26 smithi038 conmon[81956]: audit 2023-11-30T23:02:25.504564+0000 mgr.smithi038.ldalxq (mgr.14182) 2023-11-30T23:02:26.774 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:02:26 smithi038 conmon[81956]: 331 : audit [DBG] from='client.14816 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-11-30T23:02:27.032 DEBUG:teuthology.orchestra.run.smithi038:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:0dc074ce0b0b3b4f393f56dd32ef36884ebf45a9 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 3faf8b00-8fd3-11ee-95a2-87774f69a715 -- ceph orch ls -f json 2023-11-30T23:02:27.610 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:02:27 smithi038 conmon[81956]: cluster 2023-11-30T23:02:26 2023-11-30T23:02:27.610 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:02:27 smithi038 conmon[81956]: .281396+0000 mgr.smithi038.ldalxq (mgr.14182) 332 : cluster [DBG] pgmap v247: 225 pgs: 225 active+clean; 7.2 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 511 B/s rd, 0 op/s 2023-11-30T23:02:27.763 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:02:27 smithi167 conmon[87022]: cluster 2023-11-30T23:02:26.281396+0000 mgr.smithi038.ldalxq (mgr.14182) 332 : cluster [DBG] pgmap v247: 225 pgs: 225 active+clean; 7.2 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 511 B/s rd, 0 op/s 2023-11-30T23:02:28.872 INFO:teuthology.orchestra.run.smithi038.stdout: 2023-11-30T23:02:28.872 INFO:teuthology.orchestra.run.smithi038.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2023-11-30T22:54:47.122758Z", "last_refresh": "2023-11-30T22:58:55.866934Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2023-11-30T22:54:42.674972Z", "last_refresh": "2023-11-30T22:58:52.669086Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2023-11-30T22:54:45.114633Z", "last_refresh": "2023-11-30T22:58:55.867071Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2023-11-30T22:58:56.317378Z service:ingress.nfs.foo [INFO] \"service was created\"", "2023-11-30T23:02:07.111634Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi167.buykdj on smithi167: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi167-buykdj\n/bin/podman: stderr Error: error inspecting object: no such container ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi167-buykdj\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi167.buykdj\n/bin/podman: stderr Error: error inspecting object: no such container ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi167.buykdj\nDeploy daemon haproxy.nfs.foo.smithi167.buykdj ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi167 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2023-11-30T22:59:44Z\" level=warning msg=\"failed, retrying in 1s ... (1/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-11-30T23:00:21Z\" level=warning msg=\"failed, retrying in 1s ... (2/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-11-30T23:00:59Z\" level=warning msg=\"failed, retrying in 1s ... (3/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: Error determining manifest MIME type for docker://haproxy:2.3: Error reading manifest sha256:058f434330f13dbbc46761f3e9a76af2408e9ec1898c9ac5a8baf00b42e756a9 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi167 -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": 9049, "virtual_ip": "10.0.31.38/16"}, "status": {"created": "2023-11-30T22:58:56.312786Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.38/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2023-11-30T22:54:41.668043Z", "last_refresh": "2023-11-30T22:58:52.669241Z", "running": 2, "size": 2}}, {"events": ["2023-11-30T22:55:50.759225Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi038:172.21.15.38=smithi038", "smithi167:172.21.15.167=smithi167"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2023-11-30T22:55:50.756456Z", "last_refresh": "2023-11-30T22:58:52.669318Z", "running": 2, "size": 2}}, {"events": ["2023-11-30T22:58:56.311581Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2023-11-30T22:58:56.308071Z", "ports": [12049], "running": 0, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2023-11-30T22:54:46.136630Z", "last_refresh": "2023-11-30T22:58:52.669387Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2023-11-30T22:56:33.258058Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2023-11-30T22:56:33.253117Z", "last_refresh": "2023-11-30T22:58:52.669454Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2023-11-30T22:54:43.949497Z", "last_refresh": "2023-11-30T22:58:55.867217Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2023-11-30T22:58:52.105721Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2023-11-30T22:58:59.793467Z", "ports": [8800], "running": 0, "size": 2}}] 2023-11-30T23:02:29.397 INFO:tasks.cephadm:nfs.foo has 0/1 2023-11-30T23:02:29.764 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:02:29 smithi167 conmon[87022]: cluster 2023-11-30T23:02:28.281920+0000 mgr.smithi038.ldalxq (mgr.14182) 333 : cluster [DBG] pgmap v248: 225 pgs: 225 active+clean; 7.2 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2023-11-30T23:02:29.773 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:02:29 smithi038 conmon[81956]: cluster 2023-11-30T23:02:28.281920+0000 mgr.smithi038.ldalxq (mgr 2023-11-30T23:02:29.774 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:02:29 smithi038 conmon[81956]: .14182) 333 : cluster [DBG] pgmap v248: 225 pgs: 225 active+clean; 7.2 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2023-11-30T23:02:30.398 DEBUG:teuthology.orchestra.run.smithi038:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:0dc074ce0b0b3b4f393f56dd32ef36884ebf45a9 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 3faf8b00-8fd3-11ee-95a2-87774f69a715 -- ceph orch ls -f json 2023-11-30T23:02:30.762 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:02:30 smithi167 conmon[87022]: audit 2023-11-30T23:02:28.868281+0000 mgr.smithi038.ldalxq (mgr.14182) 334 : audit [DBG] 2023-11-30T23:02:30.762 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:02:30 smithi167 conmon[87022]: from='client.14820 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-11-30T23:02:30.774 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:02:30 smithi038 conmon[81956]: audit 2023-11-30T23:02:28.868281+0000 mgr.smithi038.ldalxq (mgr.14182) 334 : audit [DBG] 2023-11-30T23:02:30.774 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:02:30 smithi038 conmon[81956]: from='client.14820 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-11-30T23:02:31.762 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:02:31 smithi167 conmon[87022]: cluster 2023-11-30T23:02:30.282777+0000 mgr.smithi038.ldalxq (mgr.14182) 335 : cluster [DBG] pgmap v249: 225 pgs: 225 active+clean; 7.2 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2023-11-30T23:02:31.775 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:02:31 smithi038 conmon[81956]: cluster 2023-11-30T23:02:30.282777+0000 mgr.smithi038.ldalxq 2023-11-30T23:02:31.775 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:02:31 smithi038 conmon[81956]: (mgr.14182) 335 : cluster [DBG] pgmap v249: 225 pgs: 225 active+clean; 7.2 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2023-11-30T23:02:32.246 INFO:teuthology.orchestra.run.smithi038.stdout: 2023-11-30T23:02:32.246 INFO:teuthology.orchestra.run.smithi038.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2023-11-30T22:54:47.122758Z", "last_refresh": "2023-11-30T22:58:55.866934Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2023-11-30T22:54:42.674972Z", "last_refresh": "2023-11-30T22:58:52.669086Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2023-11-30T22:54:45.114633Z", "last_refresh": "2023-11-30T22:58:55.867071Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2023-11-30T22:58:56.317378Z service:ingress.nfs.foo [INFO] \"service was created\"", "2023-11-30T23:02:07.111634Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi167.buykdj on smithi167: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi167-buykdj\n/bin/podman: stderr Error: error inspecting object: no such container ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi167-buykdj\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi167.buykdj\n/bin/podman: stderr Error: error inspecting object: no such container ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi167.buykdj\nDeploy daemon haproxy.nfs.foo.smithi167.buykdj ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi167 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2023-11-30T22:59:44Z\" level=warning msg=\"failed, retrying in 1s ... (1/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-11-30T23:00:21Z\" level=warning msg=\"failed, retrying in 1s ... (2/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-11-30T23:00:59Z\" level=warning msg=\"failed, retrying in 1s ... (3/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: Error determining manifest MIME type for docker://haproxy:2.3: Error reading manifest sha256:058f434330f13dbbc46761f3e9a76af2408e9ec1898c9ac5a8baf00b42e756a9 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi167 -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": 9049, "virtual_ip": "10.0.31.38/16"}, "status": {"created": "2023-11-30T22:58:56.312786Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.38/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2023-11-30T22:54:41.668043Z", "last_refresh": "2023-11-30T22:58:52.669241Z", "running": 2, "size": 2}}, {"events": ["2023-11-30T22:55:50.759225Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi038:172.21.15.38=smithi038", "smithi167:172.21.15.167=smithi167"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2023-11-30T22:55:50.756456Z", "last_refresh": "2023-11-30T22:58:52.669318Z", "running": 2, "size": 2}}, {"events": ["2023-11-30T22:58:56.311581Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2023-11-30T22:58:56.308071Z", "ports": [12049], "running": 0, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2023-11-30T22:54:46.136630Z", "last_refresh": "2023-11-30T22:58:52.669387Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2023-11-30T22:56:33.258058Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2023-11-30T22:56:33.253117Z", "last_refresh": "2023-11-30T22:58:52.669454Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2023-11-30T22:54:43.949497Z", "last_refresh": "2023-11-30T22:58:55.867217Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2023-11-30T22:58:52.105721Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2023-11-30T22:58:59.793467Z", "ports": [8800], "running": 0, "size": 2}}] 2023-11-30T23:02:32.746 INFO:tasks.cephadm:nfs.foo has 0/1 2023-11-30T23:02:33.012 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:02:32 smithi167 conmon[87022]: audit 2023-11-30T23:02:32.242524+0000 mgr.smithi038.ldalxq (mgr.14182) 336 : audit [DBG] from='client.14824 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-11-30T23:02:33.012 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:02:32 smithi167 conmon[87022]: 2023-11-30T23:02:33.012 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:02:32 smithi167 conmon[87022]: cluster 2023-11-30T23:02:32.283328+0000 mgr.smithi038.ldalxq (mgr.14182) 337 : cluster [DBG] pgmap v250: 225 pgs: 225 active+clean; 7.2 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2023-11-30T23:02:33.024 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:02:32 smithi038 conmon[81956]: audit 2023-11-30T23:02:32.242524+0000 mgr.smithi038.ldalxq (mgr 2023-11-30T23:02:33.024 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:02:32 smithi038 conmon[81956]: .14182) 336 : audit [DBG] from='client.14824 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-11-30T23:02:33.024 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:02:32 smithi038 conmon[81956]: cluster 2023-11-30T23:02:32.283328+0000 mgr.smithi038.ldalxq (mgr.14182) 337 : cluster [DBG] pgmap v250: 225 pgs: 225 active+clean; 7.2 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2023-11-30T23:02:33.749 DEBUG:teuthology.orchestra.run.smithi038:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:0dc074ce0b0b3b4f393f56dd32ef36884ebf45a9 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 3faf8b00-8fd3-11ee-95a2-87774f69a715 -- ceph orch ls -f json 2023-11-30T23:02:35.524 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:02:35 smithi038 conmon[81956]: cluster 2023-11-30T23:02:34.283848+0000 mgr.smithi038.ldalxq ( 2023-11-30T23:02:35.524 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:02:35 smithi038 conmon[81956]: mgr.14182) 338 : cluster [DBG] pgmap v251: 225 pgs: 225 active+clean; 7.2 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2023-11-30T23:02:35.573 INFO:teuthology.orchestra.run.smithi038.stdout: 2023-11-30T23:02:35.574 INFO:teuthology.orchestra.run.smithi038.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2023-11-30T22:54:47.122758Z", "last_refresh": "2023-11-30T22:58:55.866934Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2023-11-30T22:54:42.674972Z", "last_refresh": "2023-11-30T22:58:52.669086Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2023-11-30T22:54:45.114633Z", "last_refresh": "2023-11-30T22:58:55.867071Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2023-11-30T22:58:56.317378Z service:ingress.nfs.foo [INFO] \"service was created\"", "2023-11-30T23:02:07.111634Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi167.buykdj on smithi167: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi167-buykdj\n/bin/podman: stderr Error: error inspecting object: no such container ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi167-buykdj\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi167.buykdj\n/bin/podman: stderr Error: error inspecting object: no such container ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi167.buykdj\nDeploy daemon haproxy.nfs.foo.smithi167.buykdj ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi167 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2023-11-30T22:59:44Z\" level=warning msg=\"failed, retrying in 1s ... (1/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-11-30T23:00:21Z\" level=warning msg=\"failed, retrying in 1s ... (2/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-11-30T23:00:59Z\" level=warning msg=\"failed, retrying in 1s ... (3/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: Error determining manifest MIME type for docker://haproxy:2.3: Error reading manifest sha256:058f434330f13dbbc46761f3e9a76af2408e9ec1898c9ac5a8baf00b42e756a9 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi167 -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": 9049, "virtual_ip": "10.0.31.38/16"}, "status": {"created": "2023-11-30T22:58:56.312786Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.38/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2023-11-30T22:54:41.668043Z", "last_refresh": "2023-11-30T22:58:52.669241Z", "running": 2, "size": 2}}, {"events": ["2023-11-30T22:55:50.759225Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi038:172.21.15.38=smithi038", "smithi167:172.21.15.167=smithi167"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2023-11-30T22:55:50.756456Z", "last_refresh": "2023-11-30T22:58:52.669318Z", "running": 2, "size": 2}}, {"events": ["2023-11-30T22:58:56.311581Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2023-11-30T22:58:56.308071Z", "ports": [12049], "running": 0, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2023-11-30T22:54:46.136630Z", "last_refresh": "2023-11-30T22:58:52.669387Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2023-11-30T22:56:33.258058Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2023-11-30T22:56:33.253117Z", "last_refresh": "2023-11-30T22:58:52.669454Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2023-11-30T22:54:43.949497Z", "last_refresh": "2023-11-30T22:58:55.867217Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2023-11-30T22:58:52.105721Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2023-11-30T22:58:59.793467Z", "ports": [8800], "running": 0, "size": 2}}] 2023-11-30T23:02:35.762 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:02:35 smithi167 conmon[87022]: cluster 2023-11-30T23:02:34.283848+0000 mgr.smithi038.ldalxq (mgr.14182) 338 : cluster [DBG] 2023-11-30T23:02:35.762 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:02:35 smithi167 conmon[87022]: pgmap v251: 225 pgs: 225 active+clean; 7.2 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2023-11-30T23:02:36.010 INFO:tasks.cephadm:nfs.foo has 0/1 2023-11-30T23:02:36.762 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:02:36 smithi167 conmon[87022]: audit 2023-11-30T23:02:35.568857+0000 mgr.smithi038.ldalxq (mgr.14182) 339 : audit [DBG] from='client.14828 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-11-30T23:02:36.774 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:02:36 smithi038 conmon[81956]: audit 2023-11-30T23:02:35.568857+0000 mgr.smithi038.ldalxq (mgr.14182) 2023-11-30T23:02:36.774 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:02:36 smithi038 conmon[81956]: 339 : audit [DBG] from='client.14828 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-11-30T23:02:37.013 DEBUG:teuthology.orchestra.run.smithi038:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:0dc074ce0b0b3b4f393f56dd32ef36884ebf45a9 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 3faf8b00-8fd3-11ee-95a2-87774f69a715 -- ceph orch ls -f json 2023-11-30T23:02:37.614 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:02:37 smithi038 conmon[81956]: cluster 2023-11-30T23:02:36.284758+0000 mgr.smithi038.ldalxq (mgr.14182) 340 : cluster 2023-11-30T23:02:37.614 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:02:37 smithi038 conmon[81956]: [DBG] pgmap v252: 225 pgs: 225 active+clean; 7.2 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2023-11-30T23:02:37.762 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:02:37 smithi167 conmon[87022]: cluster 2023-11-30T23:02:36.284758+0000 mgr.smithi038.ldalxq (mgr.14182) 340 : cluster 2023-11-30T23:02:37.762 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:02:37 smithi167 conmon[87022]: [DBG] pgmap v252: 225 pgs: 225 active+clean; 7.2 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2023-11-30T23:02:38.828 INFO:teuthology.orchestra.run.smithi038.stdout: 2023-11-30T23:02:38.828 INFO:teuthology.orchestra.run.smithi038.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2023-11-30T22:54:47.122758Z", "last_refresh": "2023-11-30T22:58:55.866934Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2023-11-30T22:54:42.674972Z", "last_refresh": "2023-11-30T22:58:52.669086Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2023-11-30T22:54:45.114633Z", "last_refresh": "2023-11-30T22:58:55.867071Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2023-11-30T22:58:56.317378Z service:ingress.nfs.foo [INFO] \"service was created\"", "2023-11-30T23:02:07.111634Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi167.buykdj on smithi167: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi167-buykdj\n/bin/podman: stderr Error: error inspecting object: no such container ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi167-buykdj\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi167.buykdj\n/bin/podman: stderr Error: error inspecting object: no such container ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi167.buykdj\nDeploy daemon haproxy.nfs.foo.smithi167.buykdj ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi167 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2023-11-30T22:59:44Z\" level=warning msg=\"failed, retrying in 1s ... (1/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-11-30T23:00:21Z\" level=warning msg=\"failed, retrying in 1s ... (2/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-11-30T23:00:59Z\" level=warning msg=\"failed, retrying in 1s ... (3/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: Error determining manifest MIME type for docker://haproxy:2.3: Error reading manifest sha256:058f434330f13dbbc46761f3e9a76af2408e9ec1898c9ac5a8baf00b42e756a9 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi167 -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": 9049, "virtual_ip": "10.0.31.38/16"}, "status": {"created": "2023-11-30T22:58:56.312786Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.38/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2023-11-30T22:54:41.668043Z", "last_refresh": "2023-11-30T22:58:52.669241Z", "running": 2, "size": 2}}, {"events": ["2023-11-30T22:55:50.759225Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi038:172.21.15.38=smithi038", "smithi167:172.21.15.167=smithi167"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2023-11-30T22:55:50.756456Z", "last_refresh": "2023-11-30T22:58:52.669318Z", "running": 2, "size": 2}}, {"events": ["2023-11-30T22:58:56.311581Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2023-11-30T22:58:56.308071Z", "ports": [12049], "running": 0, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2023-11-30T22:54:46.136630Z", "last_refresh": "2023-11-30T22:58:52.669387Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2023-11-30T22:56:33.258058Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2023-11-30T22:56:33.253117Z", "last_refresh": "2023-11-30T22:58:52.669454Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2023-11-30T22:54:43.949497Z", "last_refresh": "2023-11-30T22:58:55.867217Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2023-11-30T22:58:52.105721Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2023-11-30T22:58:59.793467Z", "ports": [8800], "running": 0, "size": 2}}] 2023-11-30T23:02:39.280 INFO:tasks.cephadm:nfs.foo has 0/1 2023-11-30T23:02:39.524 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:02:39 smithi038 conmon[81956]: cluster 2023-11-30T23:02:38.285478+0000 mgr.smithi038.ldalxq 2023-11-30T23:02:39.524 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:02:39 smithi038 conmon[81956]: (mgr.14182) 341 : cluster [DBG] pgmap v253: 225 pgs: 225 active+clean; 7.2 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2023-11-30T23:02:39.763 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:02:39 smithi167 conmon[87022]: cluster 2023-11-30T23:02:38.285478+0000 mgr.smithi038.ldalxq (mgr.14182) 341 : cluster [DBG] pgmap v253: 225 pgs: 225 active+clean; 7.2 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2023-11-30T23:02:39.763 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:02:39 smithi167 conmon[87022]: 2023-11-30T23:02:40.281 DEBUG:teuthology.orchestra.run.smithi038:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:0dc074ce0b0b3b4f393f56dd32ef36884ebf45a9 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 3faf8b00-8fd3-11ee-95a2-87774f69a715 -- ceph orch ls -f json 2023-11-30T23:02:40.762 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:02:40 smithi167 conmon[87022]: audit 2023-11-30T23:02:38.824342+0000 mgr.smithi038.ldalxq (mgr.14182) 342 : audit [DBG] from='client.14832 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-11-30T23:02:40.774 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:02:40 smithi038 conmon[81956]: audit 2023-11-30T23:02:38.824342+0000 mgr.smithi038.ldalxq ( 2023-11-30T23:02:40.774 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:02:40 smithi038 conmon[81956]: mgr.14182) 342 : audit [DBG] from='client.14832 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-11-30T23:02:41.524 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:02:41 smithi038 conmon[81956]: cluster 2023-11-30T23:02:40.286256+0000 mgr.smithi038.ldalxq (mgr.14182) 343 : cluster [DBG] pgmap v254: 225 pgs: 225 active+clean; 7.2 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2023-11-30T23:02:41.762 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:02:41 smithi167 conmon[87022]: cluster 2023-11-30T23:02:40.286256+0000 mgr.smithi038.ldalxq (mgr.14182) 343 : cluster [DBG] 2023-11-30T23:02:41.762 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:02:41 smithi167 conmon[87022]: pgmap v254: 225 pgs: 225 active+clean; 7.2 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2023-11-30T23:02:42.017 INFO:teuthology.orchestra.run.smithi038.stdout: 2023-11-30T23:02:42.017 INFO:teuthology.orchestra.run.smithi038.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2023-11-30T22:54:47.122758Z", "last_refresh": "2023-11-30T22:58:55.866934Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2023-11-30T22:54:42.674972Z", "last_refresh": "2023-11-30T22:58:52.669086Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2023-11-30T22:54:45.114633Z", "last_refresh": "2023-11-30T22:58:55.867071Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2023-11-30T22:58:56.317378Z service:ingress.nfs.foo [INFO] \"service was created\"", "2023-11-30T23:02:07.111634Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi167.buykdj on smithi167: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi167-buykdj\n/bin/podman: stderr Error: error inspecting object: no such container ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi167-buykdj\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi167.buykdj\n/bin/podman: stderr Error: error inspecting object: no such container ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi167.buykdj\nDeploy daemon haproxy.nfs.foo.smithi167.buykdj ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi167 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2023-11-30T22:59:44Z\" level=warning msg=\"failed, retrying in 1s ... (1/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-11-30T23:00:21Z\" level=warning msg=\"failed, retrying in 1s ... (2/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-11-30T23:00:59Z\" level=warning msg=\"failed, retrying in 1s ... (3/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: Error determining manifest MIME type for docker://haproxy:2.3: Error reading manifest sha256:058f434330f13dbbc46761f3e9a76af2408e9ec1898c9ac5a8baf00b42e756a9 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi167 -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": 9049, "virtual_ip": "10.0.31.38/16"}, "status": {"created": "2023-11-30T22:58:56.312786Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.38/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2023-11-30T22:54:41.668043Z", "last_refresh": "2023-11-30T22:58:52.669241Z", "running": 2, "size": 2}}, {"events": ["2023-11-30T22:55:50.759225Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi038:172.21.15.38=smithi038", "smithi167:172.21.15.167=smithi167"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2023-11-30T22:55:50.756456Z", "last_refresh": "2023-11-30T22:58:52.669318Z", "running": 2, "size": 2}}, {"events": ["2023-11-30T22:58:56.311581Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2023-11-30T22:58:56.308071Z", "ports": [12049], "running": 0, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2023-11-30T22:54:46.136630Z", "last_refresh": "2023-11-30T22:58:52.669387Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2023-11-30T22:56:33.258058Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2023-11-30T22:56:33.253117Z", "last_refresh": "2023-11-30T22:58:52.669454Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2023-11-30T22:54:43.949497Z", "last_refresh": "2023-11-30T22:58:55.867217Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2023-11-30T22:58:52.105721Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2023-11-30T22:58:59.793467Z", "ports": [8800], "running": 0, "size": 2}}] 2023-11-30T23:02:42.434 INFO:tasks.cephadm:nfs.foo has 0/1 2023-11-30T23:02:42.775 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:02:42 smithi038 conmon[81956]: audit 2023-11-30T23:02:42.013196+0000 mgr.smithi038.ldalxq (mgr.14182) 344 : audit [DBG] from='client.14836 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-11-30T23:02:42.776 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:02:42 smithi038 conmon[81956]: cluster 2023-11-30T23:02:42.286801+0000 mgr.smithi038.ldalxq (mgr.14182) 345 : cluster [DBG] pgmap v255: 225 pgs: 225 active+clean; 7.2 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2023-11-30T23:02:43.014 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:02:42 smithi167 conmon[87022]: audit 2023-11-30T23:02:42.013196+0000 mgr.smithi038.ldalxq (mgr.14182) 344 : audit [DBG] from='client.14836 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-11-30T23:02:43.014 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:02:42 smithi167 conmon[87022]: cluster 2023-11-30T23:02:42.286801+0000 mgr.smithi038.ldalxq (mgr.14182) 345 : cluster [DBG] pgmap v255: 225 pgs: 225 active+clean; 7.2 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2023-11-30T23:02:43.435 DEBUG:teuthology.orchestra.run.smithi038:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:0dc074ce0b0b3b4f393f56dd32ef36884ebf45a9 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 3faf8b00-8fd3-11ee-95a2-87774f69a715 -- ceph orch ls -f json 2023-11-30T23:02:45.163 INFO:teuthology.orchestra.run.smithi038.stdout: 2023-11-30T23:02:45.163 INFO:teuthology.orchestra.run.smithi038.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2023-11-30T22:54:47.122758Z", "last_refresh": "2023-11-30T22:58:55.866934Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2023-11-30T22:54:42.674972Z", "last_refresh": "2023-11-30T22:58:52.669086Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2023-11-30T22:54:45.114633Z", "last_refresh": "2023-11-30T22:58:55.867071Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2023-11-30T22:58:56.317378Z service:ingress.nfs.foo [INFO] \"service was created\"", "2023-11-30T23:02:07.111634Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi167.buykdj on smithi167: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi167-buykdj\n/bin/podman: stderr Error: error inspecting object: no such container ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi167-buykdj\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi167.buykdj\n/bin/podman: stderr Error: error inspecting object: no such container ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi167.buykdj\nDeploy daemon haproxy.nfs.foo.smithi167.buykdj ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi167 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2023-11-30T22:59:44Z\" level=warning msg=\"failed, retrying in 1s ... (1/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-11-30T23:00:21Z\" level=warning msg=\"failed, retrying in 1s ... (2/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-11-30T23:00:59Z\" level=warning msg=\"failed, retrying in 1s ... (3/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: Error determining manifest MIME type for docker://haproxy:2.3: Error reading manifest sha256:058f434330f13dbbc46761f3e9a76af2408e9ec1898c9ac5a8baf00b42e756a9 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi167 -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": 9049, "virtual_ip": "10.0.31.38/16"}, "status": {"created": "2023-11-30T22:58:56.312786Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.38/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2023-11-30T22:54:41.668043Z", "last_refresh": "2023-11-30T22:58:52.669241Z", "running": 2, "size": 2}}, {"events": ["2023-11-30T22:55:50.759225Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi038:172.21.15.38=smithi038", "smithi167:172.21.15.167=smithi167"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2023-11-30T22:55:50.756456Z", "last_refresh": "2023-11-30T22:58:52.669318Z", "running": 2, "size": 2}}, {"events": ["2023-11-30T22:58:56.311581Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2023-11-30T22:58:56.308071Z", "ports": [12049], "running": 0, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2023-11-30T22:54:46.136630Z", "last_refresh": "2023-11-30T22:58:52.669387Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2023-11-30T22:56:33.258058Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2023-11-30T22:56:33.253117Z", "last_refresh": "2023-11-30T22:58:52.669454Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2023-11-30T22:54:43.949497Z", "last_refresh": "2023-11-30T22:58:55.867217Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2023-11-30T22:58:52.105721Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2023-11-30T22:58:59.793467Z", "ports": [8800], "running": 0, "size": 2}}] 2023-11-30T23:02:45.523 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:02:45 smithi038 conmon[81956]: cluster 2023-11-30T23:02:44.287502+0000 mgr.smithi038.ldalxq (mgr.14182) 346 : cluster [DBG] pgmap v256: 225 pgs: 225 active+clean; 7.2 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2023-11-30T23:02:45.592 INFO:tasks.cephadm:nfs.foo has 0/1 2023-11-30T23:02:45.762 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:02:45 smithi167 conmon[87022]: cluster 2023-11-30T23:02:44.287502+0000 mgr.smithi038.ldalxq (mgr.14182) 346 : cluster [DBG] pgmap v256: 225 pgs: 225 active+clean; 7.2 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2023-11-30T23:02:46.594 DEBUG:teuthology.orchestra.run.smithi038:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:0dc074ce0b0b3b4f393f56dd32ef36884ebf45a9 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 3faf8b00-8fd3-11ee-95a2-87774f69a715 -- ceph orch ls -f json 2023-11-30T23:02:46.625 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:02:46 smithi038 conmon[81956]: audit 2023-11-30T23:02:45.159675+0000 mgr.smithi038.ldalxq (mgr.14182) 347 : audit [DBG] from='client.14840 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-11-30T23:02:46.762 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:02:46 smithi167 conmon[87022]: audit 2023-11-30T23:02:45.159675+0000 mgr.smithi038.ldalxq (mgr.14182) 347 : audit 2023-11-30T23:02:46.762 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:02:46 smithi167 conmon[87022]: [DBG] from='client.14840 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-11-30T23:02:47.524 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:02:47 smithi038 conmon[81956]: cluster 2023-11-30T23:02:46.288554+0000 mgr.smithi038.ldalxq (mgr.14182) 348 2023-11-30T23:02:47.524 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:02:47 smithi038 conmon[81956]: : cluster [DBG] pgmap v257: 225 pgs: 225 active+clean; 7.2 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2023-11-30T23:02:47.762 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:02:47 smithi167 conmon[87022]: cluster 2023-11-30T23:02:46.288554+0000 mgr.smithi038.ldalxq (mgr.14182) 348 : cluster [DBG] pgmap v257: 225 pgs: 225 active+clean; 7.2 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2023-11-30T23:02:48.397 INFO:teuthology.orchestra.run.smithi038.stdout: 2023-11-30T23:02:48.397 INFO:teuthology.orchestra.run.smithi038.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2023-11-30T22:54:47.122758Z", "last_refresh": "2023-11-30T22:58:55.866934Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2023-11-30T22:54:42.674972Z", "last_refresh": "2023-11-30T22:58:52.669086Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2023-11-30T22:54:45.114633Z", "last_refresh": "2023-11-30T22:58:55.867071Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2023-11-30T22:58:56.317378Z service:ingress.nfs.foo [INFO] \"service was created\"", "2023-11-30T23:02:07.111634Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi167.buykdj on smithi167: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi167-buykdj\n/bin/podman: stderr Error: error inspecting object: no such container ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi167-buykdj\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi167.buykdj\n/bin/podman: stderr Error: error inspecting object: no such container ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi167.buykdj\nDeploy daemon haproxy.nfs.foo.smithi167.buykdj ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi167 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2023-11-30T22:59:44Z\" level=warning msg=\"failed, retrying in 1s ... (1/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-11-30T23:00:21Z\" level=warning msg=\"failed, retrying in 1s ... (2/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-11-30T23:00:59Z\" level=warning msg=\"failed, retrying in 1s ... (3/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: Error determining manifest MIME type for docker://haproxy:2.3: Error reading manifest sha256:058f434330f13dbbc46761f3e9a76af2408e9ec1898c9ac5a8baf00b42e756a9 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi167 -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": 9049, "virtual_ip": "10.0.31.38/16"}, "status": {"created": "2023-11-30T22:58:56.312786Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.38/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2023-11-30T22:54:41.668043Z", "last_refresh": "2023-11-30T22:58:52.669241Z", "running": 2, "size": 2}}, {"events": ["2023-11-30T22:55:50.759225Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi038:172.21.15.38=smithi038", "smithi167:172.21.15.167=smithi167"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2023-11-30T22:55:50.756456Z", "last_refresh": "2023-11-30T22:58:52.669318Z", "running": 2, "size": 2}}, {"events": ["2023-11-30T22:58:56.311581Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2023-11-30T22:58:56.308071Z", "ports": [12049], "running": 0, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2023-11-30T22:54:46.136630Z", "last_refresh": "2023-11-30T22:58:52.669387Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2023-11-30T22:56:33.258058Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2023-11-30T22:56:33.253117Z", "last_refresh": "2023-11-30T22:58:52.669454Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2023-11-30T22:54:43.949497Z", "last_refresh": "2023-11-30T22:58:55.867217Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2023-11-30T22:58:52.105721Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2023-11-30T22:58:59.793467Z", "ports": [8800], "running": 0, "size": 2}}] 2023-11-30T23:02:48.844 INFO:tasks.cephadm:nfs.foo has 0/1 2023-11-30T23:02:49.762 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:02:49 smithi167 conmon[87022]: cluster 2023-11-30T23:02:48.289129+0000 mgr.smithi038.ldalxq (mgr.14182) 349 : cluster [DBG] pgmap v258: 225 pgs: 225 active+clean; 7.2 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2023-11-30T23:02:49.762 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:02:49 smithi167 conmon[87022]: audit 2023-11-30T23:02:49.762 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:02:49 smithi167 conmon[87022]: 2023-11-30T23:02:48.393686+0000 mgr.smithi038.ldalxq (mgr.14182) 350 : audit [DBG] from='client.14844 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-11-30T23:02:49.774 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:02:49 smithi038 conmon[81956]: cluster 2023-11-30T23:02:48.289129+0000 mgr.smithi038.ldalxq (mgr.14182) 349 : cluster [DBG] pgmap v258: 225 pgs: 225 active+clean; 7.2 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2023-11-30T23:02:49.774 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:02:49 smithi038 conmon[81956]: audit 2023-11-30T23:02:48.393686+0000 mgr.smithi038.ldalxq (mgr.14182) 350 : audit [DBG] from='client.14844 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-11-30T23:02:49.845 DEBUG:teuthology.orchestra.run.smithi038:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:0dc074ce0b0b3b4f393f56dd32ef36884ebf45a9 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 3faf8b00-8fd3-11ee-95a2-87774f69a715 -- ceph orch ls -f json 2023-11-30T23:02:51.524 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:02:51 smithi038 conmon[81956]: cluster 2023-11-30T23:02:50.290046+0000 mgr.smithi038.ldalxq (mgr. 2023-11-30T23:02:51.524 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:02:51 smithi038 conmon[81956]: 14182) 351 : cluster [DBG] pgmap v259: 225 pgs: 225 active+clean; 7.2 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2023-11-30T23:02:51.649 INFO:teuthology.orchestra.run.smithi038.stdout: 2023-11-30T23:02:51.649 INFO:teuthology.orchestra.run.smithi038.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2023-11-30T22:54:47.122758Z", "last_refresh": "2023-11-30T22:58:55.866934Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2023-11-30T22:54:42.674972Z", "last_refresh": "2023-11-30T22:58:52.669086Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2023-11-30T22:54:45.114633Z", "last_refresh": "2023-11-30T22:58:55.867071Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2023-11-30T22:58:56.317378Z service:ingress.nfs.foo [INFO] \"service was created\"", "2023-11-30T23:02:07.111634Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi167.buykdj on smithi167: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi167-buykdj\n/bin/podman: stderr Error: error inspecting object: no such container ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi167-buykdj\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi167.buykdj\n/bin/podman: stderr Error: error inspecting object: no such container ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi167.buykdj\nDeploy daemon haproxy.nfs.foo.smithi167.buykdj ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi167 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2023-11-30T22:59:44Z\" level=warning msg=\"failed, retrying in 1s ... (1/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-11-30T23:00:21Z\" level=warning msg=\"failed, retrying in 1s ... (2/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-11-30T23:00:59Z\" level=warning msg=\"failed, retrying in 1s ... (3/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: Error determining manifest MIME type for docker://haproxy:2.3: Error reading manifest sha256:058f434330f13dbbc46761f3e9a76af2408e9ec1898c9ac5a8baf00b42e756a9 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi167 -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": 9049, "virtual_ip": "10.0.31.38/16"}, "status": {"created": "2023-11-30T22:58:56.312786Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.38/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2023-11-30T22:54:41.668043Z", "last_refresh": "2023-11-30T22:58:52.669241Z", "running": 2, "size": 2}}, {"events": ["2023-11-30T22:55:50.759225Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi038:172.21.15.38=smithi038", "smithi167:172.21.15.167=smithi167"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2023-11-30T22:55:50.756456Z", "last_refresh": "2023-11-30T22:58:52.669318Z", "running": 2, "size": 2}}, {"events": ["2023-11-30T22:58:56.311581Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2023-11-30T22:58:56.308071Z", "ports": [12049], "running": 0, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2023-11-30T22:54:46.136630Z", "last_refresh": "2023-11-30T22:58:52.669387Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2023-11-30T22:56:33.258058Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2023-11-30T22:56:33.253117Z", "last_refresh": "2023-11-30T22:58:52.669454Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2023-11-30T22:54:43.949497Z", "last_refresh": "2023-11-30T22:58:55.867217Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2023-11-30T22:58:52.105721Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2023-11-30T22:58:59.793467Z", "ports": [8800], "running": 0, "size": 2}}] 2023-11-30T23:02:51.762 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:02:51 smithi167 conmon[87022]: cluster 2023-11-30T23:02:50.290046+0000 mgr.smithi038.ldalxq (mgr.14182) 351 : cluster [DBG] pgmap v259: 225 pgs: 225 active+clean; 7.2 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2023-11-30T23:02:51.762 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:02:51 smithi167 conmon[87022]: 2023-11-30T23:02:52.093 INFO:tasks.cephadm:nfs.foo has 0/1 2023-11-30T23:02:53.012 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:02:52 smithi167 conmon[87022]: audit 2023-11-30T23:02:51.645448+0000 mgr.smithi038.ldalxq (mgr.14182) 352 : audit [DBG] from='client.14848 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-11-30T23:02:53.012 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:02:52 smithi167 conmon[87022]: 2023-11-30T23:02:53.012 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:02:52 smithi167 conmon[87022]: cluster 2023-11-30T23:02:52.290541+0000 mgr.smithi038.ldalxq (mgr.14182) 353 : cluster [DBG] pgmap v260: 225 pgs: 225 active+clean; 7.2 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2023-11-30T23:02:53.024 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:02:52 smithi038 conmon[81956]: audit 2023-11-30T23:02:51.645448+0000 mgr.smithi038.ldalxq (mgr.14182) 352 : audit [DBG] from='client.14848 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-11-30T23:02:53.024 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:02:52 smithi038 conmon[81956]: cluster 2023-11-30T23:02:52.290541+0000 mgr.smithi038.ldalxq (mgr.14182) 353 : cluster [DBG] pgmap v260: 225 pgs: 225 active+clean; 7.2 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2023-11-30T23:02:53.094 DEBUG:teuthology.orchestra.run.smithi038:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:0dc074ce0b0b3b4f393f56dd32ef36884ebf45a9 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 3faf8b00-8fd3-11ee-95a2-87774f69a715 -- ceph orch ls -f json 2023-11-30T23:02:54.896 INFO:teuthology.orchestra.run.smithi038.stdout: 2023-11-30T23:02:54.896 INFO:teuthology.orchestra.run.smithi038.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2023-11-30T22:54:47.122758Z", "last_refresh": "2023-11-30T22:58:55.866934Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2023-11-30T22:54:42.674972Z", "last_refresh": "2023-11-30T22:58:52.669086Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2023-11-30T22:54:45.114633Z", "last_refresh": "2023-11-30T22:58:55.867071Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2023-11-30T22:58:56.317378Z service:ingress.nfs.foo [INFO] \"service was created\"", "2023-11-30T23:02:07.111634Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi167.buykdj on smithi167: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi167-buykdj\n/bin/podman: stderr Error: error inspecting object: no such container ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi167-buykdj\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi167.buykdj\n/bin/podman: stderr Error: error inspecting object: no such container ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi167.buykdj\nDeploy daemon haproxy.nfs.foo.smithi167.buykdj ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi167 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2023-11-30T22:59:44Z\" level=warning msg=\"failed, retrying in 1s ... (1/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-11-30T23:00:21Z\" level=warning msg=\"failed, retrying in 1s ... (2/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-11-30T23:00:59Z\" level=warning msg=\"failed, retrying in 1s ... (3/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: Error determining manifest MIME type for docker://haproxy:2.3: Error reading manifest sha256:058f434330f13dbbc46761f3e9a76af2408e9ec1898c9ac5a8baf00b42e756a9 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi167 -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": 9049, "virtual_ip": "10.0.31.38/16"}, "status": {"created": "2023-11-30T22:58:56.312786Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.38/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2023-11-30T22:54:41.668043Z", "last_refresh": "2023-11-30T22:58:52.669241Z", "running": 2, "size": 2}}, {"events": ["2023-11-30T22:55:50.759225Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi038:172.21.15.38=smithi038", "smithi167:172.21.15.167=smithi167"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2023-11-30T22:55:50.756456Z", "last_refresh": "2023-11-30T22:58:52.669318Z", "running": 2, "size": 2}}, {"events": ["2023-11-30T22:58:56.311581Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2023-11-30T22:58:56.308071Z", "ports": [12049], "running": 0, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2023-11-30T22:54:46.136630Z", "last_refresh": "2023-11-30T22:58:52.669387Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2023-11-30T22:56:33.258058Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2023-11-30T22:56:33.253117Z", "last_refresh": "2023-11-30T22:58:52.669454Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2023-11-30T22:54:43.949497Z", "last_refresh": "2023-11-30T22:58:55.867217Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2023-11-30T22:58:52.105721Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2023-11-30T22:58:59.793467Z", "ports": [8800], "running": 0, "size": 2}}] 2023-11-30T23:02:55.342 INFO:tasks.cephadm:nfs.foo has 0/1 2023-11-30T23:02:55.762 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:02:55 smithi167 conmon[87022]: cluster 2023-11-30T23:02:54.291084+0000 mgr.smithi038.ldalxq (mgr.14182) 354 : cluster 2023-11-30T23:02:55.762 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:02:55 smithi167 conmon[87022]: [DBG] pgmap v261: 225 pgs: 225 active+clean; 7.2 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2023-11-30T23:02:55.774 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:02:55 smithi038 conmon[81956]: cluster 2023-11-30T23:02:54.291084+0000 mgr.smithi038.ldalxq (mgr.14182) 354 : cluster [DBG] pgmap v261: 225 pgs: 225 active+clean; 7.2 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2023-11-30T23:02:56.344 DEBUG:teuthology.orchestra.run.smithi038:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:0dc074ce0b0b3b4f393f56dd32ef36884ebf45a9 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 3faf8b00-8fd3-11ee-95a2-87774f69a715 -- ceph orch ls -f json 2023-11-30T23:02:56.762 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:02:56 smithi167 conmon[87022]: audit 2023-11-30T23:02:54.892556+0000 mgr.smithi038.ldalxq (mgr.14182) 355 : audit [DBG] from='client.14852 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-11-30T23:02:56.762 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:02:56 smithi167 conmon[87022]: 2023-11-30T23:02:56.774 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:02:56 smithi038 conmon[81956]: audit 2023-11-30T23:02:54.892556+0000 mgr.smithi038.ldalxq (mgr.14182) 355 : 2023-11-30T23:02:56.774 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:02:56 smithi038 conmon[81956]: audit [DBG] from='client.14852 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-11-30T23:02:57.524 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:02:57 smithi038 conmon[81956]: cluster 2023-11-30T23:02:56.291795+0000 2023-11-30T23:02:57.524 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:02:57 smithi038 conmon[81956]: mgr.smithi038.ldalxq (mgr.14182) 356 : cluster [DBG] pgmap v262: 225 pgs: 225 active+clean; 7.2 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2023-11-30T23:02:57.762 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:02:57 smithi167 conmon[87022]: cluster 2023-11-30T23:02:56.291795+0000 mgr.smithi038.ldalxq (mgr.14182) 356 : cluster [DBG] 2023-11-30T23:02:57.762 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:02:57 smithi167 conmon[87022]: pgmap v262: 225 pgs: 225 active+clean; 7.2 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2023-11-30T23:02:58.068 INFO:teuthology.orchestra.run.smithi038.stdout: 2023-11-30T23:02:58.068 INFO:teuthology.orchestra.run.smithi038.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2023-11-30T22:54:47.122758Z", "last_refresh": "2023-11-30T22:58:55.866934Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2023-11-30T22:54:42.674972Z", "last_refresh": "2023-11-30T22:58:52.669086Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2023-11-30T22:54:45.114633Z", "last_refresh": "2023-11-30T22:58:55.867071Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2023-11-30T22:58:56.317378Z service:ingress.nfs.foo [INFO] \"service was created\"", "2023-11-30T23:02:07.111634Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi167.buykdj on smithi167: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi167-buykdj\n/bin/podman: stderr Error: error inspecting object: no such container ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi167-buykdj\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi167.buykdj\n/bin/podman: stderr Error: error inspecting object: no such container ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi167.buykdj\nDeploy daemon haproxy.nfs.foo.smithi167.buykdj ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi167 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2023-11-30T22:59:44Z\" level=warning msg=\"failed, retrying in 1s ... (1/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-11-30T23:00:21Z\" level=warning msg=\"failed, retrying in 1s ... (2/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-11-30T23:00:59Z\" level=warning msg=\"failed, retrying in 1s ... (3/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: Error determining manifest MIME type for docker://haproxy:2.3: Error reading manifest sha256:058f434330f13dbbc46761f3e9a76af2408e9ec1898c9ac5a8baf00b42e756a9 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi167 -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": 9049, "virtual_ip": "10.0.31.38/16"}, "status": {"created": "2023-11-30T22:58:56.312786Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.38/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2023-11-30T22:54:41.668043Z", "last_refresh": "2023-11-30T22:58:52.669241Z", "running": 2, "size": 2}}, {"events": ["2023-11-30T22:55:50.759225Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi038:172.21.15.38=smithi038", "smithi167:172.21.15.167=smithi167"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2023-11-30T22:55:50.756456Z", "last_refresh": "2023-11-30T22:58:52.669318Z", "running": 2, "size": 2}}, {"events": ["2023-11-30T22:58:56.311581Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2023-11-30T22:58:56.308071Z", "ports": [12049], "running": 0, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2023-11-30T22:54:46.136630Z", "last_refresh": "2023-11-30T22:58:52.669387Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2023-11-30T22:56:33.258058Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2023-11-30T22:56:33.253117Z", "last_refresh": "2023-11-30T22:58:52.669454Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2023-11-30T22:54:43.949497Z", "last_refresh": "2023-11-30T22:58:55.867217Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2023-11-30T22:58:52.105721Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2023-11-30T22:58:59.793467Z", "ports": [8800], "running": 0, "size": 2}}] 2023-11-30T23:02:58.705 INFO:tasks.cephadm:nfs.foo has 0/1 2023-11-30T23:02:59.706 DEBUG:teuthology.orchestra.run.smithi038:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:0dc074ce0b0b3b4f393f56dd32ef36884ebf45a9 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 3faf8b00-8fd3-11ee-95a2-87774f69a715 -- ceph orch ls -f json 2023-11-30T23:02:59.736 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:02:59 smithi038 conmon[81956]: audit 2023-11-30T23:02:58.065130+0000 mgr.smithi038.ldalxq (mgr.14182) 2023-11-30T23:02:59.737 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:02:59 smithi038 conmon[81956]: 357 : audit [DBG] from='client.14856 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-11-30T23:02:59.737 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:02:59 smithi038 conmon[81956]: cluster 2023-11-30T23:02:58.292520 2023-11-30T23:02:59.737 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:02:59 smithi038 conmon[81956]: +0000 mgr.smithi038.ldalxq (mgr.14182) 358 : cluster [DBG] pgmap v263: 225 pgs: 225 active+clean; 7.2 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2023-11-30T23:02:59.762 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:02:59 smithi167 conmon[87022]: audit 2023-11-30T23:02:58.065130+0000 mgr.smithi038.ldalxq (mgr.14182) 357 : audit [DBG] 2023-11-30T23:02:59.762 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:02:59 smithi167 conmon[87022]: from='client.14856 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-11-30T23:02:59.762 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:02:59 smithi167 conmon[87022]: cluster 2023-11-30T23:02:58.292520+0000 mgr.smithi038.ldalxq (mgr.14182) 358 : cluster [DBG] pgmap v263: 225 pgs: 225 active+clean; 7.2 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2023-11-30T23:03:01.420 INFO:teuthology.orchestra.run.smithi038.stdout: 2023-11-30T23:03:01.421 INFO:teuthology.orchestra.run.smithi038.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2023-11-30T22:54:47.122758Z", "last_refresh": "2023-11-30T22:58:55.866934Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2023-11-30T22:54:42.674972Z", "last_refresh": "2023-11-30T22:58:52.669086Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2023-11-30T22:54:45.114633Z", "last_refresh": "2023-11-30T22:58:55.867071Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2023-11-30T22:58:56.317378Z service:ingress.nfs.foo [INFO] \"service was created\"", "2023-11-30T23:02:07.111634Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi167.buykdj on smithi167: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi167-buykdj\n/bin/podman: stderr Error: error inspecting object: no such container ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi167-buykdj\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi167.buykdj\n/bin/podman: stderr Error: error inspecting object: no such container ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi167.buykdj\nDeploy daemon haproxy.nfs.foo.smithi167.buykdj ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi167 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2023-11-30T22:59:44Z\" level=warning msg=\"failed, retrying in 1s ... (1/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-11-30T23:00:21Z\" level=warning msg=\"failed, retrying in 1s ... (2/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-11-30T23:00:59Z\" level=warning msg=\"failed, retrying in 1s ... (3/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: Error determining manifest MIME type for docker://haproxy:2.3: Error reading manifest sha256:058f434330f13dbbc46761f3e9a76af2408e9ec1898c9ac5a8baf00b42e756a9 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi167 -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": 9049, "virtual_ip": "10.0.31.38/16"}, "status": {"created": "2023-11-30T22:58:56.312786Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.38/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2023-11-30T22:54:41.668043Z", "last_refresh": "2023-11-30T22:58:52.669241Z", "running": 2, "size": 2}}, {"events": ["2023-11-30T22:55:50.759225Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi038:172.21.15.38=smithi038", "smithi167:172.21.15.167=smithi167"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2023-11-30T22:55:50.756456Z", "last_refresh": "2023-11-30T22:58:52.669318Z", "running": 2, "size": 2}}, {"events": ["2023-11-30T22:58:56.311581Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2023-11-30T22:58:56.308071Z", "ports": [12049], "running": 0, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2023-11-30T22:54:46.136630Z", "last_refresh": "2023-11-30T22:58:52.669387Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2023-11-30T22:56:33.258058Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2023-11-30T22:56:33.253117Z", "last_refresh": "2023-11-30T22:58:52.669454Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2023-11-30T22:54:43.949497Z", "last_refresh": "2023-11-30T22:58:55.867217Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2023-11-30T22:58:52.105721Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2023-11-30T22:58:59.793467Z", "ports": [8800], "running": 0, "size": 2}}] 2023-11-30T23:03:01.653 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:03:01 smithi038 conmon[81956]: cluster 2023-11-30T23 2023-11-30T23:03:01.653 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:03:01 smithi038 conmon[81956]: :03:00.293437+0000 mgr.smithi038.ldalxq (mgr.14182) 359 : cluster [DBG] pgmap v264: 225 pgs: 225 active+clean; 7.2 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2023-11-30T23:03:01.762 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:03:01 smithi167 conmon[87022]: cluster 2023-11-30T23:03:00.293437+0000 mgr.smithi038.ldalxq (mgr.14182) 359 : cluster [DBG] pgmap v264: 225 pgs: 225 active+clean; 7.2 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2023-11-30T23:03:01.762 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:03:01 smithi167 conmon[87022]: 2023-11-30T23:03:01.951 INFO:tasks.cephadm:nfs.foo has 0/1 2023-11-30T23:03:02.762 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:03:02 smithi167 conmon[87022]: audit 2023-11-30T23:03:01.416163+0000 mgr.smithi038.ldalxq (mgr.14182) 360 : audit 2023-11-30T23:03:02.762 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:03:02 smithi167 conmon[87022]: [DBG] from='client.14860 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-11-30T23:03:02.774 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:03:02 smithi038 conmon[81956]: audit 2023-11-30T23:03:01.416163+0000 mgr.smithi038.ldalxq (mgr.14182) 360 : audit 2023-11-30T23:03:02.774 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:03:02 smithi038 conmon[81956]: [DBG] from='client.14860 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-11-30T23:03:02.953 DEBUG:teuthology.orchestra.run.smithi038:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:0dc074ce0b0b3b4f393f56dd32ef36884ebf45a9 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 3faf8b00-8fd3-11ee-95a2-87774f69a715 -- ceph orch ls -f json 2023-11-30T23:03:03.712 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:03:03 smithi038 conmon[81956]: cluster 2023-11-30T23:03:02.293953+0000 mgr.smithi038.ldalxq (mgr 2023-11-30T23:03:03.712 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:03:03 smithi038 conmon[81956]: .14182) 361 : cluster [DBG] pgmap v265: 225 pgs: 225 active+clean; 7.2 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2023-11-30T23:03:03.762 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:03:03 smithi167 conmon[87022]: cluster 2023-11-30T23:03:02.293953+0000 mgr.smithi038.ldalxq (mgr.14182) 361 : cluster 2023-11-30T23:03:03.762 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:03:03 smithi167 conmon[87022]: [DBG] pgmap v265: 225 pgs: 225 active+clean; 7.2 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2023-11-30T23:03:04.770 INFO:teuthology.orchestra.run.smithi038.stdout: 2023-11-30T23:03:04.770 INFO:teuthology.orchestra.run.smithi038.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2023-11-30T22:54:47.122758Z", "last_refresh": "2023-11-30T22:58:55.866934Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2023-11-30T22:54:42.674972Z", "last_refresh": "2023-11-30T22:58:52.669086Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2023-11-30T22:54:45.114633Z", "last_refresh": "2023-11-30T22:58:55.867071Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2023-11-30T22:58:56.317378Z service:ingress.nfs.foo [INFO] \"service was created\"", "2023-11-30T23:02:07.111634Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi167.buykdj on smithi167: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi167-buykdj\n/bin/podman: stderr Error: error inspecting object: no such container ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi167-buykdj\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi167.buykdj\n/bin/podman: stderr Error: error inspecting object: no such container ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi167.buykdj\nDeploy daemon haproxy.nfs.foo.smithi167.buykdj ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi167 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2023-11-30T22:59:44Z\" level=warning msg=\"failed, retrying in 1s ... (1/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-11-30T23:00:21Z\" level=warning msg=\"failed, retrying in 1s ... (2/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-11-30T23:00:59Z\" level=warning msg=\"failed, retrying in 1s ... (3/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: Error determining manifest MIME type for docker://haproxy:2.3: Error reading manifest sha256:058f434330f13dbbc46761f3e9a76af2408e9ec1898c9ac5a8baf00b42e756a9 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi167 -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": 9049, "virtual_ip": "10.0.31.38/16"}, "status": {"created": "2023-11-30T22:58:56.312786Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.38/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2023-11-30T22:54:41.668043Z", "last_refresh": "2023-11-30T22:58:52.669241Z", "running": 2, "size": 2}}, {"events": ["2023-11-30T22:55:50.759225Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi038:172.21.15.38=smithi038", "smithi167:172.21.15.167=smithi167"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2023-11-30T22:55:50.756456Z", "last_refresh": "2023-11-30T22:58:52.669318Z", "running": 2, "size": 2}}, {"events": ["2023-11-30T22:58:56.311581Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2023-11-30T22:58:56.308071Z", "ports": [12049], "running": 0, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2023-11-30T22:54:46.136630Z", "last_refresh": "2023-11-30T22:58:52.669387Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2023-11-30T22:56:33.258058Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2023-11-30T22:56:33.253117Z", "last_refresh": "2023-11-30T22:58:52.669454Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2023-11-30T22:54:43.949497Z", "last_refresh": "2023-11-30T22:58:55.867217Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2023-11-30T22:58:52.105721Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2023-11-30T22:58:59.793467Z", "ports": [8800], "running": 0, "size": 2}}] 2023-11-30T23:03:05.205 INFO:tasks.cephadm:nfs.foo has 0/1 2023-11-30T23:03:05.524 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:03:05 smithi038 conmon[81956]: cluster 2023-11-30T23:03:04.294759+0000 mgr.smithi038.ldalxq (mgr.14182) 362 : cluster [DBG] pgmap v266: 225 pgs: 225 active+clean; 7.2 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2023-11-30T23:03:05.762 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:03:05 smithi167 conmon[87022]: cluster 2023-11-30T23:03:04.294759+0000 mgr.smithi038.ldalxq (mgr.14182) 362 : cluster [DBG] pgmap v266: 225 pgs: 225 active+clean; 7.2 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2023-11-30T23:03:06.206 DEBUG:teuthology.orchestra.run.smithi038:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:0dc074ce0b0b3b4f393f56dd32ef36884ebf45a9 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 3faf8b00-8fd3-11ee-95a2-87774f69a715 -- ceph orch ls -f json 2023-11-30T23:03:06.524 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:03:06 smithi038 conmon[81956]: audit 2023-11-30T23:03:04.765270+0000 mgr.smithi038.ldalxq (mgr.14182 2023-11-30T23:03:06.524 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:03:06 smithi038 conmon[81956]: ) 363 : audit [DBG] from='client.14864 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-11-30T23:03:06.762 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:03:06 smithi167 conmon[87022]: audit 2023-11-30T23:03:04.765270+0000 mgr.smithi038.ldalxq (mgr.14182) 363 : audit [DBG] 2023-11-30T23:03:06.762 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:03:06 smithi167 conmon[87022]: from='client.14864 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-11-30T23:03:07.661 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:03:07 smithi038 conmon[81956]: cluster 2023-11-30T23:03:06.295538+0000 mgr.smithi038.ldalxq (mgr.14182) 364 : cluster [DBG] pgmap v267: 225 pgs: 225 active+clean; 7.2 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2023-11-30T23:03:07.762 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:03:07 smithi167 conmon[87022]: cluster 2023-11-30T23:03:06.295538+0000 mgr.smithi038.ldalxq (mgr.14182) 364 : cluster [DBG] pgmap v267: 225 pgs: 225 active+clean; 7.2 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2023-11-30T23:03:08.000 INFO:teuthology.orchestra.run.smithi038.stdout: 2023-11-30T23:03:08.001 INFO:teuthology.orchestra.run.smithi038.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2023-11-30T22:54:47.122758Z", "last_refresh": "2023-11-30T22:58:55.866934Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2023-11-30T22:54:42.674972Z", "last_refresh": "2023-11-30T22:58:52.669086Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2023-11-30T22:54:45.114633Z", "last_refresh": "2023-11-30T22:58:55.867071Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2023-11-30T22:58:56.317378Z service:ingress.nfs.foo [INFO] \"service was created\"", "2023-11-30T23:02:07.111634Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi167.buykdj on smithi167: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi167-buykdj\n/bin/podman: stderr Error: error inspecting object: no such container ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi167-buykdj\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi167.buykdj\n/bin/podman: stderr Error: error inspecting object: no such container ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi167.buykdj\nDeploy daemon haproxy.nfs.foo.smithi167.buykdj ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi167 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2023-11-30T22:59:44Z\" level=warning msg=\"failed, retrying in 1s ... (1/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-11-30T23:00:21Z\" level=warning msg=\"failed, retrying in 1s ... (2/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-11-30T23:00:59Z\" level=warning msg=\"failed, retrying in 1s ... (3/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: Error determining manifest MIME type for docker://haproxy:2.3: Error reading manifest sha256:058f434330f13dbbc46761f3e9a76af2408e9ec1898c9ac5a8baf00b42e756a9 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi167 -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": 9049, "virtual_ip": "10.0.31.38/16"}, "status": {"created": "2023-11-30T22:58:56.312786Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.38/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2023-11-30T22:54:41.668043Z", "last_refresh": "2023-11-30T22:58:52.669241Z", "running": 2, "size": 2}}, {"events": ["2023-11-30T22:55:50.759225Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi038:172.21.15.38=smithi038", "smithi167:172.21.15.167=smithi167"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2023-11-30T22:55:50.756456Z", "last_refresh": "2023-11-30T22:58:52.669318Z", "running": 2, "size": 2}}, {"events": ["2023-11-30T22:58:56.311581Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2023-11-30T22:58:56.308071Z", "ports": [12049], "running": 0, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2023-11-30T22:54:46.136630Z", "last_refresh": "2023-11-30T22:58:52.669387Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2023-11-30T22:56:33.258058Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2023-11-30T22:56:33.253117Z", "last_refresh": "2023-11-30T22:58:52.669454Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2023-11-30T22:54:43.949497Z", "last_refresh": "2023-11-30T22:58:55.867217Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2023-11-30T22:58:52.105721Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2023-11-30T22:58:59.793467Z", "ports": [8800], "running": 0, "size": 2}}] 2023-11-30T23:03:08.471 INFO:tasks.cephadm:nfs.foo has 0/1 2023-11-30T23:03:09.472 DEBUG:teuthology.orchestra.run.smithi038:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:0dc074ce0b0b3b4f393f56dd32ef36884ebf45a9 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 3faf8b00-8fd3-11ee-95a2-87774f69a715 -- ceph orch ls -f json 2023-11-30T23:03:09.762 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:03:09 smithi167 conmon[87022]: audit 2023-11-30T23:03:07.997312+0000 mgr.smithi038.ldalxq (mgr.14182) 365 : audit [DBG] from='client.14868 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-11-30T23:03:09.897 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:03:09 smithi167 conmon[87022]: cluster 2023-11-30T23:03:08.296102+0000 mgr.smithi038.ldalxq (mgr.14182) 366 : cluster [DBG] pgmap v268: 225 pgs: 225 active+clean; 7.2 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2023-11-30T23:03:09.897 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:03:09 smithi038 conmon[81956]: audit 2023-11-30T23:03:07.997312+0000 mgr.smithi038.ldalxq (mgr.14182) 365 : audit [DBG] from='client.14868 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-11-30T23:03:09.897 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:03:09 smithi038 conmon[81956]: cluster 2023-11-30T23:03:08.296102+0000 mgr.smithi038.ldalxq (mgr.14182) 366 : cluster [DBG] pgmap v268: 225 pgs: 225 active+clean; 7.2 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2023-11-30T23:03:11.294 INFO:teuthology.orchestra.run.smithi038.stdout: 2023-11-30T23:03:11.294 INFO:teuthology.orchestra.run.smithi038.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2023-11-30T22:54:47.122758Z", "last_refresh": "2023-11-30T22:58:55.866934Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2023-11-30T22:54:42.674972Z", "last_refresh": "2023-11-30T22:58:52.669086Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2023-11-30T22:54:45.114633Z", "last_refresh": "2023-11-30T22:58:55.867071Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2023-11-30T22:58:56.317378Z service:ingress.nfs.foo [INFO] \"service was created\"", "2023-11-30T23:02:07.111634Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi167.buykdj on smithi167: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi167-buykdj\n/bin/podman: stderr Error: error inspecting object: no such container ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi167-buykdj\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi167.buykdj\n/bin/podman: stderr Error: error inspecting object: no such container ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi167.buykdj\nDeploy daemon haproxy.nfs.foo.smithi167.buykdj ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi167 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2023-11-30T22:59:44Z\" level=warning msg=\"failed, retrying in 1s ... (1/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-11-30T23:00:21Z\" level=warning msg=\"failed, retrying in 1s ... (2/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-11-30T23:00:59Z\" level=warning msg=\"failed, retrying in 1s ... (3/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: Error determining manifest MIME type for docker://haproxy:2.3: Error reading manifest sha256:058f434330f13dbbc46761f3e9a76af2408e9ec1898c9ac5a8baf00b42e756a9 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi167 -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": 9049, "virtual_ip": "10.0.31.38/16"}, "status": {"created": "2023-11-30T22:58:56.312786Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.38/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2023-11-30T22:54:41.668043Z", "last_refresh": "2023-11-30T22:58:52.669241Z", "running": 2, "size": 2}}, {"events": ["2023-11-30T22:55:50.759225Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi038:172.21.15.38=smithi038", "smithi167:172.21.15.167=smithi167"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2023-11-30T22:55:50.756456Z", "last_refresh": "2023-11-30T22:58:52.669318Z", "running": 2, "size": 2}}, {"events": ["2023-11-30T22:58:56.311581Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2023-11-30T22:58:56.308071Z", "ports": [12049], "running": 0, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2023-11-30T22:54:46.136630Z", "last_refresh": "2023-11-30T22:58:52.669387Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2023-11-30T22:56:33.258058Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2023-11-30T22:56:33.253117Z", "last_refresh": "2023-11-30T22:58:52.669454Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2023-11-30T22:54:43.949497Z", "last_refresh": "2023-11-30T22:58:55.867217Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2023-11-30T22:58:52.105721Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2023-11-30T22:58:59.793467Z", "ports": [8800], "running": 0, "size": 2}}] 2023-11-30T23:03:11.715 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:03:11 smithi038 conmon[81956]: cluster 2023-11-30T23:03:10.296766+0000 mgr.smithi038.ldalxq (mgr.14182) 367 : cluster [DBG] pgmap v269: 225 pgs: 225 active+clean; 7.2 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2023-11-30T23:03:11.716 INFO:tasks.cephadm:nfs.foo has 0/1 2023-11-30T23:03:11.762 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:03:11 smithi167 conmon[87022]: cluster 2023-11-30T23:03:10.296766+0000 mgr.smithi038.ldalxq (mgr.14182) 367 : cluster [DBG] 2023-11-30T23:03:11.763 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:03:11 smithi167 conmon[87022]: pgmap v269: 225 pgs: 225 active+clean; 7.2 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2023-11-30T23:03:12.716 DEBUG:teuthology.orchestra.run.smithi038:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:0dc074ce0b0b3b4f393f56dd32ef36884ebf45a9 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 3faf8b00-8fd3-11ee-95a2-87774f69a715 -- ceph orch ls -f json 2023-11-30T23:03:12.748 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:03:12 smithi038 conmon[81956]: audit 2023-11-30T23:03:11.290598+0000 mgr.smithi038.ldalxq (mgr.14182) 368 : audit [DBG] from='client.14872 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-11-30T23:03:12.762 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:03:12 smithi167 conmon[87022]: audit 2023-11-30T23:03:11.290598+0000 mgr.smithi038.ldalxq (mgr.14182) 368 : audit [DBG] from='client.14872 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-11-30T23:03:13.525 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:03:13 smithi038 conmon[81956]: cluster 2023-11-30T23:03:12.297405+0000 mgr.smithi038.ldalxq (mgr.14182) 369 : cluster [DBG] pgmap v270: 225 pgs: 225 active+clean; 7.2 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2023-11-30T23:03:13.761 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:03:13 smithi167 conmon[87022]: cluster 2023-11-30T23:03:12.297405+0000 mgr.smithi038.ldalxq (mgr.14182) 369 : cluster [DBG] 2023-11-30T23:03:13.762 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:03:13 smithi167 conmon[87022]: pgmap v270: 225 pgs: 225 active+clean; 7.2 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2023-11-30T23:03:14.542 INFO:teuthology.orchestra.run.smithi038.stdout: 2023-11-30T23:03:14.545 INFO:teuthology.orchestra.run.smithi038.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2023-11-30T22:54:47.122758Z", "last_refresh": "2023-11-30T22:58:55.866934Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2023-11-30T22:54:42.674972Z", "last_refresh": "2023-11-30T22:58:52.669086Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2023-11-30T22:54:45.114633Z", "last_refresh": "2023-11-30T22:58:55.867071Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2023-11-30T22:58:56.317378Z service:ingress.nfs.foo [INFO] \"service was created\"", "2023-11-30T23:02:07.111634Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi167.buykdj on smithi167: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi167-buykdj\n/bin/podman: stderr Error: error inspecting object: no such container ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi167-buykdj\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi167.buykdj\n/bin/podman: stderr Error: error inspecting object: no such container ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi167.buykdj\nDeploy daemon haproxy.nfs.foo.smithi167.buykdj ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi167 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2023-11-30T22:59:44Z\" level=warning msg=\"failed, retrying in 1s ... (1/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-11-30T23:00:21Z\" level=warning msg=\"failed, retrying in 1s ... (2/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-11-30T23:00:59Z\" level=warning msg=\"failed, retrying in 1s ... (3/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: Error determining manifest MIME type for docker://haproxy:2.3: Error reading manifest sha256:058f434330f13dbbc46761f3e9a76af2408e9ec1898c9ac5a8baf00b42e756a9 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi167 -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": 9049, "virtual_ip": "10.0.31.38/16"}, "status": {"created": "2023-11-30T22:58:56.312786Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.38/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2023-11-30T22:54:41.668043Z", "last_refresh": "2023-11-30T22:58:52.669241Z", "running": 2, "size": 2}}, {"events": ["2023-11-30T22:55:50.759225Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi038:172.21.15.38=smithi038", "smithi167:172.21.15.167=smithi167"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2023-11-30T22:55:50.756456Z", "last_refresh": "2023-11-30T22:58:52.669318Z", "running": 2, "size": 2}}, {"events": ["2023-11-30T22:58:56.311581Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2023-11-30T22:58:56.308071Z", "ports": [12049], "running": 0, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2023-11-30T22:54:46.136630Z", "last_refresh": "2023-11-30T22:58:52.669387Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2023-11-30T22:56:33.258058Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2023-11-30T22:56:33.253117Z", "last_refresh": "2023-11-30T22:58:52.669454Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2023-11-30T22:54:43.949497Z", "last_refresh": "2023-11-30T22:58:55.867217Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2023-11-30T22:58:52.105721Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2023-11-30T22:58:59.793467Z", "ports": [8800], "running": 0, "size": 2}}] 2023-11-30T23:03:15.057 INFO:tasks.cephadm:nfs.foo has 0/1 2023-11-30T23:03:15.762 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:03:15 smithi167 conmon[87022]: cluster 2023-11-30T23:03:14.297915+0000 mgr.smithi038.ldalxq (mgr.14182) 370 : cluster [DBG] 2023-11-30T23:03:15.762 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:03:15 smithi167 conmon[87022]: pgmap v271: 225 pgs: 225 active+clean; 7.2 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2023-11-30T23:03:15.762 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:03:15 smithi167 conmon[87022]: audit 2023-11-30T23:03:14.538421+0000 mgr.smithi038.ldalxq (mgr.14182) 371 : audit [DBG] from='client.14876 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-11-30T23:03:15.774 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:03:15 smithi038 conmon[81956]: cluster 2023-11-30T23:03:14.297915+0000 mgr.smithi038.ldalxq (mgr.14182) 370 : cluster [DBG] pgmap v271: 225 pgs: 225 active+clean; 7.2 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2023-11-30T23:03:15.774 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:03:15 smithi038 conmon[81956]: audit 2023-11-30T23:03:14.538421+0000 mgr.smithi038.ldalxq (mgr.14182) 371 : audit [DBG] from='client.14876 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-11-30T23:03:16.059 DEBUG:teuthology.orchestra.run.smithi038:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:0dc074ce0b0b3b4f393f56dd32ef36884ebf45a9 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 3faf8b00-8fd3-11ee-95a2-87774f69a715 -- ceph orch ls -f json 2023-11-30T23:03:17.762 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:03:17 smithi167 conmon[87022]: cluster 2023-11-30T23:03:16.298613+0000 mgr.smithi038.ldalxq (mgr.14182) 372 : cluster [DBG] pgmap v272: 225 pgs: 225 active+clean; 7.2 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2023-11-30T23:03:17.762 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:03:17 smithi167 conmon[87022]: 2023-11-30T23:03:17.773 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:03:17 smithi038 conmon[81956]: cluster 2023-11-30T23:03:16.298613+0000 2023-11-30T23:03:17.774 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:03:17 smithi038 conmon[81956]: mgr.smithi038.ldalxq (mgr.14182) 372 : cluster [DBG] pgmap v272: 225 pgs: 225 active+clean; 7.2 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2023-11-30T23:03:17.887 INFO:teuthology.orchestra.run.smithi038.stdout: 2023-11-30T23:03:17.888 INFO:teuthology.orchestra.run.smithi038.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2023-11-30T22:54:47.122758Z", "last_refresh": "2023-11-30T22:58:55.866934Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2023-11-30T22:54:42.674972Z", "last_refresh": "2023-11-30T22:58:52.669086Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2023-11-30T22:54:45.114633Z", "last_refresh": "2023-11-30T22:58:55.867071Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2023-11-30T22:58:56.317378Z service:ingress.nfs.foo [INFO] \"service was created\"", "2023-11-30T23:02:07.111634Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi167.buykdj on smithi167: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi167-buykdj\n/bin/podman: stderr Error: error inspecting object: no such container ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi167-buykdj\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi167.buykdj\n/bin/podman: stderr Error: error inspecting object: no such container ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi167.buykdj\nDeploy daemon haproxy.nfs.foo.smithi167.buykdj ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi167 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2023-11-30T22:59:44Z\" level=warning msg=\"failed, retrying in 1s ... (1/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-11-30T23:00:21Z\" level=warning msg=\"failed, retrying in 1s ... (2/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-11-30T23:00:59Z\" level=warning msg=\"failed, retrying in 1s ... (3/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: Error determining manifest MIME type for docker://haproxy:2.3: Error reading manifest sha256:058f434330f13dbbc46761f3e9a76af2408e9ec1898c9ac5a8baf00b42e756a9 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi167 -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": 9049, "virtual_ip": "10.0.31.38/16"}, "status": {"created": "2023-11-30T22:58:56.312786Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.38/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2023-11-30T22:54:41.668043Z", "last_refresh": "2023-11-30T22:58:52.669241Z", "running": 2, "size": 2}}, {"events": ["2023-11-30T22:55:50.759225Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi038:172.21.15.38=smithi038", "smithi167:172.21.15.167=smithi167"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2023-11-30T22:55:50.756456Z", "last_refresh": "2023-11-30T22:58:52.669318Z", "running": 2, "size": 2}}, {"events": ["2023-11-30T22:58:56.311581Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2023-11-30T22:58:56.308071Z", "ports": [12049], "running": 0, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2023-11-30T22:54:46.136630Z", "last_refresh": "2023-11-30T22:58:52.669387Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2023-11-30T22:56:33.258058Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2023-11-30T22:56:33.253117Z", "last_refresh": "2023-11-30T22:58:52.669454Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2023-11-30T22:54:43.949497Z", "last_refresh": "2023-11-30T22:58:55.867217Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2023-11-30T22:58:52.105721Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2023-11-30T22:58:59.793467Z", "ports": [8800], "running": 0, "size": 2}}] 2023-11-30T23:03:18.410 INFO:tasks.cephadm:nfs.foo has 0/1 2023-11-30T23:03:19.411 DEBUG:teuthology.orchestra.run.smithi038:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:0dc074ce0b0b3b4f393f56dd32ef36884ebf45a9 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 3faf8b00-8fd3-11ee-95a2-87774f69a715 -- ceph orch ls -f json 2023-11-30T23:03:19.762 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:03:19 smithi167 conmon[87022]: audit 2023-11-30T23:03:17.883637+0000 mgr.smithi038.ldalxq (mgr.14182) 373 : audit [DBG] 2023-11-30T23:03:19.762 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:03:19 smithi167 conmon[87022]: from='client.14880 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-11-30T23:03:19.762 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:03:19 smithi167 conmon[87022]: cluster 2023-11-30T23:03:18.299126+0000 mgr.smithi038.ldalxq (mgr.14182) 374 : cluster [DBG] pgmap v273: 225 pgs: 225 active+clean; 7.2 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2023-11-30T23:03:19.774 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:03:19 smithi038 conmon[81956]: audit 2023-11-30T23:03:17.883637+0000 mgr.smithi038.ldalxq (mgr 2023-11-30T23:03:19.774 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:03:19 smithi038 conmon[81956]: .14182) 373 : audit [DBG] from='client.14880 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-11-30T23:03:19.774 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:03:19 smithi038 conmon[81956]: cluster 2023-11-30T23:03:18.299126 2023-11-30T23:03:19.774 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:03:19 smithi038 conmon[81956]: +0000 mgr.smithi038.ldalxq (mgr.14182) 374 : cluster [DBG] pgmap v273: 225 pgs: 225 active+clean; 7.2 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2023-11-30T23:03:21.224 INFO:teuthology.orchestra.run.smithi038.stdout: 2023-11-30T23:03:21.224 INFO:teuthology.orchestra.run.smithi038.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2023-11-30T22:54:47.122758Z", "last_refresh": "2023-11-30T22:58:55.866934Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2023-11-30T22:54:42.674972Z", "last_refresh": "2023-11-30T22:58:52.669086Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2023-11-30T22:54:45.114633Z", "last_refresh": "2023-11-30T22:58:55.867071Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2023-11-30T22:58:56.317378Z service:ingress.nfs.foo [INFO] \"service was created\"", "2023-11-30T23:02:07.111634Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi167.buykdj on smithi167: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi167-buykdj\n/bin/podman: stderr Error: error inspecting object: no such container ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi167-buykdj\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi167.buykdj\n/bin/podman: stderr Error: error inspecting object: no such container ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi167.buykdj\nDeploy daemon haproxy.nfs.foo.smithi167.buykdj ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi167 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2023-11-30T22:59:44Z\" level=warning msg=\"failed, retrying in 1s ... (1/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-11-30T23:00:21Z\" level=warning msg=\"failed, retrying in 1s ... (2/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-11-30T23:00:59Z\" level=warning msg=\"failed, retrying in 1s ... (3/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: Error determining manifest MIME type for docker://haproxy:2.3: Error reading manifest sha256:058f434330f13dbbc46761f3e9a76af2408e9ec1898c9ac5a8baf00b42e756a9 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi167 -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": 9049, "virtual_ip": "10.0.31.38/16"}, "status": {"created": "2023-11-30T22:58:56.312786Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.38/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2023-11-30T22:54:41.668043Z", "last_refresh": "2023-11-30T22:58:52.669241Z", "running": 2, "size": 2}}, {"events": ["2023-11-30T22:55:50.759225Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi038:172.21.15.38=smithi038", "smithi167:172.21.15.167=smithi167"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2023-11-30T22:55:50.756456Z", "last_refresh": "2023-11-30T22:58:52.669318Z", "running": 2, "size": 2}}, {"events": ["2023-11-30T22:58:56.311581Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2023-11-30T22:58:56.308071Z", "ports": [12049], "running": 0, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2023-11-30T22:54:46.136630Z", "last_refresh": "2023-11-30T22:58:52.669387Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2023-11-30T22:56:33.258058Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2023-11-30T22:56:33.253117Z", "last_refresh": "2023-11-30T22:58:52.669454Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2023-11-30T22:54:43.949497Z", "last_refresh": "2023-11-30T22:58:55.867217Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2023-11-30T22:58:52.105721Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2023-11-30T22:58:59.793467Z", "ports": [8800], "running": 0, "size": 2}}] 2023-11-30T23:03:21.523 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:03:21 smithi038 conmon[81956]: cluster 2023-11-30T23:03:20.299938+0000 mgr.smithi038.ldalxq (mgr.14182) 375 : cluster [DBG] pgmap v274: 225 pgs: 225 active+clean; 7.2 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2023-11-30T23:03:21.667 INFO:tasks.cephadm:nfs.foo has 0/1 2023-11-30T23:03:21.762 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:03:21 smithi167 conmon[87022]: cluster 2023-11-30T23:03:20.299938+0000 mgr.smithi038.ldalxq (mgr.14182 2023-11-30T23:03:21.762 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:03:21 smithi167 conmon[87022]: ) 375 : cluster [DBG] pgmap v274: 225 pgs: 225 active+clean; 7.2 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2023-11-30T23:03:22.667 DEBUG:teuthology.orchestra.run.smithi038:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:0dc074ce0b0b3b4f393f56dd32ef36884ebf45a9 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 3faf8b00-8fd3-11ee-95a2-87774f69a715 -- ceph orch ls -f json 2023-11-30T23:03:22.698 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:03:22 smithi038 conmon[81956]: audit 2023-11-30T23:03:21.220777+0000 mgr.smithi038.ldalxq (mgr.14182) 376 : 2023-11-30T23:03:22.698 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:03:22 smithi038 conmon[81956]: audit [DBG] from='client.14884 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-11-30T23:03:22.762 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:03:22 smithi167 conmon[87022]: audit 2023-11-30T23:03:21.220777+0000 mgr.smithi038.ldalxq (mgr.14182) 376 : 2023-11-30T23:03:22.762 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:03:22 smithi167 conmon[87022]: audit [DBG] from='client.14884 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-11-30T23:03:23.678 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:03:23 smithi038 conmon[81956]: cluster 2023-11-30T23:03:22.300673+0000 mgr.smithi038.ldalxq (mgr.14182) 377 : cluster [DBG] pgmap v275: 225 pgs: 225 active+clean; 7.2 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2023-11-30T23:03:23.762 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:03:23 smithi167 conmon[87022]: cluster 2023-11-30T23:03:22.300673+0000 mgr.smithi038.ldalxq (mgr.14182) 377 : cluster [DBG] pgmap v275: 225 pgs: 225 active+clean; 7.2 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2023-11-30T23:03:24.473 INFO:teuthology.orchestra.run.smithi038.stdout: 2023-11-30T23:03:24.473 INFO:teuthology.orchestra.run.smithi038.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2023-11-30T22:54:47.122758Z", "last_refresh": "2023-11-30T22:58:55.866934Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2023-11-30T22:54:42.674972Z", "last_refresh": "2023-11-30T22:58:52.669086Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2023-11-30T22:54:45.114633Z", "last_refresh": "2023-11-30T22:58:55.867071Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2023-11-30T22:58:56.317378Z service:ingress.nfs.foo [INFO] \"service was created\"", "2023-11-30T23:02:07.111634Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi167.buykdj on smithi167: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi167-buykdj\n/bin/podman: stderr Error: error inspecting object: no such container ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi167-buykdj\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi167.buykdj\n/bin/podman: stderr Error: error inspecting object: no such container ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi167.buykdj\nDeploy daemon haproxy.nfs.foo.smithi167.buykdj ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi167 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2023-11-30T22:59:44Z\" level=warning msg=\"failed, retrying in 1s ... (1/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-11-30T23:00:21Z\" level=warning msg=\"failed, retrying in 1s ... (2/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-11-30T23:00:59Z\" level=warning msg=\"failed, retrying in 1s ... (3/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: Error determining manifest MIME type for docker://haproxy:2.3: Error reading manifest sha256:058f434330f13dbbc46761f3e9a76af2408e9ec1898c9ac5a8baf00b42e756a9 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi167 -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": 9049, "virtual_ip": "10.0.31.38/16"}, "status": {"created": "2023-11-30T22:58:56.312786Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.38/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2023-11-30T22:54:41.668043Z", "last_refresh": "2023-11-30T22:58:52.669241Z", "running": 2, "size": 2}}, {"events": ["2023-11-30T22:55:50.759225Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi038:172.21.15.38=smithi038", "smithi167:172.21.15.167=smithi167"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2023-11-30T22:55:50.756456Z", "last_refresh": "2023-11-30T22:58:52.669318Z", "running": 2, "size": 2}}, {"events": ["2023-11-30T22:58:56.311581Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2023-11-30T22:58:56.308071Z", "ports": [12049], "running": 0, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2023-11-30T22:54:46.136630Z", "last_refresh": "2023-11-30T22:58:52.669387Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2023-11-30T22:56:33.258058Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2023-11-30T22:56:33.253117Z", "last_refresh": "2023-11-30T22:58:52.669454Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2023-11-30T22:54:43.949497Z", "last_refresh": "2023-11-30T22:58:55.867217Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2023-11-30T22:58:52.105721Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2023-11-30T22:58:59.793467Z", "ports": [8800], "running": 0, "size": 2}}] 2023-11-30T23:03:24.918 INFO:tasks.cephadm:nfs.foo has 0/1 2023-11-30T23:03:25.762 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:03:25 smithi167 conmon[87022]: cluster 2023-11-30T23:03:24.301256+0000 mgr.smithi038.ldalxq (mgr.14182) 378 : cluster [DBG] pgmap v276: 225 pgs: 225 active+clean; 7.2 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2023-11-30T23:03:25.762 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:03:25 smithi167 conmon[87022]: audit 2023-11-30T23:03:24.468554+0000 2023-11-30T23:03:25.762 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:03:25 smithi167 conmon[87022]: mgr.smithi038.ldalxq (mgr.14182) 379 : audit [DBG] from='client.14888 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-11-30T23:03:25.774 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:03:25 smithi038 conmon[81956]: cluster 2023-11-30T23:03:24.301256+0000 mgr.smithi038.ldalxq (mgr.14182 2023-11-30T23:03:25.774 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:03:25 smithi038 conmon[81956]: ) 378 : cluster [DBG] pgmap v276: 225 pgs: 225 active+clean; 7.2 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2023-11-30T23:03:25.774 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:03:25 smithi038 conmon[81956]: audit 2023-11-30T23:03:24.468554+0000 mgr.smithi038.ldalxq (mgr.14182) 379 : audit [DBG] from='client.14888 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-11-30T23:03:25.919 DEBUG:teuthology.orchestra.run.smithi038:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:0dc074ce0b0b3b4f393f56dd32ef36884ebf45a9 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 3faf8b00-8fd3-11ee-95a2-87774f69a715 -- ceph orch ls -f json 2023-11-30T23:03:27.760 INFO:teuthology.orchestra.run.smithi038.stdout: 2023-11-30T23:03:27.760 INFO:teuthology.orchestra.run.smithi038.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2023-11-30T22:54:47.122758Z", "last_refresh": "2023-11-30T22:58:55.866934Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2023-11-30T22:54:42.674972Z", "last_refresh": "2023-11-30T22:58:52.669086Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2023-11-30T22:54:45.114633Z", "last_refresh": "2023-11-30T22:58:55.867071Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2023-11-30T22:58:56.317378Z service:ingress.nfs.foo [INFO] \"service was created\"", "2023-11-30T23:02:07.111634Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi167.buykdj on smithi167: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi167-buykdj\n/bin/podman: stderr Error: error inspecting object: no such container ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi167-buykdj\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi167.buykdj\n/bin/podman: stderr Error: error inspecting object: no such container ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi167.buykdj\nDeploy daemon haproxy.nfs.foo.smithi167.buykdj ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi167 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2023-11-30T22:59:44Z\" level=warning msg=\"failed, retrying in 1s ... (1/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-11-30T23:00:21Z\" level=warning msg=\"failed, retrying in 1s ... (2/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-11-30T23:00:59Z\" level=warning msg=\"failed, retrying in 1s ... (3/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: Error determining manifest MIME type for docker://haproxy:2.3: Error reading manifest sha256:058f434330f13dbbc46761f3e9a76af2408e9ec1898c9ac5a8baf00b42e756a9 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi167 -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": 9049, "virtual_ip": "10.0.31.38/16"}, "status": {"created": "2023-11-30T22:58:56.312786Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.38/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2023-11-30T22:54:41.668043Z", "last_refresh": "2023-11-30T22:58:52.669241Z", "running": 2, "size": 2}}, {"events": ["2023-11-30T22:55:50.759225Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi038:172.21.15.38=smithi038", "smithi167:172.21.15.167=smithi167"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2023-11-30T22:55:50.756456Z", "last_refresh": "2023-11-30T22:58:52.669318Z", "running": 2, "size": 2}}, {"events": ["2023-11-30T22:58:56.311581Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2023-11-30T22:58:56.308071Z", "ports": [12049], "running": 0, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2023-11-30T22:54:46.136630Z", "last_refresh": "2023-11-30T22:58:52.669387Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2023-11-30T22:56:33.258058Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2023-11-30T22:56:33.253117Z", "last_refresh": "2023-11-30T22:58:52.669454Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2023-11-30T22:54:43.949497Z", "last_refresh": "2023-11-30T22:58:55.867217Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2023-11-30T22:58:52.105721Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2023-11-30T22:58:59.793467Z", "ports": [8800], "running": 0, "size": 2}}] 2023-11-30T23:03:27.761 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:03:27 smithi167 conmon[87022]: cluster 2023-11-30T23:03:26.302264+0000 mgr.smithi038.ldalxq (mgr.14182) 380 : cluster [DBG] pgmap v277: 225 pgs: 225 active+clean; 7.2 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2023-11-30T23:03:27.774 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:03:27 smithi038 conmon[81956]: cluster 2023-11-30T23:03:26.302264+0000 mgr.smithi038.ldalxq (mgr.14182) 380 : cluster [DBG] pgmap v277: 225 pgs: 225 active+clean; 7.2 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2023-11-30T23:03:28.280 INFO:tasks.cephadm:nfs.foo has 0/1 2023-11-30T23:03:29.280 DEBUG:teuthology.orchestra.run.smithi038:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:0dc074ce0b0b3b4f393f56dd32ef36884ebf45a9 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 3faf8b00-8fd3-11ee-95a2-87774f69a715 -- ceph orch ls -f json 2023-11-30T23:03:29.762 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:03:29 smithi167 conmon[87022]: audit 2023-11-30T23:03:27.756139+0000 mgr.smithi038.ldalxq (mgr.14182) 381 : audit [DBG] from='client.14892 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-11-30T23:03:29.762 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:03:29 smithi167 conmon[87022]: cluster 2023-11-30T23:03:28.302884+0000 mgr.smithi038.ldalxq (mgr.14182) 382 : cluster [DBG] pgmap v278: 225 pgs: 225 active+clean; 7.2 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2023-11-30T23:03:29.774 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:03:29 smithi038 conmon[81956]: audit 2023-11-30T23:03:27.756139+0000 mgr.smithi038.ldalxq 2023-11-30T23:03:29.774 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:03:29 smithi038 conmon[81956]: (mgr.14182) 381 : audit [DBG] from='client.14892 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-11-30T23:03:29.774 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:03:29 smithi038 conmon[81956]: cluster 2023-11-30T23:03:28.302884+0000 mgr.smithi038.ldalxq (mgr.14182) 382 : cluster [DBG] pgmap v278: 225 pgs: 225 active+clean; 7.2 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2023-11-30T23:03:31.149 INFO:teuthology.orchestra.run.smithi038.stdout: 2023-11-30T23:03:31.149 INFO:teuthology.orchestra.run.smithi038.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2023-11-30T22:54:47.122758Z", "last_refresh": "2023-11-30T22:58:55.866934Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2023-11-30T22:54:42.674972Z", "last_refresh": "2023-11-30T22:58:52.669086Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2023-11-30T22:54:45.114633Z", "last_refresh": "2023-11-30T22:58:55.867071Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2023-11-30T22:58:56.317378Z service:ingress.nfs.foo [INFO] \"service was created\"", "2023-11-30T23:02:07.111634Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi167.buykdj on smithi167: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi167-buykdj\n/bin/podman: stderr Error: error inspecting object: no such container ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi167-buykdj\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi167.buykdj\n/bin/podman: stderr Error: error inspecting object: no such container ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi167.buykdj\nDeploy daemon haproxy.nfs.foo.smithi167.buykdj ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi167 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2023-11-30T22:59:44Z\" level=warning msg=\"failed, retrying in 1s ... (1/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-11-30T23:00:21Z\" level=warning msg=\"failed, retrying in 1s ... (2/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-11-30T23:00:59Z\" level=warning msg=\"failed, retrying in 1s ... (3/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: Error determining manifest MIME type for docker://haproxy:2.3: Error reading manifest sha256:058f434330f13dbbc46761f3e9a76af2408e9ec1898c9ac5a8baf00b42e756a9 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi167 -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": 9049, "virtual_ip": "10.0.31.38/16"}, "status": {"created": "2023-11-30T22:58:56.312786Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.38/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2023-11-30T22:54:41.668043Z", "last_refresh": "2023-11-30T22:58:52.669241Z", "running": 2, "size": 2}}, {"events": ["2023-11-30T22:55:50.759225Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi038:172.21.15.38=smithi038", "smithi167:172.21.15.167=smithi167"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2023-11-30T22:55:50.756456Z", "last_refresh": "2023-11-30T22:58:52.669318Z", "running": 2, "size": 2}}, {"events": ["2023-11-30T22:58:56.311581Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2023-11-30T22:58:56.308071Z", "ports": [12049], "running": 0, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2023-11-30T22:54:46.136630Z", "last_refresh": "2023-11-30T22:58:52.669387Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2023-11-30T22:56:33.258058Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2023-11-30T22:56:33.253117Z", "last_refresh": "2023-11-30T22:58:52.669454Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2023-11-30T22:54:43.949497Z", "last_refresh": "2023-11-30T22:58:55.867217Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2023-11-30T22:58:52.105721Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2023-11-30T22:58:59.793467Z", "ports": [8800], "running": 0, "size": 2}}] 2023-11-30T23:03:31.644 INFO:tasks.cephadm:nfs.foo has 0/1 2023-11-30T23:03:31.762 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:03:31 smithi167 conmon[87022]: cluster 2023-11-30T23:03:30.303740+0000 mgr.smithi038.ldalxq (mgr.14182) 383 : cluster [DBG] pgmap v279: 225 pgs: 225 active+clean; 7.2 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2023-11-30T23:03:31.774 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:03:31 smithi038 conmon[81956]: cluster 2023-11-30T23:03:30.303740+0000 mgr.smithi038.ldalxq (mgr.14182) 383 : cluster [DBG] pgmap v279: 225 pgs: 225 active+clean; 7.2 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2023-11-30T23:03:32.646 DEBUG:teuthology.orchestra.run.smithi038:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:0dc074ce0b0b3b4f393f56dd32ef36884ebf45a9 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 3faf8b00-8fd3-11ee-95a2-87774f69a715 -- ceph orch ls -f json 2023-11-30T23:03:32.762 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:03:32 smithi167 conmon[87022]: audit 2023-11-30T23:03:31.145180+0000 mgr.smithi038.ldalxq (mgr.14182) 384 : audit [DBG] from='client.14896 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-11-30T23:03:32.774 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:03:32 smithi038 conmon[81956]: audit 2023-11-30T23:03:31.145180+0000 mgr.smithi038.ldalxq (mgr 2023-11-30T23:03:32.774 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:03:32 smithi038 conmon[81956]: .14182) 384 : audit [DBG] from='client.14896 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-11-30T23:03:33.727 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:03:33 smithi038 conmon[81956]: cluster 2023-11-30T23:03:33.727 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:03:33 smithi038 conmon[81956]: 2023-11-30T23:03:32.304457+0000 mgr.smithi038.ldalxq (mgr.14182) 385 : cluster [DBG] pgmap v280: 225 pgs: 225 active+clean; 7.2 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2023-11-30T23:03:33.762 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:03:33 smithi167 conmon[87022]: cluster 2023-11-30T23:03:32.304457+0000 mgr.smithi038.ldalxq (mgr.14182) 385 : cluster [DBG] 2023-11-30T23:03:33.762 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:03:33 smithi167 conmon[87022]: pgmap v280: 225 pgs: 225 active+clean; 7.2 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2023-11-30T23:03:34.339 INFO:teuthology.orchestra.run.smithi038.stdout: 2023-11-30T23:03:34.339 INFO:teuthology.orchestra.run.smithi038.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2023-11-30T22:54:47.122758Z", "last_refresh": "2023-11-30T22:58:55.866934Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2023-11-30T22:54:42.674972Z", "last_refresh": "2023-11-30T22:58:52.669086Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2023-11-30T22:54:45.114633Z", "last_refresh": "2023-11-30T22:58:55.867071Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2023-11-30T22:58:56.317378Z service:ingress.nfs.foo [INFO] \"service was created\"", "2023-11-30T23:02:07.111634Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi167.buykdj on smithi167: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi167-buykdj\n/bin/podman: stderr Error: error inspecting object: no such container ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi167-buykdj\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi167.buykdj\n/bin/podman: stderr Error: error inspecting object: no such container ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi167.buykdj\nDeploy daemon haproxy.nfs.foo.smithi167.buykdj ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi167 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2023-11-30T22:59:44Z\" level=warning msg=\"failed, retrying in 1s ... (1/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-11-30T23:00:21Z\" level=warning msg=\"failed, retrying in 1s ... (2/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-11-30T23:00:59Z\" level=warning msg=\"failed, retrying in 1s ... (3/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: Error determining manifest MIME type for docker://haproxy:2.3: Error reading manifest sha256:058f434330f13dbbc46761f3e9a76af2408e9ec1898c9ac5a8baf00b42e756a9 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi167 -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": 9049, "virtual_ip": "10.0.31.38/16"}, "status": {"created": "2023-11-30T22:58:56.312786Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.38/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2023-11-30T22:54:41.668043Z", "last_refresh": "2023-11-30T22:58:52.669241Z", "running": 2, "size": 2}}, {"events": ["2023-11-30T22:55:50.759225Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi038:172.21.15.38=smithi038", "smithi167:172.21.15.167=smithi167"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2023-11-30T22:55:50.756456Z", "last_refresh": "2023-11-30T22:58:52.669318Z", "running": 2, "size": 2}}, {"events": ["2023-11-30T22:58:56.311581Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2023-11-30T22:58:56.308071Z", "ports": [12049], "running": 0, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2023-11-30T22:54:46.136630Z", "last_refresh": "2023-11-30T22:58:52.669387Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2023-11-30T22:56:33.258058Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2023-11-30T22:56:33.253117Z", "last_refresh": "2023-11-30T22:58:52.669454Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2023-11-30T22:54:43.949497Z", "last_refresh": "2023-11-30T22:58:55.867217Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2023-11-30T22:58:52.105721Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2023-11-30T22:58:59.793467Z", "ports": [8800], "running": 0, "size": 2}}] 2023-11-30T23:03:34.797 INFO:tasks.cephadm:nfs.foo has 0/1 2023-11-30T23:03:35.762 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:03:35 smithi167 conmon[87022]: cluster 2023-11-30T23:03:34.305010+0000 mgr.smithi038.ldalxq (mgr.14182) 386 : cluster [DBG] 2023-11-30T23:03:35.762 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:03:35 smithi167 conmon[87022]: pgmap v281: 225 pgs: 225 active+clean; 7.2 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2023-11-30T23:03:35.762 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:03:35 smithi167 conmon[87022]: audit 2023-11-30T23:03:34.335508+0000 mgr.smithi038.ldalxq (mgr.14182) 387 : audit [DBG] from='client.14900 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-11-30T23:03:35.774 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:03:35 smithi038 conmon[81956]: cluster 2023-11-30T23:03:34.305010+0000 mgr.smithi038.ldalxq (mgr.14182) 386 : cluster [DBG] pgmap v281: 225 pgs: 225 active+clean; 7.2 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2023-11-30T23:03:35.774 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:03:35 smithi038 conmon[81956]: audit 2023-11-30T23:03:34.335508+0000 mgr.smithi038.ldalxq (mgr.14182) 387 : audit [DBG] from='client.14900 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-11-30T23:03:35.798 DEBUG:teuthology.orchestra.run.smithi038:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:0dc074ce0b0b3b4f393f56dd32ef36884ebf45a9 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 3faf8b00-8fd3-11ee-95a2-87774f69a715 -- ceph orch ls -f json 2023-11-30T23:03:37.524 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:03:37 smithi038 conmon[81956]: cluster 2023-11-30T23:03:36.305660+0000 mgr.smithi038.ldalxq (mgr.14182) 388 : cluster [DBG] pgmap v282: 225 pgs: 225 active+clean; 7.2 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2023-11-30T23:03:37.643 INFO:teuthology.orchestra.run.smithi038.stdout: 2023-11-30T23:03:37.643 INFO:teuthology.orchestra.run.smithi038.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2023-11-30T22:54:47.122758Z", "last_refresh": "2023-11-30T22:58:55.866934Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2023-11-30T22:54:42.674972Z", "last_refresh": "2023-11-30T22:58:52.669086Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2023-11-30T22:54:45.114633Z", "last_refresh": "2023-11-30T22:58:55.867071Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2023-11-30T22:58:56.317378Z service:ingress.nfs.foo [INFO] \"service was created\"", "2023-11-30T23:02:07.111634Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi167.buykdj on smithi167: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi167-buykdj\n/bin/podman: stderr Error: error inspecting object: no such container ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi167-buykdj\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi167.buykdj\n/bin/podman: stderr Error: error inspecting object: no such container ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi167.buykdj\nDeploy daemon haproxy.nfs.foo.smithi167.buykdj ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi167 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2023-11-30T22:59:44Z\" level=warning msg=\"failed, retrying in 1s ... (1/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-11-30T23:00:21Z\" level=warning msg=\"failed, retrying in 1s ... (2/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-11-30T23:00:59Z\" level=warning msg=\"failed, retrying in 1s ... (3/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: Error determining manifest MIME type for docker://haproxy:2.3: Error reading manifest sha256:058f434330f13dbbc46761f3e9a76af2408e9ec1898c9ac5a8baf00b42e756a9 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi167 -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": 9049, "virtual_ip": "10.0.31.38/16"}, "status": {"created": "2023-11-30T22:58:56.312786Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.38/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2023-11-30T22:54:41.668043Z", "last_refresh": "2023-11-30T22:58:52.669241Z", "running": 2, "size": 2}}, {"events": ["2023-11-30T22:55:50.759225Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi038:172.21.15.38=smithi038", "smithi167:172.21.15.167=smithi167"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2023-11-30T22:55:50.756456Z", "last_refresh": "2023-11-30T22:58:52.669318Z", "running": 2, "size": 2}}, {"events": ["2023-11-30T22:58:56.311581Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2023-11-30T22:58:56.308071Z", "ports": [12049], "running": 0, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2023-11-30T22:54:46.136630Z", "last_refresh": "2023-11-30T22:58:52.669387Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2023-11-30T22:56:33.258058Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2023-11-30T22:56:33.253117Z", "last_refresh": "2023-11-30T22:58:52.669454Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2023-11-30T22:54:43.949497Z", "last_refresh": "2023-11-30T22:58:55.867217Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2023-11-30T22:58:52.105721Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2023-11-30T22:58:59.793467Z", "ports": [8800], "running": 0, "size": 2}}] 2023-11-30T23:03:37.762 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:03:37 smithi167 conmon[87022]: cluster 2023-11-30T23:03:36.305660+0000 mgr.smithi038.ldalxq (mgr.14182) 388 : cluster [DBG] pgmap v282: 225 pgs: 225 active+clean; 7.2 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2023-11-30T23:03:38.156 INFO:tasks.cephadm:nfs.foo has 0/1 2023-11-30T23:03:38.762 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:03:38 smithi167 conmon[87022]: audit 2023-11-30T23:03:37.638204+0000 mgr.smithi038.ldalxq (mgr.14182) 389 2023-11-30T23:03:38.762 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:03:38 smithi167 conmon[87022]: : audit [DBG] from='client.14904 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-11-30T23:03:38.774 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:03:38 smithi038 conmon[81956]: audit 2023-11-30T23:03:37.638204+0000 mgr.smithi038.ldalxq (mgr.14182) 389 : audit [DBG] from='client.14904 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-11-30T23:03:39.159 DEBUG:teuthology.orchestra.run.smithi038:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:0dc074ce0b0b3b4f393f56dd32ef36884ebf45a9 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 3faf8b00-8fd3-11ee-95a2-87774f69a715 -- ceph orch ls -f json 2023-11-30T23:03:39.735 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:03:39 smithi038 conmon[81956]: cluster 2023-11-30T23:03:38.306390+0000 mgr.smithi038.ldalxq 2023-11-30T23:03:39.735 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:03:39 smithi038 conmon[81956]: (mgr.14182) 390 : cluster [DBG] pgmap v283: 225 pgs: 225 active+clean; 7.2 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2023-11-30T23:03:39.762 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:03:39 smithi167 conmon[87022]: cluster 2023-11-30T23:03:38.306390+0000 mgr.smithi038.ldalxq (mgr.14182) 390 : cluster [DBG] pgmap v283: 225 pgs: 225 active+clean; 7.2 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2023-11-30T23:03:40.938 INFO:teuthology.orchestra.run.smithi038.stdout: 2023-11-30T23:03:40.938 INFO:teuthology.orchestra.run.smithi038.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2023-11-30T22:54:47.122758Z", "last_refresh": "2023-11-30T22:58:55.866934Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2023-11-30T22:54:42.674972Z", "last_refresh": "2023-11-30T22:58:52.669086Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2023-11-30T22:54:45.114633Z", "last_refresh": "2023-11-30T22:58:55.867071Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2023-11-30T22:58:56.317378Z service:ingress.nfs.foo [INFO] \"service was created\"", "2023-11-30T23:02:07.111634Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi167.buykdj on smithi167: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi167-buykdj\n/bin/podman: stderr Error: error inspecting object: no such container ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi167-buykdj\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi167.buykdj\n/bin/podman: stderr Error: error inspecting object: no such container ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi167.buykdj\nDeploy daemon haproxy.nfs.foo.smithi167.buykdj ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi167 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2023-11-30T22:59:44Z\" level=warning msg=\"failed, retrying in 1s ... (1/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-11-30T23:00:21Z\" level=warning msg=\"failed, retrying in 1s ... (2/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-11-30T23:00:59Z\" level=warning msg=\"failed, retrying in 1s ... (3/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: Error determining manifest MIME type for docker://haproxy:2.3: Error reading manifest sha256:058f434330f13dbbc46761f3e9a76af2408e9ec1898c9ac5a8baf00b42e756a9 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi167 -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": 9049, "virtual_ip": "10.0.31.38/16"}, "status": {"created": "2023-11-30T22:58:56.312786Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.38/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2023-11-30T22:54:41.668043Z", "last_refresh": "2023-11-30T22:58:52.669241Z", "running": 2, "size": 2}}, {"events": ["2023-11-30T22:55:50.759225Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi038:172.21.15.38=smithi038", "smithi167:172.21.15.167=smithi167"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2023-11-30T22:55:50.756456Z", "last_refresh": "2023-11-30T22:58:52.669318Z", "running": 2, "size": 2}}, {"events": ["2023-11-30T22:58:56.311581Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2023-11-30T22:58:56.308071Z", "ports": [12049], "running": 0, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2023-11-30T22:54:46.136630Z", "last_refresh": "2023-11-30T22:58:52.669387Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2023-11-30T22:56:33.258058Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2023-11-30T22:56:33.253117Z", "last_refresh": "2023-11-30T22:58:52.669454Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2023-11-30T22:54:43.949497Z", "last_refresh": "2023-11-30T22:58:55.867217Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2023-11-30T22:58:52.105721Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2023-11-30T22:58:59.793467Z", "ports": [8800], "running": 0, "size": 2}}] 2023-11-30T23:03:41.412 INFO:tasks.cephadm:nfs.foo has 0/1 2023-11-30T23:03:41.762 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:03:41 smithi167 conmon[87022]: cluster 2023-11-30T23:03:40.307075+0000 mgr.smithi038.ldalxq (mgr.14182) 391 : cluster [DBG] pgmap v284: 225 pgs: 225 active+clean; 7.2 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2023-11-30T23:03:41.774 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:03:41 smithi038 conmon[81956]: cluster 2023-11-30T23:03:40.307075+0000 mgr.smithi038.ldalxq (mgr.14182) 391 : cluster [DBG] pgmap v284: 225 pgs: 225 active+clean; 7.2 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2023-11-30T23:03:42.413 DEBUG:teuthology.orchestra.run.smithi038:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:0dc074ce0b0b3b4f393f56dd32ef36884ebf45a9 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 3faf8b00-8fd3-11ee-95a2-87774f69a715 -- ceph orch ls -f json 2023-11-30T23:03:42.762 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:03:42 smithi167 conmon[87022]: audit 2023-11-30T23:03:40.933581+0000 mgr.smithi038.ldalxq (mgr.14182) 2023-11-30T23:03:42.762 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:03:42 smithi167 conmon[87022]: 392 : audit [DBG] from='client.14908 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-11-30T23:03:42.774 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:03:42 smithi038 conmon[81956]: audit 2023-11-30T23:03 2023-11-30T23:03:42.774 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:03:42 smithi038 conmon[81956]: :40.933581+0000 mgr.smithi038.ldalxq (mgr.14182) 392 : audit [DBG] from='client.14908 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-11-30T23:03:43.761 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:03:43 smithi167 conmon[87022]: cluster 2023-11-30T23:03:42.307842+0000 mgr.smithi038.ldalxq (mgr.14182) 393 : cluster [DBG] pgmap v285: 225 pgs: 225 active+clean; 7.2 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2023-11-30T23:03:43.774 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:03:43 smithi038 conmon[81956]: cluster 2023-11-30T23:03:42.307842+0000 mgr.smithi038.ldalxq ( 2023-11-30T23:03:43.774 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:03:43 smithi038 conmon[81956]: mgr.14182) 393 : cluster [DBG] pgmap v285: 225 pgs: 225 active+clean; 7.2 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2023-11-30T23:03:44.230 INFO:teuthology.orchestra.run.smithi038.stdout: 2023-11-30T23:03:44.230 INFO:teuthology.orchestra.run.smithi038.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2023-11-30T22:54:47.122758Z", "last_refresh": "2023-11-30T22:58:55.866934Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2023-11-30T22:54:42.674972Z", "last_refresh": "2023-11-30T22:58:52.669086Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2023-11-30T22:54:45.114633Z", "last_refresh": "2023-11-30T22:58:55.867071Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2023-11-30T22:58:56.317378Z service:ingress.nfs.foo [INFO] \"service was created\"", "2023-11-30T23:02:07.111634Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi167.buykdj on smithi167: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi167-buykdj\n/bin/podman: stderr Error: error inspecting object: no such container ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi167-buykdj\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi167.buykdj\n/bin/podman: stderr Error: error inspecting object: no such container ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi167.buykdj\nDeploy daemon haproxy.nfs.foo.smithi167.buykdj ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi167 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2023-11-30T22:59:44Z\" level=warning msg=\"failed, retrying in 1s ... (1/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-11-30T23:00:21Z\" level=warning msg=\"failed, retrying in 1s ... (2/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-11-30T23:00:59Z\" level=warning msg=\"failed, retrying in 1s ... (3/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: Error determining manifest MIME type for docker://haproxy:2.3: Error reading manifest sha256:058f434330f13dbbc46761f3e9a76af2408e9ec1898c9ac5a8baf00b42e756a9 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi167 -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": 9049, "virtual_ip": "10.0.31.38/16"}, "status": {"created": "2023-11-30T22:58:56.312786Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.38/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2023-11-30T22:54:41.668043Z", "last_refresh": "2023-11-30T22:58:52.669241Z", "running": 2, "size": 2}}, {"events": ["2023-11-30T22:55:50.759225Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi038:172.21.15.38=smithi038", "smithi167:172.21.15.167=smithi167"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2023-11-30T22:55:50.756456Z", "last_refresh": "2023-11-30T22:58:52.669318Z", "running": 2, "size": 2}}, {"events": ["2023-11-30T22:58:56.311581Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2023-11-30T22:58:56.308071Z", "ports": [12049], "running": 0, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2023-11-30T22:54:46.136630Z", "last_refresh": "2023-11-30T22:58:52.669387Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2023-11-30T22:56:33.258058Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2023-11-30T22:56:33.253117Z", "last_refresh": "2023-11-30T22:58:52.669454Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2023-11-30T22:54:43.949497Z", "last_refresh": "2023-11-30T22:58:55.867217Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2023-11-30T22:58:52.105721Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2023-11-30T22:58:59.793467Z", "ports": [8800], "running": 0, "size": 2}}] 2023-11-30T23:03:44.659 INFO:tasks.cephadm:nfs.foo has 0/1 2023-11-30T23:03:45.662 DEBUG:teuthology.orchestra.run.smithi038:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:0dc074ce0b0b3b4f393f56dd32ef36884ebf45a9 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 3faf8b00-8fd3-11ee-95a2-87774f69a715 -- ceph orch ls -f json 2023-11-30T23:03:45.762 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:03:45 smithi167 conmon[87022]: audit 2023-11-30T23:03:44.225977+0000 mgr.smithi038.ldalxq (mgr.14182) 394 : audit [DBG] 2023-11-30T23:03:45.762 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:03:45 smithi167 conmon[87022]: from='client.14912 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-11-30T23:03:45.762 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:03:45 smithi167 conmon[87022]: cluster 2023-11-30T23:03:44.308395+0000 mgr.smithi038.ldalxq (mgr.14182) 395 : cluster [DBG] pgmap v286: 225 pgs: 225 active+clean; 7.2 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2023-11-30T23:03:45.776 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:03:45 smithi038 conmon[81956]: audit 2023-11-30T23:03:44.225977+0000 mgr.smithi038.ldalxq (mgr.14182) 394 : audit [DBG] from='client.14912 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-11-30T23:03:45.777 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:03:45 smithi038 conmon[81956]: cluster 2023-11-30T23:03:44.308395+0000 mgr.smithi038.ldalxq (mgr.14182) 395 : cluster [DBG] pgmap v286: 225 pgs: 225 active+clean; 7.2 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2023-11-30T23:03:47.467 INFO:teuthology.orchestra.run.smithi038.stdout: 2023-11-30T23:03:47.467 INFO:teuthology.orchestra.run.smithi038.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2023-11-30T22:54:47.122758Z", "last_refresh": "2023-11-30T22:58:55.866934Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2023-11-30T22:54:42.674972Z", "last_refresh": "2023-11-30T22:58:52.669086Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2023-11-30T22:54:45.114633Z", "last_refresh": "2023-11-30T22:58:55.867071Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2023-11-30T22:58:56.317378Z service:ingress.nfs.foo [INFO] \"service was created\"", "2023-11-30T23:02:07.111634Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi167.buykdj on smithi167: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi167-buykdj\n/bin/podman: stderr Error: error inspecting object: no such container ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi167-buykdj\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi167.buykdj\n/bin/podman: stderr Error: error inspecting object: no such container ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi167.buykdj\nDeploy daemon haproxy.nfs.foo.smithi167.buykdj ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi167 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2023-11-30T22:59:44Z\" level=warning msg=\"failed, retrying in 1s ... (1/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-11-30T23:00:21Z\" level=warning msg=\"failed, retrying in 1s ... (2/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-11-30T23:00:59Z\" level=warning msg=\"failed, retrying in 1s ... (3/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: Error determining manifest MIME type for docker://haproxy:2.3: Error reading manifest sha256:058f434330f13dbbc46761f3e9a76af2408e9ec1898c9ac5a8baf00b42e756a9 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi167 -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": 9049, "virtual_ip": "10.0.31.38/16"}, "status": {"created": "2023-11-30T22:58:56.312786Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.38/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2023-11-30T22:54:41.668043Z", "last_refresh": "2023-11-30T22:58:52.669241Z", "running": 2, "size": 2}}, {"events": ["2023-11-30T22:55:50.759225Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi038:172.21.15.38=smithi038", "smithi167:172.21.15.167=smithi167"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2023-11-30T22:55:50.756456Z", "last_refresh": "2023-11-30T22:58:52.669318Z", "running": 2, "size": 2}}, {"events": ["2023-11-30T22:58:56.311581Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2023-11-30T22:58:56.308071Z", "ports": [12049], "running": 0, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2023-11-30T22:54:46.136630Z", "last_refresh": "2023-11-30T22:58:52.669387Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2023-11-30T22:56:33.258058Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2023-11-30T22:56:33.253117Z", "last_refresh": "2023-11-30T22:58:52.669454Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2023-11-30T22:54:43.949497Z", "last_refresh": "2023-11-30T22:58:55.867217Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2023-11-30T22:58:52.105721Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2023-11-30T22:58:59.793467Z", "ports": [8800], "running": 0, "size": 2}}] 2023-11-30T23:03:47.774 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:03:47 smithi038 conmon[81956]: cluster 2023-11-30T23:03:46.309110+0000 mgr.smithi038.ldalxq 2023-11-30T23:03:47.774 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:03:47 smithi038 conmon[81956]: (mgr.14182) 396 : cluster [DBG] pgmap v287: 225 pgs: 225 active+clean; 7.2 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2023-11-30T23:03:47.911 INFO:tasks.cephadm:nfs.foo has 0/1 2023-11-30T23:03:48.012 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:03:47 smithi167 conmon[87022]: cluster 2023-11-30T23:03:46.309110+0000 mgr.smithi038.ldalxq (mgr.14182) 396 : cluster [DBG] pgmap v287: 225 pgs: 225 active+clean; 7.2 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2023-11-30T23:03:48.913 DEBUG:teuthology.orchestra.run.smithi038:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:0dc074ce0b0b3b4f393f56dd32ef36884ebf45a9 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 3faf8b00-8fd3-11ee-95a2-87774f69a715 -- ceph orch ls -f json 2023-11-30T23:03:48.944 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:03:48 smithi038 conmon[81956]: audit 2023-11-30T23:03:47.462851+0000 mgr.smithi038.ldalxq (mgr.14182) 397 : audit [DBG] from='client.14916 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-11-30T23:03:49.012 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:03:48 smithi167 conmon[87022]: audit 2023-11-30T23:03:47.462851+0000 mgr.smithi038.ldalxq (mgr.14182) 397 : audit [DBG] 2023-11-30T23:03:49.012 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:03:48 smithi167 conmon[87022]: from='client.14916 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-11-30T23:03:49.774 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:03:49 smithi038 conmon[81956]: cluster 2023-11-30T23:03:48.309810+0000 mgr.smithi038.ldalxq (mgr.14182) 398 : cluster [DBG] pgmap v288: 225 pgs: 225 active+clean; 7.2 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2023-11-30T23:03:50.012 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:03:49 smithi167 conmon[87022]: cluster 2023-11-30T23:03:48.309810+0000 mgr.smithi038.ldalxq (mgr.14182) 398 : cluster [DBG] pgmap v288: 225 pgs: 225 active+clean; 7.2 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2023-11-30T23:03:50.779 INFO:teuthology.orchestra.run.smithi038.stdout: 2023-11-30T23:03:50.779 INFO:teuthology.orchestra.run.smithi038.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2023-11-30T22:54:47.122758Z", "last_refresh": "2023-11-30T22:58:55.866934Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2023-11-30T22:54:42.674972Z", "last_refresh": "2023-11-30T22:58:52.669086Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2023-11-30T22:54:45.114633Z", "last_refresh": "2023-11-30T22:58:55.867071Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2023-11-30T22:58:56.317378Z service:ingress.nfs.foo [INFO] \"service was created\"", "2023-11-30T23:02:07.111634Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi167.buykdj on smithi167: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi167-buykdj\n/bin/podman: stderr Error: error inspecting object: no such container ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi167-buykdj\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi167.buykdj\n/bin/podman: stderr Error: error inspecting object: no such container ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi167.buykdj\nDeploy daemon haproxy.nfs.foo.smithi167.buykdj ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi167 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2023-11-30T22:59:44Z\" level=warning msg=\"failed, retrying in 1s ... (1/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-11-30T23:00:21Z\" level=warning msg=\"failed, retrying in 1s ... (2/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-11-30T23:00:59Z\" level=warning msg=\"failed, retrying in 1s ... (3/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: Error determining manifest MIME type for docker://haproxy:2.3: Error reading manifest sha256:058f434330f13dbbc46761f3e9a76af2408e9ec1898c9ac5a8baf00b42e756a9 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi167 -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": 9049, "virtual_ip": "10.0.31.38/16"}, "status": {"created": "2023-11-30T22:58:56.312786Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.38/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2023-11-30T22:54:41.668043Z", "last_refresh": "2023-11-30T22:58:52.669241Z", "running": 2, "size": 2}}, {"events": ["2023-11-30T22:55:50.759225Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi038:172.21.15.38=smithi038", "smithi167:172.21.15.167=smithi167"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2023-11-30T22:55:50.756456Z", "last_refresh": "2023-11-30T22:58:52.669318Z", "running": 2, "size": 2}}, {"events": ["2023-11-30T22:58:56.311581Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2023-11-30T22:58:56.308071Z", "ports": [12049], "running": 0, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2023-11-30T22:54:46.136630Z", "last_refresh": "2023-11-30T22:58:52.669387Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2023-11-30T22:56:33.258058Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2023-11-30T22:56:33.253117Z", "last_refresh": "2023-11-30T22:58:52.669454Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2023-11-30T22:54:43.949497Z", "last_refresh": "2023-11-30T22:58:55.867217Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2023-11-30T22:58:52.105721Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2023-11-30T22:58:59.793467Z", "ports": [8800], "running": 0, "size": 2}}] 2023-11-30T23:03:51.262 INFO:tasks.cephadm:nfs.foo has 0/1 2023-11-30T23:03:52.013 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:03:51 smithi167 conmon[87022]: cluster 2023-11-30T23:03:50.310585+0000 mgr.smithi038.ldalxq (mgr.14182) 399 : cluster [DBG] pgmap v289: 225 pgs: 225 active+clean; 7.2 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2023-11-30T23:03:52.023 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:03:51 smithi038 conmon[81956]: cluster 2023-11-30T23:03:50.310585+0000 mgr.smithi038.ldalxq (mgr.14182) 399 : cluster [DBG] pgmap v289: 225 pgs: 225 active+clean; 7.2 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2023-11-30T23:03:52.263 DEBUG:teuthology.orchestra.run.smithi038:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:0dc074ce0b0b3b4f393f56dd32ef36884ebf45a9 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 3faf8b00-8fd3-11ee-95a2-87774f69a715 -- ceph orch ls -f json 2023-11-30T23:03:52.779 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:03:52 smithi038 conmon[81956]: audit 2023-11-30T23:03:50.775742+0000 mgr.smithi038.ldalxq 2023-11-30T23:03:52.780 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:03:52 smithi038 conmon[81956]: (mgr.14182) 400 : audit [DBG] from='client.14920 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-11-30T23:03:53.012 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:03:52 smithi167 conmon[87022]: audit 2023-11-30T23:03:50.775742+0000 mgr.smithi038.ldalxq (mgr.14182) 400 : audit [DBG] from='client.14920 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-11-30T23:03:53.993 INFO:teuthology.orchestra.run.smithi038.stdout: 2023-11-30T23:03:53.994 INFO:teuthology.orchestra.run.smithi038.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2023-11-30T22:54:47.122758Z", "last_refresh": "2023-11-30T22:58:55.866934Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2023-11-30T22:54:42.674972Z", "last_refresh": "2023-11-30T22:58:52.669086Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2023-11-30T22:54:45.114633Z", "last_refresh": "2023-11-30T22:58:55.867071Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2023-11-30T22:58:56.317378Z service:ingress.nfs.foo [INFO] \"service was created\"", "2023-11-30T23:02:07.111634Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi167.buykdj on smithi167: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi167-buykdj\n/bin/podman: stderr Error: error inspecting object: no such container ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi167-buykdj\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi167.buykdj\n/bin/podman: stderr Error: error inspecting object: no such container ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi167.buykdj\nDeploy daemon haproxy.nfs.foo.smithi167.buykdj ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi167 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2023-11-30T22:59:44Z\" level=warning msg=\"failed, retrying in 1s ... (1/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-11-30T23:00:21Z\" level=warning msg=\"failed, retrying in 1s ... (2/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-11-30T23:00:59Z\" level=warning msg=\"failed, retrying in 1s ... (3/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: Error determining manifest MIME type for docker://haproxy:2.3: Error reading manifest sha256:058f434330f13dbbc46761f3e9a76af2408e9ec1898c9ac5a8baf00b42e756a9 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi167 -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": 9049, "virtual_ip": "10.0.31.38/16"}, "status": {"created": "2023-11-30T22:58:56.312786Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.38/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2023-11-30T22:54:41.668043Z", "last_refresh": "2023-11-30T22:58:52.669241Z", "running": 2, "size": 2}}, {"events": ["2023-11-30T22:55:50.759225Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi038:172.21.15.38=smithi038", "smithi167:172.21.15.167=smithi167"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2023-11-30T22:55:50.756456Z", "last_refresh": "2023-11-30T22:58:52.669318Z", "running": 2, "size": 2}}, {"events": ["2023-11-30T22:58:56.311581Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2023-11-30T22:58:56.308071Z", "ports": [12049], "running": 0, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2023-11-30T22:54:46.136630Z", "last_refresh": "2023-11-30T22:58:52.669387Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2023-11-30T22:56:33.258058Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2023-11-30T22:56:33.253117Z", "last_refresh": "2023-11-30T22:58:52.669454Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2023-11-30T22:54:43.949497Z", "last_refresh": "2023-11-30T22:58:55.867217Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2023-11-30T22:58:52.105721Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2023-11-30T22:58:59.793467Z", "ports": [8800], "running": 0, "size": 2}}] 2023-11-30T23:03:54.012 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:03:53 smithi167 conmon[87022]: cluster 2023-11-30T23:03:52.311105+0000 mgr.smithi038.ldalxq (mgr.14182) 401 : cluster [DBG] pgmap v290: 225 pgs: 225 active+clean; 7.2 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2023-11-30T23:03:54.012 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:03:53 smithi167 conmon[87022]: 2023-11-30T23:03:54.014 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:03:53 smithi038 conmon[81956]: cluster 2023-11-30T23:03:52.311105+0000 mgr.smithi038.ldalxq (mgr.14182) 2023-11-30T23:03:54.015 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:03:53 smithi038 conmon[81956]: 401 : cluster [DBG] pgmap v290: 225 pgs: 225 active+clean; 7.2 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2023-11-30T23:03:54.429 INFO:tasks.cephadm:nfs.foo has 0/1 2023-11-30T23:03:55.431 DEBUG:teuthology.orchestra.run.smithi038:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:0dc074ce0b0b3b4f393f56dd32ef36884ebf45a9 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 3faf8b00-8fd3-11ee-95a2-87774f69a715 -- ceph orch ls -f json 2023-11-30T23:03:55.774 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:03:55 smithi038 conmon[81956]: audit 2023-11-30T23:03:53.989789+0000 mgr.smithi038.ldalxq (mgr.14182) 2023-11-30T23:03:55.774 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:03:55 smithi038 conmon[81956]: 402 : audit [DBG] from='client.14924 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-11-30T23:03:55.774 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:03:55 smithi038 conmon[81956]: cluster 2023-11-30T23:03:54.311658+0000 mgr.smithi038.ldalxq (mgr.14182) 403 : cluster [DBG] pgmap v291: 225 pgs: 225 active+clean; 7.2 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2023-11-30T23:03:56.012 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:03:55 smithi167 conmon[87022]: audit 2023-11-30T23:03:53.989789+0000 mgr.smithi038.ldalxq (mgr.14182) 402 : audit [DBG] 2023-11-30T23:03:56.012 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:03:55 smithi167 conmon[87022]: from='client.14924 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-11-30T23:03:56.012 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:03:55 smithi167 conmon[87022]: cluster 2023-11-30T23:03:54.311658+0000 mgr.smithi038.ldalxq (mgr.14182) 403 : cluster [DBG] pgmap v291: 225 pgs: 225 active+clean; 7.2 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2023-11-30T23:03:57.251 INFO:teuthology.orchestra.run.smithi038.stdout: 2023-11-30T23:03:57.252 INFO:teuthology.orchestra.run.smithi038.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2023-11-30T22:54:47.122758Z", "last_refresh": "2023-11-30T22:58:55.866934Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2023-11-30T22:54:42.674972Z", "last_refresh": "2023-11-30T22:58:52.669086Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2023-11-30T22:54:45.114633Z", "last_refresh": "2023-11-30T22:58:55.867071Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2023-11-30T22:58:56.317378Z service:ingress.nfs.foo [INFO] \"service was created\"", "2023-11-30T23:02:07.111634Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi167.buykdj on smithi167: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi167-buykdj\n/bin/podman: stderr Error: error inspecting object: no such container ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi167-buykdj\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi167.buykdj\n/bin/podman: stderr Error: error inspecting object: no such container ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi167.buykdj\nDeploy daemon haproxy.nfs.foo.smithi167.buykdj ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi167 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2023-11-30T22:59:44Z\" level=warning msg=\"failed, retrying in 1s ... (1/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-11-30T23:00:21Z\" level=warning msg=\"failed, retrying in 1s ... (2/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-11-30T23:00:59Z\" level=warning msg=\"failed, retrying in 1s ... (3/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: Error determining manifest MIME type for docker://haproxy:2.3: Error reading manifest sha256:058f434330f13dbbc46761f3e9a76af2408e9ec1898c9ac5a8baf00b42e756a9 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi167 -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": 9049, "virtual_ip": "10.0.31.38/16"}, "status": {"created": "2023-11-30T22:58:56.312786Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.38/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2023-11-30T22:54:41.668043Z", "last_refresh": "2023-11-30T22:58:52.669241Z", "running": 2, "size": 2}}, {"events": ["2023-11-30T22:55:50.759225Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi038:172.21.15.38=smithi038", "smithi167:172.21.15.167=smithi167"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2023-11-30T22:55:50.756456Z", "last_refresh": "2023-11-30T22:58:52.669318Z", "running": 2, "size": 2}}, {"events": ["2023-11-30T22:58:56.311581Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2023-11-30T22:58:56.308071Z", "ports": [12049], "running": 0, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2023-11-30T22:54:46.136630Z", "last_refresh": "2023-11-30T22:58:52.669387Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2023-11-30T22:56:33.258058Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2023-11-30T22:56:33.253117Z", "last_refresh": "2023-11-30T22:58:52.669454Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2023-11-30T22:54:43.949497Z", "last_refresh": "2023-11-30T22:58:55.867217Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2023-11-30T22:58:52.105721Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2023-11-30T22:58:59.793467Z", "ports": [8800], "running": 0, "size": 2}}] 2023-11-30T23:03:57.777 INFO:tasks.cephadm:nfs.foo has 0/1 2023-11-30T23:03:58.012 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:03:57 smithi167 conmon[87022]: cluster 2023-11-30T23:03:56.312370+0000 mgr.smithi038.ldalxq (mgr.14182) 404 : cluster [DBG] pgmap v292: 225 pgs: 225 active+clean; 7.2 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2023-11-30T23:03:58.023 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:03:57 smithi038 conmon[81956]: cluster 2023-11-30T23:03:56.312370+0000 mgr.smithi038.ldalxq (mgr.14182) 404 : cluster [DBG] pgmap v292: 225 pgs: 225 active+clean; 7.2 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2023-11-30T23:03:58.778 DEBUG:teuthology.orchestra.run.smithi038:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:0dc074ce0b0b3b4f393f56dd32ef36884ebf45a9 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 3faf8b00-8fd3-11ee-95a2-87774f69a715 -- ceph orch ls -f json 2023-11-30T23:03:58.811 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:03:58 smithi038 conmon[81956]: audit 2023-11-30T23:03:57.246385+0000 mgr.smithi038.ldalxq (mgr.14182) 2023-11-30T23:03:58.811 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:03:58 smithi038 conmon[81956]: 405 : audit [DBG] from='client.14928 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-11-30T23:03:59.012 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:03:58 smithi167 conmon[87022]: audit 2023-11-30T23:03:57.246385+0000 mgr.smithi038.ldalxq (mgr.14182) 405 : audit [DBG] from='client.14928 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-11-30T23:03:59.714 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:03:59 smithi038 conmon[81956]: cluster 2023-11-30T23 2023-11-30T23:03:59.714 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:03:59 smithi038 conmon[81956]: :03:58.313163+0000 mgr.smithi038.ldalxq (mgr.14182) 406 : cluster [DBG] pgmap v293: 225 pgs: 225 active+clean; 7.2 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2023-11-30T23:04:00.012 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:03:59 smithi167 conmon[87022]: cluster 2023-11-30T23:03:58.313163+0000 mgr.smithi038.ldalxq (mgr.14182) 406 : cluster [DBG] pgmap v293: 225 pgs: 225 active+clean; 7.2 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2023-11-30T23:04:00.586 INFO:teuthology.orchestra.run.smithi038.stdout: 2023-11-30T23:04:00.586 INFO:teuthology.orchestra.run.smithi038.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2023-11-30T22:54:47.122758Z", "last_refresh": "2023-11-30T22:58:55.866934Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2023-11-30T22:54:42.674972Z", "last_refresh": "2023-11-30T22:58:52.669086Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2023-11-30T22:54:45.114633Z", "last_refresh": "2023-11-30T22:58:55.867071Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2023-11-30T22:58:56.317378Z service:ingress.nfs.foo [INFO] \"service was created\"", "2023-11-30T23:02:07.111634Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi167.buykdj on smithi167: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi167-buykdj\n/bin/podman: stderr Error: error inspecting object: no such container ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi167-buykdj\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi167.buykdj\n/bin/podman: stderr Error: error inspecting object: no such container ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi167.buykdj\nDeploy daemon haproxy.nfs.foo.smithi167.buykdj ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi167 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2023-11-30T22:59:44Z\" level=warning msg=\"failed, retrying in 1s ... (1/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-11-30T23:00:21Z\" level=warning msg=\"failed, retrying in 1s ... (2/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-11-30T23:00:59Z\" level=warning msg=\"failed, retrying in 1s ... (3/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: Error determining manifest MIME type for docker://haproxy:2.3: Error reading manifest sha256:058f434330f13dbbc46761f3e9a76af2408e9ec1898c9ac5a8baf00b42e756a9 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi167 -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": 9049, "virtual_ip": "10.0.31.38/16"}, "status": {"created": "2023-11-30T22:58:56.312786Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.38/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2023-11-30T22:54:41.668043Z", "last_refresh": "2023-11-30T22:58:52.669241Z", "running": 2, "size": 2}}, {"events": ["2023-11-30T22:55:50.759225Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi038:172.21.15.38=smithi038", "smithi167:172.21.15.167=smithi167"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2023-11-30T22:55:50.756456Z", "last_refresh": "2023-11-30T22:58:52.669318Z", "running": 2, "size": 2}}, {"events": ["2023-11-30T22:58:56.311581Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2023-11-30T22:58:56.308071Z", "ports": [12049], "running": 0, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2023-11-30T22:54:46.136630Z", "last_refresh": "2023-11-30T22:58:52.669387Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2023-11-30T22:56:33.258058Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2023-11-30T22:56:33.253117Z", "last_refresh": "2023-11-30T22:58:52.669454Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2023-11-30T22:54:43.949497Z", "last_refresh": "2023-11-30T22:58:55.867217Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2023-11-30T22:58:52.105721Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2023-11-30T22:58:59.793467Z", "ports": [8800], "running": 0, "size": 2}}] 2023-11-30T23:04:01.041 INFO:tasks.cephadm:nfs.foo has 0/1 2023-11-30T23:04:02.011 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:04:01 smithi167 conmon[87022]: cluster 2023-11-30T23:04:00.313870+0000 mgr.smithi038.ldalxq (mgr.14182) 407 : cluster [DBG] pgmap v294: 225 pgs: 225 active+clean; 7.2 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2023-11-30T23:04:02.012 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:04:01 smithi167 conmon[87022]: audit 2023-11-30T23:04:00.582473+0000 mgr.smithi038.ldalxq (mgr.14182) 408 : audit [DBG] from='client.14932 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-11-30T23:04:02.024 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:04:01 smithi038 conmon[81956]: cluster 2023-11-30T23:04:00.313870+0000 mgr.smithi038.ldalxq (mgr.14182) 407 : cluster [DBG] pgmap v294: 225 pgs: 225 active+clean; 7.2 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2023-11-30T23:04:02.024 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:04:01 smithi038 conmon[81956]: audit 2023-11-30T23:04:00.582473+0000 mgr.smithi038.ldalxq (mgr.14182) 408 : audit [DBG] from='client.14932 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-11-30T23:04:02.042 DEBUG:teuthology.orchestra.run.smithi038:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:0dc074ce0b0b3b4f393f56dd32ef36884ebf45a9 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 3faf8b00-8fd3-11ee-95a2-87774f69a715 -- ceph orch ls -f json 2023-11-30T23:04:03.011 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:04:02 smithi167 conmon[87022]: cluster 2023-11-30T23:04:02.314520+0000 mgr.smithi038.ldalxq (mgr.14182) 409 : cluster [DBG] pgmap v295: 225 pgs: 225 active+clean; 7.2 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2023-11-30T23:04:03.023 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:04:02 smithi038 conmon[81956]: cluster 2023-11-30T23:04:02.314520+0000 mgr.smithi038.ldalxq 2023-11-30T23:04:03.023 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:04:02 smithi038 conmon[81956]: (mgr.14182) 409 : cluster [DBG] pgmap v295: 225 pgs: 225 active+clean; 7.2 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2023-11-30T23:04:03.899 INFO:teuthology.orchestra.run.smithi038.stdout: 2023-11-30T23:04:03.899 INFO:teuthology.orchestra.run.smithi038.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2023-11-30T22:54:47.122758Z", "last_refresh": "2023-11-30T22:58:55.866934Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2023-11-30T22:54:42.674972Z", "last_refresh": "2023-11-30T22:58:52.669086Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2023-11-30T22:54:45.114633Z", "last_refresh": "2023-11-30T22:58:55.867071Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2023-11-30T22:58:56.317378Z service:ingress.nfs.foo [INFO] \"service was created\"", "2023-11-30T23:02:07.111634Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi167.buykdj on smithi167: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi167-buykdj\n/bin/podman: stderr Error: error inspecting object: no such container ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi167-buykdj\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi167.buykdj\n/bin/podman: stderr Error: error inspecting object: no such container ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi167.buykdj\nDeploy daemon haproxy.nfs.foo.smithi167.buykdj ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi167 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2023-11-30T22:59:44Z\" level=warning msg=\"failed, retrying in 1s ... (1/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-11-30T23:00:21Z\" level=warning msg=\"failed, retrying in 1s ... (2/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-11-30T23:00:59Z\" level=warning msg=\"failed, retrying in 1s ... (3/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: Error determining manifest MIME type for docker://haproxy:2.3: Error reading manifest sha256:058f434330f13dbbc46761f3e9a76af2408e9ec1898c9ac5a8baf00b42e756a9 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi167 -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": 9049, "virtual_ip": "10.0.31.38/16"}, "status": {"created": "2023-11-30T22:58:56.312786Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.38/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2023-11-30T22:54:41.668043Z", "last_refresh": "2023-11-30T22:58:52.669241Z", "running": 2, "size": 2}}, {"events": ["2023-11-30T22:55:50.759225Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi038:172.21.15.38=smithi038", "smithi167:172.21.15.167=smithi167"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2023-11-30T22:55:50.756456Z", "last_refresh": "2023-11-30T22:58:52.669318Z", "running": 2, "size": 2}}, {"events": ["2023-11-30T22:58:56.311581Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2023-11-30T22:58:56.308071Z", "ports": [12049], "running": 0, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2023-11-30T22:54:46.136630Z", "last_refresh": "2023-11-30T22:58:52.669387Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2023-11-30T22:56:33.258058Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2023-11-30T22:56:33.253117Z", "last_refresh": "2023-11-30T22:58:52.669454Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2023-11-30T22:54:43.949497Z", "last_refresh": "2023-11-30T22:58:55.867217Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2023-11-30T22:58:52.105721Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2023-11-30T22:58:59.793467Z", "ports": [8800], "running": 0, "size": 2}}] 2023-11-30T23:04:04.406 INFO:tasks.cephadm:nfs.foo has 0/1 2023-11-30T23:04:05.408 DEBUG:teuthology.orchestra.run.smithi038:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:0dc074ce0b0b3b4f393f56dd32ef36884ebf45a9 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 3faf8b00-8fd3-11ee-95a2-87774f69a715 -- ceph orch ls -f json 2023-11-30T23:04:05.762 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:04:05 smithi167 conmon[87022]: audit 2023-11-30T23:04:03.895343+0000 mgr.smithi038.ldalxq (mgr.14182) 410 : audit [DBG] from='client.14936 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-11-30T23:04:05.762 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:04:05 smithi167 conmon[87022]: cluster 2023-11-30T23:04:04.315096 2023-11-30T23:04:05.762 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:04:05 smithi167 conmon[87022]: +0000 mgr.smithi038.ldalxq (mgr.14182) 411 : cluster [DBG] pgmap v296: 225 pgs: 225 active+clean; 7.2 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2023-11-30T23:04:05.774 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:04:05 smithi038 conmon[81956]: audit 2023-11-30T23:04:03.895343+0000 mgr.smithi038.ldalxq (mgr.14182) 410 : audit [DBG] from='client.14936 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-11-30T23:04:05.774 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:04:05 smithi038 conmon[81956]: cluster 2023-11-30T23:04:04.315096+0000 mgr.smithi038.ldalxq (mgr.14182) 411 : cluster [DBG] pgmap v296: 225 pgs: 225 active+clean; 7.2 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2023-11-30T23:04:07.222 INFO:teuthology.orchestra.run.smithi038.stdout: 2023-11-30T23:04:07.222 INFO:teuthology.orchestra.run.smithi038.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2023-11-30T22:54:47.122758Z", "last_refresh": "2023-11-30T22:58:55.866934Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2023-11-30T22:54:42.674972Z", "last_refresh": "2023-11-30T22:58:52.669086Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2023-11-30T22:54:45.114633Z", "last_refresh": "2023-11-30T22:58:55.867071Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2023-11-30T22:58:56.317378Z service:ingress.nfs.foo [INFO] \"service was created\"", "2023-11-30T23:02:07.111634Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi167.buykdj on smithi167: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi167-buykdj\n/bin/podman: stderr Error: error inspecting object: no such container ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi167-buykdj\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi167.buykdj\n/bin/podman: stderr Error: error inspecting object: no such container ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi167.buykdj\nDeploy daemon haproxy.nfs.foo.smithi167.buykdj ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi167 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2023-11-30T22:59:44Z\" level=warning msg=\"failed, retrying in 1s ... (1/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-11-30T23:00:21Z\" level=warning msg=\"failed, retrying in 1s ... (2/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-11-30T23:00:59Z\" level=warning msg=\"failed, retrying in 1s ... (3/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: Error determining manifest MIME type for docker://haproxy:2.3: Error reading manifest sha256:058f434330f13dbbc46761f3e9a76af2408e9ec1898c9ac5a8baf00b42e756a9 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi167 -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": 9049, "virtual_ip": "10.0.31.38/16"}, "status": {"created": "2023-11-30T22:58:56.312786Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.38/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2023-11-30T22:54:41.668043Z", "last_refresh": "2023-11-30T22:58:52.669241Z", "running": 2, "size": 2}}, {"events": ["2023-11-30T22:55:50.759225Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi038:172.21.15.38=smithi038", "smithi167:172.21.15.167=smithi167"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2023-11-30T22:55:50.756456Z", "last_refresh": "2023-11-30T22:58:52.669318Z", "running": 2, "size": 2}}, {"events": ["2023-11-30T22:58:56.311581Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2023-11-30T22:58:56.308071Z", "ports": [12049], "running": 0, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2023-11-30T22:54:46.136630Z", "last_refresh": "2023-11-30T22:58:52.669387Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2023-11-30T22:56:33.258058Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2023-11-30T22:56:33.253117Z", "last_refresh": "2023-11-30T22:58:52.669454Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2023-11-30T22:54:43.949497Z", "last_refresh": "2023-11-30T22:58:55.867217Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2023-11-30T22:58:52.105721Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2023-11-30T22:58:59.793467Z", "ports": [8800], "running": 0, "size": 2}}] 2023-11-30T23:04:07.514 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:04:07 smithi038 conmon[81956]: cluster 2023-11-30T23:04:06.315724+0000 mgr.smithi038.ldalxq (mgr.14182) 412 : cluster [DBG] pgmap v297: 225 pgs: 225 active+clean; 7.2 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2023-11-30T23:04:07.762 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:04:07 smithi167 conmon[87022]: cluster 2023-11-30T23:04:06.315724+0000 mgr.smithi038.ldalxq (mgr.14182) 412 : cluster [DBG] pgmap v297: 225 pgs: 225 active+clean; 7.2 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2023-11-30T23:04:07.769 INFO:tasks.cephadm:nfs.foo has 0/1 2023-11-30T23:04:08.762 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:04:08 smithi167 conmon[87022]: audit 2023-11-30T23:04:07.218599+0000 mgr.smithi038.ldalxq (mgr.14182) 413 : audit [DBG] from='client.14940 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-11-30T23:04:08.769 DEBUG:teuthology.orchestra.run.smithi038:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:0dc074ce0b0b3b4f393f56dd32ef36884ebf45a9 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 3faf8b00-8fd3-11ee-95a2-87774f69a715 -- ceph orch ls -f json 2023-11-30T23:04:08.773 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:04:08 smithi038 conmon[81956]: audit 2023-11-30T23:04:07.218599+0000 mgr.smithi038.ldalxq (mgr.14182) 2023-11-30T23:04:08.773 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:04:08 smithi038 conmon[81956]: 413 : audit [DBG] from='client.14940 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-11-30T23:04:09.696 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:04:09 smithi038 conmon[81956]: cluster 2023-11-30T23:04:08.316238+0000 mgr.smithi038.ldalxq (mgr.14182) 414 : cluster [DBG] pgmap v298: 225 pgs: 225 active+clean; 7.2 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2023-11-30T23:04:09.764 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:04:09 smithi167 conmon[87022]: cluster 2023-11-30T23:04:08.316238+0000 mgr.smithi038.ldalxq (mgr.14182) 414 : cluster [DBG] pgmap v298: 225 pgs: 225 active+clean; 7.2 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2023-11-30T23:04:10.512 INFO:teuthology.orchestra.run.smithi038.stdout: 2023-11-30T23:04:10.512 INFO:teuthology.orchestra.run.smithi038.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2023-11-30T22:54:47.122758Z", "last_refresh": "2023-11-30T22:58:55.866934Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2023-11-30T22:54:42.674972Z", "last_refresh": "2023-11-30T22:58:52.669086Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2023-11-30T22:54:45.114633Z", "last_refresh": "2023-11-30T22:58:55.867071Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2023-11-30T22:58:56.317378Z service:ingress.nfs.foo [INFO] \"service was created\"", "2023-11-30T23:02:07.111634Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi167.buykdj on smithi167: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi167-buykdj\n/bin/podman: stderr Error: error inspecting object: no such container ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi167-buykdj\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi167.buykdj\n/bin/podman: stderr Error: error inspecting object: no such container ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi167.buykdj\nDeploy daemon haproxy.nfs.foo.smithi167.buykdj ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi167 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2023-11-30T22:59:44Z\" level=warning msg=\"failed, retrying in 1s ... (1/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-11-30T23:00:21Z\" level=warning msg=\"failed, retrying in 1s ... (2/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-11-30T23:00:59Z\" level=warning msg=\"failed, retrying in 1s ... (3/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: Error determining manifest MIME type for docker://haproxy:2.3: Error reading manifest sha256:058f434330f13dbbc46761f3e9a76af2408e9ec1898c9ac5a8baf00b42e756a9 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi167 -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": 9049, "virtual_ip": "10.0.31.38/16"}, "status": {"created": "2023-11-30T22:58:56.312786Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.38/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2023-11-30T22:54:41.668043Z", "last_refresh": "2023-11-30T22:58:52.669241Z", "running": 2, "size": 2}}, {"events": ["2023-11-30T22:55:50.759225Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi038:172.21.15.38=smithi038", "smithi167:172.21.15.167=smithi167"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2023-11-30T22:55:50.756456Z", "last_refresh": "2023-11-30T22:58:52.669318Z", "running": 2, "size": 2}}, {"events": ["2023-11-30T22:58:56.311581Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2023-11-30T22:58:56.308071Z", "ports": [12049], "running": 0, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2023-11-30T22:54:46.136630Z", "last_refresh": "2023-11-30T22:58:52.669387Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2023-11-30T22:56:33.258058Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2023-11-30T22:56:33.253117Z", "last_refresh": "2023-11-30T22:58:52.669454Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2023-11-30T22:54:43.949497Z", "last_refresh": "2023-11-30T22:58:55.867217Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2023-11-30T22:58:52.105721Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2023-11-30T22:58:59.793467Z", "ports": [8800], "running": 0, "size": 2}}] 2023-11-30T23:04:11.031 INFO:tasks.cephadm:nfs.foo has 0/1 2023-11-30T23:04:11.763 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:04:11 smithi167 conmon[87022]: cluster 2023-11-30T23:04:10.316984+0000 mgr.smithi038.ldalxq (mgr.14182) 415 : cluster [DBG] pgmap v299: 225 pgs: 225 active+clean; 7.2 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2023-11-30T23:04:11.764 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:04:11 smithi167 conmon[87022]: 2023-11-30T23:04:11.764 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:04:11 smithi167 conmon[87022]: audit 2023-11-30T23:04:10.508726+0000 mgr.smithi038.ldalxq (mgr.14182) 416 : audit [DBG] from='client.14944 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-11-30T23:04:11.775 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:04:11 smithi038 conmon[81956]: cluster 2023-11-30T23:04:10.316984+0000 mgr.smithi038.ldalxq (mgr.14182) 415 : cluster [DBG] pgmap v299: 225 pgs: 225 active+clean; 7.2 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2023-11-30T23:04:11.775 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:04:11 smithi038 conmon[81956]: audit 2023-11-30T23:04:10.508726+0000 mgr.smithi038.ldalxq (mgr.14182) 416 : audit [DBG] from='client.14944 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-11-30T23:04:12.032 DEBUG:teuthology.orchestra.run.smithi038:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:0dc074ce0b0b3b4f393f56dd32ef36884ebf45a9 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 3faf8b00-8fd3-11ee-95a2-87774f69a715 -- ceph orch ls -f json 2023-11-30T23:04:12.972 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:04:12 smithi038 conmon[81956]: cluster 2023-11-30T23:04:12.317613+0000 mgr.smithi038.ldalxq (mgr.14182) 417 : cluster [DBG] pgmap v300: 225 pgs: 225 active+clean; 7.2 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2023-11-30T23:04:13.012 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:04:12 smithi167 conmon[87022]: cluster 2023-11-30T23:04:12.317613+0000 mgr.smithi038.ldalxq (mgr.14182) 417 : cluster [DBG] pgmap v300: 225 pgs: 225 active+clean; 7.2 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2023-11-30T23:04:13.874 INFO:teuthology.orchestra.run.smithi038.stdout: 2023-11-30T23:04:13.874 INFO:teuthology.orchestra.run.smithi038.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2023-11-30T22:54:47.122758Z", "last_refresh": "2023-11-30T22:58:55.866934Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2023-11-30T22:54:42.674972Z", "last_refresh": "2023-11-30T22:58:52.669086Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2023-11-30T22:54:45.114633Z", "last_refresh": "2023-11-30T22:58:55.867071Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2023-11-30T22:58:56.317378Z service:ingress.nfs.foo [INFO] \"service was created\"", "2023-11-30T23:02:07.111634Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi167.buykdj on smithi167: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi167-buykdj\n/bin/podman: stderr Error: error inspecting object: no such container ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi167-buykdj\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi167.buykdj\n/bin/podman: stderr Error: error inspecting object: no such container ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi167.buykdj\nDeploy daemon haproxy.nfs.foo.smithi167.buykdj ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi167 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2023-11-30T22:59:44Z\" level=warning msg=\"failed, retrying in 1s ... (1/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-11-30T23:00:21Z\" level=warning msg=\"failed, retrying in 1s ... (2/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-11-30T23:00:59Z\" level=warning msg=\"failed, retrying in 1s ... (3/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: Error determining manifest MIME type for docker://haproxy:2.3: Error reading manifest sha256:058f434330f13dbbc46761f3e9a76af2408e9ec1898c9ac5a8baf00b42e756a9 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi167 -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": 9049, "virtual_ip": "10.0.31.38/16"}, "status": {"created": "2023-11-30T22:58:56.312786Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.38/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2023-11-30T22:54:41.668043Z", "last_refresh": "2023-11-30T22:58:52.669241Z", "running": 2, "size": 2}}, {"events": ["2023-11-30T22:55:50.759225Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi038:172.21.15.38=smithi038", "smithi167:172.21.15.167=smithi167"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2023-11-30T22:55:50.756456Z", "last_refresh": "2023-11-30T22:58:52.669318Z", "running": 2, "size": 2}}, {"events": ["2023-11-30T22:58:56.311581Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2023-11-30T22:58:56.308071Z", "ports": [12049], "running": 0, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2023-11-30T22:54:46.136630Z", "last_refresh": "2023-11-30T22:58:52.669387Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2023-11-30T22:56:33.258058Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2023-11-30T22:56:33.253117Z", "last_refresh": "2023-11-30T22:58:52.669454Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2023-11-30T22:54:43.949497Z", "last_refresh": "2023-11-30T22:58:55.867217Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2023-11-30T22:58:52.105721Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2023-11-30T22:58:59.793467Z", "ports": [8800], "running": 0, "size": 2}}] 2023-11-30T23:04:14.287 INFO:tasks.cephadm:nfs.foo has 0/1 2023-11-30T23:04:15.288 DEBUG:teuthology.orchestra.run.smithi038:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:0dc074ce0b0b3b4f393f56dd32ef36884ebf45a9 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 3faf8b00-8fd3-11ee-95a2-87774f69a715 -- ceph orch ls -f json 2023-11-30T23:04:15.762 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:04:15 smithi167 conmon[87022]: audit 2023-11-30T23:04:13.870433+0000 mgr.smithi038.ldalxq (mgr.14182) 418 : audit [DBG] from='client.14948 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-11-30T23:04:15.762 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:04:15 smithi167 conmon[87022]: cluster 2023-11-30T23:04:14.318286+0000 mgr.smithi038.ldalxq (mgr.14182) 419 : cluster [DBG] pgmap v301: 225 pgs: 225 active+clean; 7.2 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2023-11-30T23:04:15.774 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:04:15 smithi038 conmon[81956]: audit 2023-11-30T23:04:13.870433+0000 2023-11-30T23:04:15.774 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:04:15 smithi038 conmon[81956]: mgr.smithi038.ldalxq (mgr.14182) 418 : audit [DBG] from='client.14948 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-11-30T23:04:15.774 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:04:15 smithi038 conmon[81956]: cluster 2023-11-30T23:04:14.318286+0000 mgr.smithi038.ldalxq (mgr.14182) 419 : cluster [DBG] pgmap v301: 225 pgs: 225 active+clean; 7.2 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2023-11-30T23:04:17.099 INFO:teuthology.orchestra.run.smithi038.stdout: 2023-11-30T23:04:17.099 INFO:teuthology.orchestra.run.smithi038.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2023-11-30T22:54:47.122758Z", "last_refresh": "2023-11-30T22:58:55.866934Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2023-11-30T22:54:42.674972Z", "last_refresh": "2023-11-30T22:58:52.669086Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2023-11-30T22:54:45.114633Z", "last_refresh": "2023-11-30T22:58:55.867071Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2023-11-30T22:58:56.317378Z service:ingress.nfs.foo [INFO] \"service was created\"", "2023-11-30T23:02:07.111634Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi167.buykdj on smithi167: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi167-buykdj\n/bin/podman: stderr Error: error inspecting object: no such container ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi167-buykdj\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi167.buykdj\n/bin/podman: stderr Error: error inspecting object: no such container ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi167.buykdj\nDeploy daemon haproxy.nfs.foo.smithi167.buykdj ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi167 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2023-11-30T22:59:44Z\" level=warning msg=\"failed, retrying in 1s ... (1/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-11-30T23:00:21Z\" level=warning msg=\"failed, retrying in 1s ... (2/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-11-30T23:00:59Z\" level=warning msg=\"failed, retrying in 1s ... (3/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: Error determining manifest MIME type for docker://haproxy:2.3: Error reading manifest sha256:058f434330f13dbbc46761f3e9a76af2408e9ec1898c9ac5a8baf00b42e756a9 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi167 -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": 9049, "virtual_ip": "10.0.31.38/16"}, "status": {"created": "2023-11-30T22:58:56.312786Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.38/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2023-11-30T22:54:41.668043Z", "last_refresh": "2023-11-30T22:58:52.669241Z", "running": 2, "size": 2}}, {"events": ["2023-11-30T22:55:50.759225Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi038:172.21.15.38=smithi038", "smithi167:172.21.15.167=smithi167"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2023-11-30T22:55:50.756456Z", "last_refresh": "2023-11-30T22:58:52.669318Z", "running": 2, "size": 2}}, {"events": ["2023-11-30T22:58:56.311581Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2023-11-30T22:58:56.308071Z", "ports": [12049], "running": 0, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2023-11-30T22:54:46.136630Z", "last_refresh": "2023-11-30T22:58:52.669387Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2023-11-30T22:56:33.258058Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2023-11-30T22:56:33.253117Z", "last_refresh": "2023-11-30T22:58:52.669454Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2023-11-30T22:54:43.949497Z", "last_refresh": "2023-11-30T22:58:55.867217Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2023-11-30T22:58:52.105721Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2023-11-30T22:58:59.793467Z", "ports": [8800], "running": 0, "size": 2}}] 2023-11-30T23:04:17.638 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:04:17 smithi038 conmon[81956]: cluster 2023-11-30T23:04:16.319213+0000 mgr.smithi038.ldalxq (mgr.14182) 420 : cluster [DBG] pgmap v302: 225 pgs: 225 active+clean; 7.2 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2023-11-30T23:04:17.654 INFO:tasks.cephadm:nfs.foo has 0/1 2023-11-30T23:04:17.763 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:04:17 smithi167 conmon[87022]: cluster 2023-11-30T23:04:16.319213+0000 mgr.smithi038.ldalxq (mgr.14182) 420 : cluster [DBG] pgmap v302: 225 pgs: 225 active+clean; 7.2 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2023-11-30T23:04:18.655 DEBUG:teuthology.orchestra.run.smithi038:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:0dc074ce0b0b3b4f393f56dd32ef36884ebf45a9 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 3faf8b00-8fd3-11ee-95a2-87774f69a715 -- ceph orch ls -f json 2023-11-30T23:04:18.686 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:04:18 smithi038 conmon[81956]: audit 2023-11-30T23:04:17.094878+0000 2023-11-30T23:04:18.686 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:04:18 smithi038 conmon[81956]: mgr.smithi038.ldalxq (mgr.14182) 421 : audit [DBG] from='client.14952 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-11-30T23:04:18.765 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:04:18 smithi167 conmon[87022]: audit 2023-11-30T23:04:17.094878+0000 mgr.smithi038.ldalxq (mgr.14182) 421 : audit 2023-11-30T23:04:18.765 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:04:18 smithi167 conmon[87022]: [DBG] from='client.14952 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-11-30T23:04:19.524 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:04:19 smithi038 conmon[81956]: cluster 2023-11-30T23:04:18.319936+0000 mgr.smithi038.ldalxq ( 2023-11-30T23:04:19.524 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:04:19 smithi038 conmon[81956]: mgr.14182) 422 : cluster [DBG] pgmap v303: 225 pgs: 225 active+clean; 7.2 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2023-11-30T23:04:19.762 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:04:19 smithi167 conmon[87022]: cluster 2023-11-30T23:04:18.319936+0000 mgr.smithi038.ldalxq 2023-11-30T23:04:19.762 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:04:19 smithi167 conmon[87022]: (mgr.14182) 422 : cluster [DBG] pgmap v303: 225 pgs: 225 active+clean; 7.2 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2023-11-30T23:04:20.545 INFO:teuthology.orchestra.run.smithi038.stdout: 2023-11-30T23:04:20.545 INFO:teuthology.orchestra.run.smithi038.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2023-11-30T22:54:47.122758Z", "last_refresh": "2023-11-30T22:58:55.866934Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2023-11-30T22:54:42.674972Z", "last_refresh": "2023-11-30T22:58:52.669086Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2023-11-30T22:54:45.114633Z", "last_refresh": "2023-11-30T22:58:55.867071Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2023-11-30T22:58:56.317378Z service:ingress.nfs.foo [INFO] \"service was created\"", "2023-11-30T23:02:07.111634Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi167.buykdj on smithi167: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi167-buykdj\n/bin/podman: stderr Error: error inspecting object: no such container ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi167-buykdj\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi167.buykdj\n/bin/podman: stderr Error: error inspecting object: no such container ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi167.buykdj\nDeploy daemon haproxy.nfs.foo.smithi167.buykdj ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi167 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2023-11-30T22:59:44Z\" level=warning msg=\"failed, retrying in 1s ... (1/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-11-30T23:00:21Z\" level=warning msg=\"failed, retrying in 1s ... (2/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-11-30T23:00:59Z\" level=warning msg=\"failed, retrying in 1s ... (3/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: Error determining manifest MIME type for docker://haproxy:2.3: Error reading manifest sha256:058f434330f13dbbc46761f3e9a76af2408e9ec1898c9ac5a8baf00b42e756a9 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi167 -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": 9049, "virtual_ip": "10.0.31.38/16"}, "status": {"created": "2023-11-30T22:58:56.312786Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.38/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2023-11-30T22:54:41.668043Z", "last_refresh": "2023-11-30T22:58:52.669241Z", "running": 2, "size": 2}}, {"events": ["2023-11-30T22:55:50.759225Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi038:172.21.15.38=smithi038", "smithi167:172.21.15.167=smithi167"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2023-11-30T22:55:50.756456Z", "last_refresh": "2023-11-30T22:58:52.669318Z", "running": 2, "size": 2}}, {"events": ["2023-11-30T22:58:56.311581Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2023-11-30T22:58:56.308071Z", "ports": [12049], "running": 0, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2023-11-30T22:54:46.136630Z", "last_refresh": "2023-11-30T22:58:52.669387Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2023-11-30T22:56:33.258058Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2023-11-30T22:56:33.253117Z", "last_refresh": "2023-11-30T22:58:52.669454Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2023-11-30T22:54:43.949497Z", "last_refresh": "2023-11-30T22:58:55.867217Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2023-11-30T22:58:52.105721Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2023-11-30T22:58:59.793467Z", "ports": [8800], "running": 0, "size": 2}}] 2023-11-30T23:04:21.018 INFO:tasks.cephadm:nfs.foo has 0/1 2023-11-30T23:04:21.763 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:04:21 smithi167 conmon[87022]: cluster 2023-11-30T23:04:20.320630+0000 mgr.smithi038.ldalxq (mgr.14182) 423 : cluster [DBG] pgmap v304: 225 pgs: 225 active+clean; 7.2 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2023-11-30T23:04:22.062 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:04:21 smithi167 conmon[87022]: audit 2023-11-30T23:04:20.541829+0000 mgr.smithi038.ldalxq (mgr.14182) 424 : audit [DBG] from='client.14956 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-11-30T23:04:22.063 DEBUG:teuthology.orchestra.run.smithi038:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:0dc074ce0b0b3b4f393f56dd32ef36884ebf45a9 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 3faf8b00-8fd3-11ee-95a2-87774f69a715 -- ceph orch ls -f json 2023-11-30T23:04:22.064 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:04:21 smithi038 conmon[81956]: cluster 2023-11-30T23:04:20.320630+0000 mgr.smithi038.ldalxq (mgr.14182) 423 : cluster [DBG] pgmap v304: 225 pgs: 225 active+clean; 7.2 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2023-11-30T23:04:22.065 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:04:21 smithi038 conmon[81956]: audit 2023-11-30T23:04:20.541829+0000 mgr.smithi038.ldalxq (mgr.14182) 424 : audit [DBG] from='client.14956 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-11-30T23:04:23.013 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:04:22 smithi038 conmon[81956]: cluster 2023-11-30T23:04:22.321346+0000 mgr.smithi038.ldalxq (mgr.14182) 425 : cluster [DBG] pgmap v305: 225 pgs: 225 active+clean; 7.2 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2023-11-30T23:04:23.013 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:04:22 smithi167 conmon[87022]: cluster 2023-11-30T23:04:22.321346+0000 mgr.smithi038.ldalxq (mgr.14182) 425 : cluster [DBG] pgmap v305: 225 pgs: 225 active+clean; 7.2 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2023-11-30T23:04:23.918 INFO:teuthology.orchestra.run.smithi038.stdout: 2023-11-30T23:04:23.918 INFO:teuthology.orchestra.run.smithi038.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2023-11-30T22:54:47.122758Z", "last_refresh": "2023-11-30T22:58:55.866934Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2023-11-30T22:54:42.674972Z", "last_refresh": "2023-11-30T22:58:52.669086Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2023-11-30T22:54:45.114633Z", "last_refresh": "2023-11-30T22:58:55.867071Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2023-11-30T22:58:56.317378Z service:ingress.nfs.foo [INFO] \"service was created\"", "2023-11-30T23:02:07.111634Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi167.buykdj on smithi167: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi167-buykdj\n/bin/podman: stderr Error: error inspecting object: no such container ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi167-buykdj\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi167.buykdj\n/bin/podman: stderr Error: error inspecting object: no such container ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi167.buykdj\nDeploy daemon haproxy.nfs.foo.smithi167.buykdj ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi167 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2023-11-30T22:59:44Z\" level=warning msg=\"failed, retrying in 1s ... (1/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-11-30T23:00:21Z\" level=warning msg=\"failed, retrying in 1s ... (2/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-11-30T23:00:59Z\" level=warning msg=\"failed, retrying in 1s ... (3/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: Error determining manifest MIME type for docker://haproxy:2.3: Error reading manifest sha256:058f434330f13dbbc46761f3e9a76af2408e9ec1898c9ac5a8baf00b42e756a9 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi167 -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": 9049, "virtual_ip": "10.0.31.38/16"}, "status": {"created": "2023-11-30T22:58:56.312786Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.38/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2023-11-30T22:54:41.668043Z", "last_refresh": "2023-11-30T22:58:52.669241Z", "running": 2, "size": 2}}, {"events": ["2023-11-30T22:55:50.759225Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi038:172.21.15.38=smithi038", "smithi167:172.21.15.167=smithi167"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2023-11-30T22:55:50.756456Z", "last_refresh": "2023-11-30T22:58:52.669318Z", "running": 2, "size": 2}}, {"events": ["2023-11-30T22:58:56.311581Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2023-11-30T22:58:56.308071Z", "ports": [12049], "running": 0, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2023-11-30T22:54:46.136630Z", "last_refresh": "2023-11-30T22:58:52.669387Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2023-11-30T22:56:33.258058Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2023-11-30T22:56:33.253117Z", "last_refresh": "2023-11-30T22:58:52.669454Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2023-11-30T22:54:43.949497Z", "last_refresh": "2023-11-30T22:58:55.867217Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2023-11-30T22:58:52.105721Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2023-11-30T22:58:59.793467Z", "ports": [8800], "running": 0, "size": 2}}] 2023-11-30T23:04:24.315 INFO:tasks.cephadm:nfs.foo has 0/1 2023-11-30T23:04:25.317 DEBUG:teuthology.orchestra.run.smithi038:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:0dc074ce0b0b3b4f393f56dd32ef36884ebf45a9 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 3faf8b00-8fd3-11ee-95a2-87774f69a715 -- ceph orch ls -f json 2023-11-30T23:04:25.764 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:04:25 smithi167 conmon[87022]: audit 2023-11-30T23:04:23.913801+0000 mgr.smithi038.ldalxq (mgr.14182) 426 : audit [DBG] from='client.14960 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-11-30T23:04:25.764 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:04:25 smithi167 conmon[87022]: cluster 2023-11-30T23:04:24.321860+0000 mgr.smithi038.ldalxq (mgr.14182) 427 : cluster [DBG] pgmap v306: 225 pgs: 225 active+clean; 7.2 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2023-11-30T23:04:25.774 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:04:25 smithi038 conmon[81956]: audit 2023-11-30T23:04:23.913801+0000 mgr.smithi038.ldalxq (mgr.14182) 426 : audit [DBG] from='client.14960 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-11-30T23:04:25.774 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:04:25 smithi038 conmon[81956]: cluster 2023-11-30T23:04:24.321860+0000 mgr.smithi038.ldalxq (mgr.14182) 427 : cluster [DBG] pgmap v306: 225 pgs: 225 active+clean; 7.2 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2023-11-30T23:04:27.061 INFO:teuthology.orchestra.run.smithi038.stdout: 2023-11-30T23:04:27.061 INFO:teuthology.orchestra.run.smithi038.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2023-11-30T22:54:47.122758Z", "last_refresh": "2023-11-30T22:58:55.866934Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2023-11-30T22:54:42.674972Z", "last_refresh": "2023-11-30T22:58:52.669086Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2023-11-30T22:54:45.114633Z", "last_refresh": "2023-11-30T22:58:55.867071Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2023-11-30T22:58:56.317378Z service:ingress.nfs.foo [INFO] \"service was created\"", "2023-11-30T23:02:07.111634Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi167.buykdj on smithi167: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi167-buykdj\n/bin/podman: stderr Error: error inspecting object: no such container ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi167-buykdj\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi167.buykdj\n/bin/podman: stderr Error: error inspecting object: no such container ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi167.buykdj\nDeploy daemon haproxy.nfs.foo.smithi167.buykdj ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi167 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2023-11-30T22:59:44Z\" level=warning msg=\"failed, retrying in 1s ... (1/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-11-30T23:00:21Z\" level=warning msg=\"failed, retrying in 1s ... (2/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-11-30T23:00:59Z\" level=warning msg=\"failed, retrying in 1s ... (3/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: Error determining manifest MIME type for docker://haproxy:2.3: Error reading manifest sha256:058f434330f13dbbc46761f3e9a76af2408e9ec1898c9ac5a8baf00b42e756a9 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi167 -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": 9049, "virtual_ip": "10.0.31.38/16"}, "status": {"created": "2023-11-30T22:58:56.312786Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.38/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2023-11-30T22:54:41.668043Z", "last_refresh": "2023-11-30T22:58:52.669241Z", "running": 2, "size": 2}}, {"events": ["2023-11-30T22:55:50.759225Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi038:172.21.15.38=smithi038", "smithi167:172.21.15.167=smithi167"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2023-11-30T22:55:50.756456Z", "last_refresh": "2023-11-30T22:58:52.669318Z", "running": 2, "size": 2}}, {"events": ["2023-11-30T22:58:56.311581Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2023-11-30T22:58:56.308071Z", "ports": [12049], "running": 0, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2023-11-30T22:54:46.136630Z", "last_refresh": "2023-11-30T22:58:52.669387Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2023-11-30T22:56:33.258058Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2023-11-30T22:56:33.253117Z", "last_refresh": "2023-11-30T22:58:52.669454Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2023-11-30T22:54:43.949497Z", "last_refresh": "2023-11-30T22:58:55.867217Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2023-11-30T22:58:52.105721Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2023-11-30T22:58:59.793467Z", "ports": [8800], "running": 0, "size": 2}}] 2023-11-30T23:04:27.566 INFO:tasks.cephadm:nfs.foo has 0/1 2023-11-30T23:04:27.762 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:04:27 smithi167 conmon[87022]: cluster 2023-11-30T23:04:26.322614+0000 mgr.smithi038.ldalxq (mgr.14182) 428 : cluster [DBG] pgmap v307: 225 pgs: 225 active+clean; 7.2 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2023-11-30T23:04:27.773 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:04:27 smithi038 conmon[81956]: cluster 2023-11-30T23:04:26.322614+0000 mgr.smithi038.ldalxq (mgr.14182) 428 : cluster [DBG] pgmap v307: 225 pgs: 225 active+clean; 7.2 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2023-11-30T23:04:28.567 DEBUG:teuthology.orchestra.run.smithi038:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:0dc074ce0b0b3b4f393f56dd32ef36884ebf45a9 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 3faf8b00-8fd3-11ee-95a2-87774f69a715 -- ceph orch ls -f json 2023-11-30T23:04:28.762 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:04:28 smithi167 conmon[87022]: audit 2023-11-30T23:04:27.057090+0000 mgr.smithi038.ldalxq (mgr.14182) 429 : audit [DBG] from='client.14964 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-11-30T23:04:28.774 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:04:28 smithi038 conmon[81956]: audit 2023-11-30T23:04:27.057090+0000 mgr.smithi038.ldalxq ( 2023-11-30T23:04:28.774 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:04:28 smithi038 conmon[81956]: mgr.14182) 429 : audit [DBG] from='client.14964 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-11-30T23:04:29.732 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:04:29 smithi038 conmon[81956]: cluster 2023-11-30T23:04:28.323489+0000 mgr.smithi038.ldalxq (mgr 2023-11-30T23:04:29.732 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:04:29 smithi038 conmon[81956]: .14182) 430 : cluster [DBG] pgmap v308: 225 pgs: 225 active+clean; 7.2 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2023-11-30T23:04:29.762 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:04:29 smithi167 conmon[87022]: cluster 2023-11-30T23:04:28.323489+0000 mgr.smithi038.ldalxq (mgr.14182) 430 : cluster [DBG] pgmap v308: 225 pgs: 225 active+clean; 7.2 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2023-11-30T23:04:30.375 INFO:teuthology.orchestra.run.smithi038.stdout: 2023-11-30T23:04:30.375 INFO:teuthology.orchestra.run.smithi038.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2023-11-30T22:54:47.122758Z", "last_refresh": "2023-11-30T22:58:55.866934Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2023-11-30T22:54:42.674972Z", "last_refresh": "2023-11-30T22:58:52.669086Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2023-11-30T22:54:45.114633Z", "last_refresh": "2023-11-30T22:58:55.867071Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2023-11-30T22:58:56.317378Z service:ingress.nfs.foo [INFO] \"service was created\"", "2023-11-30T23:02:07.111634Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi167.buykdj on smithi167: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi167-buykdj\n/bin/podman: stderr Error: error inspecting object: no such container ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi167-buykdj\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi167.buykdj\n/bin/podman: stderr Error: error inspecting object: no such container ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi167.buykdj\nDeploy daemon haproxy.nfs.foo.smithi167.buykdj ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi167 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2023-11-30T22:59:44Z\" level=warning msg=\"failed, retrying in 1s ... (1/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-11-30T23:00:21Z\" level=warning msg=\"failed, retrying in 1s ... (2/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-11-30T23:00:59Z\" level=warning msg=\"failed, retrying in 1s ... (3/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: Error determining manifest MIME type for docker://haproxy:2.3: Error reading manifest sha256:058f434330f13dbbc46761f3e9a76af2408e9ec1898c9ac5a8baf00b42e756a9 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi167 -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": 9049, "virtual_ip": "10.0.31.38/16"}, "status": {"created": "2023-11-30T22:58:56.312786Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.38/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2023-11-30T22:54:41.668043Z", "last_refresh": "2023-11-30T22:58:52.669241Z", "running": 2, "size": 2}}, {"events": ["2023-11-30T22:55:50.759225Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi038:172.21.15.38=smithi038", "smithi167:172.21.15.167=smithi167"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2023-11-30T22:55:50.756456Z", "last_refresh": "2023-11-30T22:58:52.669318Z", "running": 2, "size": 2}}, {"events": ["2023-11-30T22:58:56.311581Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2023-11-30T22:58:56.308071Z", "ports": [12049], "running": 0, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2023-11-30T22:54:46.136630Z", "last_refresh": "2023-11-30T22:58:52.669387Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2023-11-30T22:56:33.258058Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2023-11-30T22:56:33.253117Z", "last_refresh": "2023-11-30T22:58:52.669454Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2023-11-30T22:54:43.949497Z", "last_refresh": "2023-11-30T22:58:55.867217Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2023-11-30T22:58:52.105721Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2023-11-30T22:58:59.793467Z", "ports": [8800], "running": 0, "size": 2}}] 2023-11-30T23:04:30.818 INFO:tasks.cephadm:nfs.foo has 0/1 2023-11-30T23:04:31.762 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:04:31 smithi167 conmon[87022]: cluster 2023-11-30T23:04:30.324217+0000 mgr.smithi038.ldalxq (mgr.14182) 431 : cluster [DBG] pgmap v309: 225 pgs: 225 active+clean; 7.2 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2023-11-30T23:04:31.762 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:04:31 smithi167 conmon[87022]: audit 2023-11-30T23:04:30.371694+0000 mgr.smithi038.ldalxq (mgr.14182) 432 : audit [DBG] from='client.14968 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-11-30T23:04:31.774 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:04:31 smithi038 conmon[81956]: cluster 2023-11-30T23:04:30.324217+0000 mgr.smithi038.ldalxq (mgr.14182) 431 : cluster [DBG] pgmap v309: 225 pgs: 225 active+clean; 7.2 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2023-11-30T23:04:31.774 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:04:31 smithi038 conmon[81956]: audit 2023-11-30T23:04:30.371694+0000 mgr.smithi038.ldalxq (mgr.14182) 432 : audit [DBG] from='client.14968 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-11-30T23:04:31.821 DEBUG:teuthology.orchestra.run.smithi038:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:0dc074ce0b0b3b4f393f56dd32ef36884ebf45a9 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 3faf8b00-8fd3-11ee-95a2-87774f69a715 -- ceph orch ls -f json 2023-11-30T23:04:33.012 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:04:32 smithi167 conmon[87022]: cluster 2023-11-30T23:04:32.324762+0000 mgr.smithi038.ldalxq (mgr. 2023-11-30T23:04:33.012 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:04:32 smithi167 conmon[87022]: 14182) 433 : cluster [DBG] pgmap v310: 225 pgs: 225 active+clean; 7.2 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2023-11-30T23:04:33.026 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:04:32 smithi038 conmon[81956]: cluster 2023-11-30T23:04:32.324762+0000 2023-11-30T23:04:33.026 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:04:32 smithi038 conmon[81956]: mgr.smithi038.ldalxq (mgr.14182) 433 : cluster [DBG] pgmap v310: 225 pgs: 225 active+clean; 7.2 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2023-11-30T23:04:33.564 INFO:teuthology.orchestra.run.smithi038.stdout: 2023-11-30T23:04:33.564 INFO:teuthology.orchestra.run.smithi038.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2023-11-30T22:54:47.122758Z", "last_refresh": "2023-11-30T22:58:55.866934Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2023-11-30T22:54:42.674972Z", "last_refresh": "2023-11-30T22:58:52.669086Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2023-11-30T22:54:45.114633Z", "last_refresh": "2023-11-30T22:58:55.867071Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2023-11-30T22:58:56.317378Z service:ingress.nfs.foo [INFO] \"service was created\"", "2023-11-30T23:02:07.111634Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi167.buykdj on smithi167: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi167-buykdj\n/bin/podman: stderr Error: error inspecting object: no such container ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi167-buykdj\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi167.buykdj\n/bin/podman: stderr Error: error inspecting object: no such container ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi167.buykdj\nDeploy daemon haproxy.nfs.foo.smithi167.buykdj ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi167 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2023-11-30T22:59:44Z\" level=warning msg=\"failed, retrying in 1s ... (1/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-11-30T23:00:21Z\" level=warning msg=\"failed, retrying in 1s ... (2/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-11-30T23:00:59Z\" level=warning msg=\"failed, retrying in 1s ... (3/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: Error determining manifest MIME type for docker://haproxy:2.3: Error reading manifest sha256:058f434330f13dbbc46761f3e9a76af2408e9ec1898c9ac5a8baf00b42e756a9 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi167 -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": 9049, "virtual_ip": "10.0.31.38/16"}, "status": {"created": "2023-11-30T22:58:56.312786Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.38/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2023-11-30T22:54:41.668043Z", "last_refresh": "2023-11-30T22:58:52.669241Z", "running": 2, "size": 2}}, {"events": ["2023-11-30T22:55:50.759225Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi038:172.21.15.38=smithi038", "smithi167:172.21.15.167=smithi167"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2023-11-30T22:55:50.756456Z", "last_refresh": "2023-11-30T22:58:52.669318Z", "running": 2, "size": 2}}, {"events": ["2023-11-30T22:58:56.311581Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2023-11-30T22:58:56.308071Z", "ports": [12049], "running": 0, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2023-11-30T22:54:46.136630Z", "last_refresh": "2023-11-30T22:58:52.669387Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2023-11-30T22:56:33.258058Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2023-11-30T22:56:33.253117Z", "last_refresh": "2023-11-30T22:58:52.669454Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2023-11-30T22:54:43.949497Z", "last_refresh": "2023-11-30T22:58:55.867217Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2023-11-30T22:58:52.105721Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2023-11-30T22:58:59.793467Z", "ports": [8800], "running": 0, "size": 2}}] 2023-11-30T23:04:33.963 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:04:33 smithi038 conmon[81956]: audit 2023-11-30T23:04:33.560825+0000 2023-11-30T23:04:33.963 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:04:33 smithi038 conmon[81956]: mgr.smithi038.ldalxq (mgr.14182) 434 : audit [DBG] from='client.14972 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-11-30T23:04:33.973 INFO:tasks.cephadm:nfs.foo has 0/1 2023-11-30T23:04:34.012 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:04:33 smithi167 conmon[87022]: audit 2023-11-30T23:04:33.560825+0000 mgr.smithi038.ldalxq (mgr.14182) 434 : audit [DBG] from='client.14972 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-11-30T23:04:34.974 DEBUG:teuthology.orchestra.run.smithi038:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:0dc074ce0b0b3b4f393f56dd32ef36884ebf45a9 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 3faf8b00-8fd3-11ee-95a2-87774f69a715 -- ceph orch ls -f json 2023-11-30T23:04:35.005 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:04:34 smithi038 conmon[81956]: cluster 2023-11-30T23:04:34.325484+0000 mgr.smithi038.ldalxq ( 2023-11-30T23:04:35.005 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:04:34 smithi038 conmon[81956]: mgr.14182) 435 : cluster [DBG] pgmap v311: 225 pgs: 225 active+clean; 7.2 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2023-11-30T23:04:35.012 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:04:34 smithi167 conmon[87022]: cluster 2023-11-30T23:04:34.325484+0000 mgr.smithi038.ldalxq (mgr.14182) 435 : cluster [DBG] pgmap v311: 225 pgs: 225 active+clean; 7.2 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2023-11-30T23:04:36.775 INFO:teuthology.orchestra.run.smithi038.stdout: 2023-11-30T23:04:36.776 INFO:teuthology.orchestra.run.smithi038.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2023-11-30T22:54:47.122758Z", "last_refresh": "2023-11-30T22:58:55.866934Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2023-11-30T22:54:42.674972Z", "last_refresh": "2023-11-30T22:58:52.669086Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2023-11-30T22:54:45.114633Z", "last_refresh": "2023-11-30T22:58:55.867071Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2023-11-30T22:58:56.317378Z service:ingress.nfs.foo [INFO] \"service was created\"", "2023-11-30T23:02:07.111634Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi167.buykdj on smithi167: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi167-buykdj\n/bin/podman: stderr Error: error inspecting object: no such container ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi167-buykdj\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi167.buykdj\n/bin/podman: stderr Error: error inspecting object: no such container ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi167.buykdj\nDeploy daemon haproxy.nfs.foo.smithi167.buykdj ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi167 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2023-11-30T22:59:44Z\" level=warning msg=\"failed, retrying in 1s ... (1/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-11-30T23:00:21Z\" level=warning msg=\"failed, retrying in 1s ... (2/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-11-30T23:00:59Z\" level=warning msg=\"failed, retrying in 1s ... (3/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: Error determining manifest MIME type for docker://haproxy:2.3: Error reading manifest sha256:058f434330f13dbbc46761f3e9a76af2408e9ec1898c9ac5a8baf00b42e756a9 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi167 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-11-30T23:04:36.497929Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi038.fwcakz on smithi038: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi038-fwcakz\n/bin/podman: stderr Error: error inspecting object: no such container ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi038-fwcakz\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi038.fwcakz\n/bin/podman: stderr Error: error inspecting object: no such container ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi038.fwcakz\nDeploy daemon haproxy.nfs.foo.smithi038.fwcakz ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi038 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2023-11-30T23:02:44Z\" level=warning msg=\"failed, retrying in 1s ... (1/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-11-30T23:03:21Z\" level=warning msg=\"failed, retrying in 1s ... (2/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-11-30T23:03:58Z\" level=warning msg=\"failed, retrying in 1s ... (3/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi038 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-11-30T23:04:36.502614Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi038.flofui on smithi038: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2023-11-30T23:04:36.503792Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi167.dxieha on smithi167: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.38/16"}, "status": {"created": "2023-11-30T22:58:56.312786Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.38/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2023-11-30T22:54:41.668043Z", "last_refresh": "2023-11-30T22:58:52.669241Z", "running": 2, "size": 2}}, {"events": ["2023-11-30T22:55:50.759225Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi038:172.21.15.38=smithi038", "smithi167:172.21.15.167=smithi167"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2023-11-30T22:55:50.756456Z", "last_refresh": "2023-11-30T22:58:52.669318Z", "running": 2, "size": 2}}, {"events": ["2023-11-30T22:58:56.311581Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2023-11-30T22:58:56.308071Z", "ports": [12049], "running": 0, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2023-11-30T22:54:46.136630Z", "last_refresh": "2023-11-30T22:58:52.669387Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2023-11-30T22:56:33.258058Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2023-11-30T22:56:33.253117Z", "last_refresh": "2023-11-30T22:58:52.669454Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2023-11-30T22:54:43.949497Z", "last_refresh": "2023-11-30T22:58:55.867217Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2023-11-30T22:58:52.105721Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2023-11-30T22:58:59.793467Z", "ports": [8800], "running": 0, "size": 2}}] 2023-11-30T23:04:37.233 INFO:tasks.cephadm:nfs.foo has 0/1 2023-11-30T23:04:37.524 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:04:37 smithi038 conmon[81956]: cluster 2023-11-30T23:04:36.326247+0000 mgr.smithi038.ldalxq (mgr 2023-11-30T23:04:37.524 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:04:37 smithi038 conmon[81956]: .14182) 436 : cluster [DBG] pgmap v312: 225 pgs: 225 active+clean; 7.2 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2023-11-30T23:04:37.524 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:04:37 smithi038 conmon[81956]: cephadm 2023-11-30T23:04:36.496954+0000 mgr.smithi038.ldalxq (mgr.14182) 437 : cephadm [ERR] cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi038-fwcakz 2023-11-30T23:04:37.525 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:04:37 smithi038 conmon[81956]: /bin/podman: stderr Error: error inspecting object: no such container ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi038-fwcakz 2023-11-30T23:04:37.525 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:04:37 smithi038 conmon[81956]: Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi038.fwcakz 2023-11-30T23:04:37.525 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:04:37 smithi038 conmon[81956]: /bin/podman: stderr Error: error inspecting object: no such container ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi038.fwcakz 2023-11-30T23:04:37.525 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:04:37 smithi038 conmon[81956]: Deploy daemon haproxy.nfs.foo.smithi038.fwcakz ... 2023-11-30T23:04:37.525 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:04:37 smithi038 conmon[81956]: Non-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi038 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2023-11-30T23:04:37.525 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:04:37 smithi038 conmon[81956]: stat: stderr Trying to pull docker.io/library/haproxy:2.3... 2023-11-30T23:04:37.525 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:04:37 smithi038 conmon[81956]: stat: stderr time="2023-11-30T23:02:44Z" level=warning msg="failed, retrying in 1s ... (1/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit" 2023-11-30T23:04:37.525 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:04:37 smithi038 conmon[81956]: stat: stderr time="2023-11-30T23:03:21Z" level=warning msg="failed, retrying in 1s ... (2/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit" 2023-11-30T23:04:37.525 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:04:37 smithi038 conmon[81956]: stat: stderr time="2023-11-30T23:03:58Z" level=warning msg="failed, retrying in 1s ... (3/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit" 2023-11-30T23:04:37.525 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:04:37 smithi038 conmon[81956]: stat: stderr Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get "https://docker-mirror.front.sepia.ceph.com:5000/v2/": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit 2023-11-30T23:04:37.525 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:04:37 smithi038 conmon[81956]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi038 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2023-11-30T23:04:37.525 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:04:37 smithi038 conmon[81956]: Traceback (most recent call last): 2023-11-30T23:04:37.526 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:04:37 smithi038 conmon[81956]: File "/usr/share/ceph/mgr/cephadm/serve.py", line 1538, in _remote_connection 2023-11-30T23:04:37.526 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:04:37 smithi038 conmon[81956]: yield (conn, connr) 2023-11-30T23:04:37.526 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:04:37 smithi038 conmon[81956]: File "/usr/share/ceph/mgr/cephadm/serve.py", line 1426, in _run_cephadm 2023-11-30T23:04:37.526 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:04:37 smithi038 conmon[81956]: code, '\n'.join(err))) 2023-11-30T23:04:37.526 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:04:37 smithi038 conmon[81956]: orchestrator._interface.OrchestratorError: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi038-fwcakz 2023-11-30T23:04:37.526 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:04:37 smithi038 conmon[81956]: /bin/podman: stderr Error: error inspecting object: no such container ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi038-fwcakz 2023-11-30T23:04:37.526 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:04:37 smithi038 conmon[81956]: Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi038.fwcakz 2023-11-30T23:04:37.526 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:04:37 smithi038 conmon[81956]: /bin/podman: stderr Error: error inspecting object: no such container ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi038.fwcakz 2023-11-30T23:04:37.526 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:04:37 smithi038 conmon[81956]: Deploy daemon haproxy.nfs.foo.smithi038.fwcakz ... 2023-11-30T23:04:37.526 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:04:37 smithi038 conmon[81956]: Non-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi038 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2023-11-30T23:04:37.526 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:04:37 smithi038 conmon[81956]: stat: stderr Trying to pull docker.io/library/haproxy:2.3... 2023-11-30T23:04:37.526 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:04:37 smithi038 conmon[81956]: stat: stderr time="2023-11-30T23:02:44Z" level=warning msg="failed, retrying in 1s ... (1/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit" 2023-11-30T23:04:37.527 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:04:37 smithi038 conmon[81956]: stat: stderr time="2023-11-30T23:03:21Z" level=warning msg="failed, retrying in 1s ... (2/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit" 2023-11-30T23:04:37.527 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:04:37 smithi038 conmon[81956]: stat: stderr time="2023-11-30T23:03:58Z" level=warning msg="failed, retrying in 1s ... (3/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit" 2023-11-30T23:04:37.527 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:04:37 smithi038 conmon[81956]: stat: stderr Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get "https://docker-mirror.front.sepia.ceph.com:5000/v2/": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit 2023-11-30T23:04:37.527 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:04:37 smithi038 conmon[81956]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --n 2023-11-30T23:04:37.527 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:04:37 smithi038 conmon[81956]: et=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi038 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2023-11-30T23:04:37.527 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:04:37 smithi038 conmon[81956]: cephadm 2023-11-30T23:04:36.497116+0000 mgr.smithi038.ldalxq (mgr.14182) 438 : cephadm [INF] Removing key for client.ingress.nfs.foo.smithi038.fwcakz 2023-11-30T23:04:37.527 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:04:37 smithi038 conmon[81956]: audit 2023-11-30T23:04:36.497415+0000 mon.smithi038 (mon.0) 669 : audit [INF] from='mgr.14182 172.21.15.38:0/2999689707' entity='mgr.smithi038.ldalxq' cmd=[{"prefix": "auth rm", "entity": "client.ingress.nfs.foo.smithi038.fwcakz"}]: dispatch 2023-11-30T23:04:37.527 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:04:37 smithi038 conmon[81956]: cephadm 2023-11-30T23:04:36.498038+0000 mgr.smithi038.ldalxq (mgr.14182) 439 : cephadm [ERR] Failed while placing haproxy.nfs.foo.smithi038.fwcakz on smithi038: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi038-fwcakz 2023-11-30T23:04:37.527 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:04:37 smithi038 conmon[81956]: /bin/podman: stderr Error: error inspecting object: no such container ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi038-fwcakz 2023-11-30T23:04:37.527 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:04:37 smithi038 conmon[81956]: Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi038.fwcakz 2023-11-30T23:04:37.527 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:04:37 smithi038 conmon[81956]: /bin/podman: stderr Error: error inspecting object: no such container ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi038.fwcakz 2023-11-30T23:04:37.528 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:04:37 smithi038 conmon[81956]: Deploy daemon haproxy.nfs.foo.smithi038.fwcakz ... 2023-11-30T23:04:37.528 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:04:37 smithi038 conmon[81956]: Non-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi038 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2023-11-30T23:04:37.528 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:04:37 smithi038 conmon[81956]: stat: stderr Trying to pull docker.io/library/haproxy:2.3... 2023-11-30T23:04:37.528 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:04:37 smithi038 conmon[81956]: stat: stderr time="2023-11-30T23:02:44Z" level=warning msg="failed, retrying in 1s ... (1/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit" 2023-11-30T23:04:37.528 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:04:37 smithi038 conmon[81956]: stat: stderr time="2023-11-30T23:03:21Z" level=warning msg="failed, retrying in 1s ... (2/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit" 2023-11-30T23:04:37.528 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:04:37 smithi038 conmon[81956]: stat: stderr time="2023-11-30T23:03:58Z" level=warning msg="failed, retrying in 1s ... (3/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit" 2023-11-30T23:04:37.528 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:04:37 smithi038 conmon[81956]: stat: stderr Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get "https://docker-mirror.front.sepia.ceph.com:5000/v2/": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit 2023-11-30T23:04:37.528 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:04:37 smithi038 conmon[81956]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi038 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2023-11-30T23:04:37.529 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:04:37 smithi038 conmon[81956]: audit 2023-11-30T23:04:36.502375+0000 mon.smithi038 (mon.0) 670 : audit [INF] from='mgr.14182 172.21.15.38:0/2999689707' entity='mgr.smithi038.ldalxq' 2023-11-30T23:04:37.529 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:04:37 smithi038 conmon[81956]: cephadm 2023-11-30T23:04:36.502747+0000 mgr.smithi038.ldalxq (mgr.14182) 440 : cephadm [ERR] Failed while placing keepalived.nfs.foo.smithi038.flofui on smithi038: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo 2023-11-30T23:04:37.529 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:04:37 smithi038 conmon[81956]: cephadm 2023-11-30T23:04:36.503865+0000 mgr.smithi038.ldalxq (mgr.14182) 441 : cephadm [ERR] Failed while placing keepalived.nfs.foo.smithi167.dxieha on smithi167: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo 2023-11-30T23:04:37.529 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:04:37 smithi038 conmon[81956]: audit 2023-11-30T23:04:36.504655+0000 mon.smithi038 (mon.0) 671 : audit [DBG] from='mgr.14182 172.21.15.38:0/2999689707' entity='mgr.smithi038.ldalxq' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2023-11-30T23:04:37.529 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:04:37 smithi038 conmon[81956]: cluster 2023-11-30T23:04:36.504727+0000 mgr.smithi038.ldalxq (mgr.14182) 442 : cluster [DBG] pgmap v313: 225 pgs: 225 active+clean; 7.2 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 100 B/s rd, 0 op/s 2023-11-30T23:04:37.529 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:04:37 smithi038 conmon[81956]: audit 2023-11-30T23:04:36.743822+0000 mon.smithi038 (mon.0) 672 : audit [INF] from='mgr.14182 172.21.15.38:0/2999689707' entity='mgr.smithi038.ldalxq' 2023-11-30T23:04:37.762 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:04:37 smithi167 conmon[87022]: cluster 2023-11-30T23:04:36.326247+0000 mgr.smithi038.ldalxq (mgr.14182) 436 : cluster [DBG] pgmap v312: 225 pgs: 225 active+clean; 7.2 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2023-11-30T23:04:37.763 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:04:37 smithi167 conmon[87022]: cephadm 2023-11-30T23:04:36.496954+0000 mgr.smithi038.ldalxq (mgr.14182) 437 : cephadm [ERR] cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi038-fwcakz 2023-11-30T23:04:37.763 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:04:37 smithi167 conmon[87022]: /bin/podman: stderr Error: error inspecting object: no such container ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi038-fwcakz 2023-11-30T23:04:37.763 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:04:37 smithi167 conmon[87022]: Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi038.fwcakz 2023-11-30T23:04:37.763 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:04:37 smithi167 conmon[87022]: /bin/podman: stderr Error: error inspecting object: no such container ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi038.fwcakz 2023-11-30T23:04:37.763 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:04:37 smithi167 conmon[87022]: Deploy daemon haproxy.nfs.foo.smithi038.fwcakz ... 2023-11-30T23:04:37.763 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:04:37 smithi167 conmon[87022]: Non-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi038 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2023-11-30T23:04:37.763 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:04:37 smithi167 conmon[87022]: stat: stderr Trying to pull docker.io/library/haproxy:2.3... 2023-11-30T23:04:37.763 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:04:37 smithi167 conmon[87022]: stat: stderr time="2023-11-30T23:02:44Z" level=warning msg="failed, retrying in 1s ... (1/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit" 2023-11-30T23:04:37.763 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:04:37 smithi167 conmon[87022]: stat: stderr time="2023-11-30T23:03:21Z" level=warning msg="failed, retrying in 1s ... (2/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit" 2023-11-30T23:04:37.763 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:04:37 smithi167 conmon[87022]: stat: stderr time="2023-11-30T23:03:58Z" level=warning msg="failed, retrying in 1s ... (3/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit" 2023-11-30T23:04:37.763 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:04:37 smithi167 conmon[87022]: stat: stderr Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get "https://docker-mirror.front.sepia.ceph.com:5000/v2/": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit 2023-11-30T23:04:37.764 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:04:37 smithi167 conmon[87022]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi038 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2023-11-30T23:04:37.764 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:04:37 smithi167 conmon[87022]: Traceback (most recent call last): 2023-11-30T23:04:37.764 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:04:37 smithi167 conmon[87022]: File "/usr/share/ceph/mgr/cephadm/serve.py", line 1538, in _remote_connection 2023-11-30T23:04:37.764 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:04:37 smithi167 conmon[87022]: yield (conn, connr) 2023-11-30T23:04:37.764 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:04:37 smithi167 conmon[87022]: File "/usr/share/ceph/mgr/cephadm/serve.py", line 1426, in _run_cephadm 2023-11-30T23:04:37.764 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:04:37 smithi167 conmon[87022]: code, '\n'.join(err))) 2023-11-30T23:04:37.764 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:04:37 smithi167 conmon[87022]: orchestrator._interface.OrchestratorError: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi038-fwcakz 2023-11-30T23:04:37.764 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:04:37 smithi167 conmon[87022]: /bin/podman: stderr Error: error inspecting object: no such container ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi038-fwcakz 2023-11-30T23:04:37.764 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:04:37 smithi167 conmon[87022]: Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi038.fwcakz 2023-11-30T23:04:37.764 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:04:37 smithi167 conmon[87022]: /bin/podman: stderr Error: error inspecting object: no such container ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi038.fwcakz 2023-11-30T23:04:37.764 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:04:37 smithi167 conmon[87022]: Deploy daemon haproxy.nfs.foo.smithi038.fwcakz ... 2023-11-30T23:04:37.764 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:04:37 smithi167 conmon[87022]: Non-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi038 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2023-11-30T23:04:37.764 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:04:37 smithi167 conmon[87022]: stat: stderr Trying to pull docker.io/library/haproxy:2.3... 2023-11-30T23:04:37.764 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:04:37 smithi167 conmon[87022]: stat: stderr time="2023-11-30T23:02:44Z" level=warning msg="failed, retrying in 1s ... (1/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit" 2023-11-30T23:04:37.765 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:04:37 smithi167 conmon[87022]: stat: stderr time="2023-11-30T23:03:21Z" level=warning msg="failed, retrying in 1s ... (2/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit" 2023-11-30T23:04:37.765 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:04:37 smithi167 conmon[87022]: stat: stderr time="2023-11-30T23:03:58Z" level=warning msg="failed, retrying in 1s ... (3/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit" 2023-11-30T23:04:37.765 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:04:37 smithi167 conmon[87022]: stat: stderr Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get "https://docker-mirror.front.sepia.ceph.com:5000/v2/": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit 2023-11-30T23:04:37.765 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:04:37 smithi167 conmon[87022]: ERROR: Failed to extract uid/gid for path /var/lib: Failed c 2023-11-30T23:04:37.765 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:04:37 smithi167 conmon[87022]: ommand: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi038 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2023-11-30T23:04:37.765 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:04:37 smithi167 conmon[87022]: cephadm 2023-11-30T23:04:36.497116+0000 mgr.smithi038.ldalxq (mgr.14182) 438 : cephadm [INF] Removing key for client.ingress.nfs.foo.smithi038.fwcakz 2023-11-30T23:04:37.765 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:04:37 smithi167 conmon[87022]: audit 2023-11-30T23:04:36.497415+0000 mon.smithi038 (mon.0) 669 : audit [INF] from='mgr.14182 172.21.15.38:0/2999689707' entity='mgr.smithi038.ldalxq' cmd=[{"prefix": "auth rm", "entity": "client.ingress.nfs.foo.smithi038.fwcakz"}]: dispatch 2023-11-30T23:04:37.765 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:04:37 smithi167 conmon[87022]: cephadm 2023-11-30T23:04:36.498038+0000 mgr.smithi038.ldalxq (mgr.14182) 439 : cephadm [ERR] Failed while placing haproxy.nfs.foo.smithi038.fwcakz on smithi038: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi038-fwcakz 2023-11-30T23:04:37.765 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:04:37 smithi167 conmon[87022]: /bin/podman: stderr Error: error inspecting object: no such container ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi038-fwcakz 2023-11-30T23:04:37.765 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:04:37 smithi167 conmon[87022]: Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi038.fwcakz 2023-11-30T23:04:37.765 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:04:37 smithi167 conmon[87022]: /bin/podman: stderr Error: error inspecting object: no such container ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi038.fwcakz 2023-11-30T23:04:37.765 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:04:37 smithi167 conmon[87022]: Deploy daemon haproxy.nfs.foo.smithi038.fwcakz ... 2023-11-30T23:04:37.765 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:04:37 smithi167 conmon[87022]: Non-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi038 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2023-11-30T23:04:37.766 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:04:37 smithi167 conmon[87022]: stat: stderr Trying to pull docker.io/library/haproxy:2.3... 2023-11-30T23:04:37.766 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:04:37 smithi167 conmon[87022]: stat: stderr time="2023-11-30T23:02:44Z" level=warning msg="failed, retrying in 1s ... (1/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit" 2023-11-30T23:04:37.766 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:04:37 smithi167 conmon[87022]: stat: stderr time="2023-11-30T23:03:21Z" level=warning msg="failed, retrying in 1s ... (2/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit" 2023-11-30T23:04:37.766 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:04:37 smithi167 conmon[87022]: stat: stderr time="2023-11-30T23:03:58Z" level=warning msg="failed, retrying in 1s ... (3/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit" 2023-11-30T23:04:37.766 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:04:37 smithi167 conmon[87022]: stat: stderr Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get "https://docker-mirror.front.sepia.ceph.com:5000/v2/": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit 2023-11-30T23:04:37.766 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:04:37 smithi167 conmon[87022]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi038 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2023-11-30T23:04:37.766 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:04:37 smithi167 conmon[87022]: audit 2023-11-30T23:04:36.502375+0000 mon.smithi038 (mon.0) 670 : audit [INF] from='mgr.14182 172.21.15.38:0/2999689707' entity='mgr.smithi038.ldalxq' 2023-11-30T23:04:37.766 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:04:37 smithi167 conmon[87022]: cephadm 2023-11-30T23:04:36.502747+0000 mgr.smithi038.ldalxq (mgr.14182) 440 : cephadm [ERR] Failed while placing keepalived.nfs.foo.smithi038.flofui on smithi038: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo 2023-11-30T23:04:37.766 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:04:37 smithi167 conmon[87022]: cephadm 2023-11-30T23:04:36.503865+0000 mgr.smithi038.ldalxq (mgr.14182) 441 : cephadm [ERR] Failed while placing keepalived.nfs.foo.smithi167.dxieha on smithi167: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo 2023-11-30T23:04:37.766 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:04:37 smithi167 conmon[87022]: audit 2023-11-30T23:04:36.504655+0000 mon.smithi038 (mon.0) 671 : audit [DBG] from='mgr.14182 172.21.15.38:0/2999689707' entity='mgr.smithi038.ldalxq' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2023-11-30T23:04:37.766 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:04:37 smithi167 conmon[87022]: cluster 2023-11-30T23:04:36.504727+0000 mgr.smithi038.ldalxq (mgr.14182) 442 : cluster [DBG] pgmap v313: 225 pgs: 225 active+clean; 7.2 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 100 B/s rd, 0 op/s 2023-11-30T23:04:37.766 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:04:37 smithi167 conmon[87022]: audit 2023-11-30T23:04:36.743822+0000 mon.smithi038 (mon.0) 672 : audit [INF] from='mgr.14182 172.21.15.38:0/2999689707' entity='mgr.smithi038.ldalxq' 2023-11-30T23:04:38.237 DEBUG:teuthology.orchestra.run.smithi038:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:0dc074ce0b0b3b4f393f56dd32ef36884ebf45a9 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 3faf8b00-8fd3-11ee-95a2-87774f69a715 -- ceph orch ls -f json 2023-11-30T23:04:38.524 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:04:38 smithi038 conmon[81956]: audit 2023-11-30T23:04:36.771992+0000 mgr.smithi038.ldalxq (mgr.14182) 443 : audit [DBG] from='client.14976 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-11-30T23:04:38.524 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:04:38 smithi038 conmon[81956]: cluster 2023-11-30T23:04:37.500651+0000 mon.smithi038 (mon.0) 673 : cluster [WRN] Health check failed: Failed to place 4 daemon(s) (CEPHADM_DAEMON_PLACE_FAIL) 2023-11-30T23:04:38.762 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:04:38 smithi167 conmon[87022]: audit 2023-11-30T23:04:36.771992+0000 mgr.smithi038.ldalxq ( 2023-11-30T23:04:38.762 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:04:38 smithi167 conmon[87022]: mgr.14182) 443 : audit [DBG] from='client.14976 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-11-30T23:04:38.762 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:04:38 smithi167 conmon[87022]: cluster 2023-11-30T23:04:37.500651+0000 mon.smithi038 (mon.0) 673 : cluster [WRN] Health check failed: Failed to place 4 daemon(s) (CEPHADM_DAEMON_PLACE_FAIL) 2023-11-30T23:04:39.761 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:04:39 smithi167 conmon[87022]: cluster 2023-11-30T23:04:38.505284+0000 mgr.smithi038.ldalxq (mgr.14182 2023-11-30T23:04:39.762 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:04:39 smithi167 conmon[87022]: ) 444 : cluster [DBG] pgmap v314: 225 pgs: 225 active+clean; 7.2 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 100 B/s rd, 0 op/s 2023-11-30T23:04:39.774 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:04:39 smithi038 conmon[81956]: cluster 2023-11-30T23:04:38.505284+0000 mgr.smithi038.ldalxq (mgr 2023-11-30T23:04:39.774 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:04:39 smithi038 conmon[81956]: .14182) 444 : cluster [DBG] pgmap v314: 225 pgs: 225 active+clean; 7.2 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 100 B/s rd, 0 op/s 2023-11-30T23:04:40.180 INFO:teuthology.orchestra.run.smithi038.stdout: 2023-11-30T23:04:40.181 INFO:teuthology.orchestra.run.smithi038.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2023-11-30T22:54:47.122758Z", "last_refresh": "2023-11-30T22:58:55.866934Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2023-11-30T22:54:42.674972Z", "last_refresh": "2023-11-30T22:58:55.867004Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2023-11-30T22:54:45.114633Z", "last_refresh": "2023-11-30T22:58:55.867071Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2023-11-30T22:58:56.317378Z service:ingress.nfs.foo [INFO] \"service was created\"", "2023-11-30T23:02:07.111634Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi167.buykdj on smithi167: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi167-buykdj\n/bin/podman: stderr Error: error inspecting object: no such container ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi167-buykdj\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi167.buykdj\n/bin/podman: stderr Error: error inspecting object: no such container ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi167.buykdj\nDeploy daemon haproxy.nfs.foo.smithi167.buykdj ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi167 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2023-11-30T22:59:44Z\" level=warning msg=\"failed, retrying in 1s ... (1/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-11-30T23:00:21Z\" level=warning msg=\"failed, retrying in 1s ... (2/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-11-30T23:00:59Z\" level=warning msg=\"failed, retrying in 1s ... (3/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: Error determining manifest MIME type for docker://haproxy:2.3: Error reading manifest sha256:058f434330f13dbbc46761f3e9a76af2408e9ec1898c9ac5a8baf00b42e756a9 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi167 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-11-30T23:04:36.497929Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi038.fwcakz on smithi038: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi038-fwcakz\n/bin/podman: stderr Error: error inspecting object: no such container ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi038-fwcakz\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi038.fwcakz\n/bin/podman: stderr Error: error inspecting object: no such container ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi038.fwcakz\nDeploy daemon haproxy.nfs.foo.smithi038.fwcakz ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi038 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2023-11-30T23:02:44Z\" level=warning msg=\"failed, retrying in 1s ... (1/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-11-30T23:03:21Z\" level=warning msg=\"failed, retrying in 1s ... (2/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-11-30T23:03:58Z\" level=warning msg=\"failed, retrying in 1s ... (3/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi038 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-11-30T23:04:36.502614Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi038.flofui on smithi038: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2023-11-30T23:04:36.503792Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi167.dxieha on smithi167: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.38/16"}, "status": {"created": "2023-11-30T22:58:56.312786Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.38/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2023-11-30T22:54:41.668043Z", "last_refresh": "2023-11-30T22:58:55.866859Z", "running": 2, "size": 2}}, {"events": ["2023-11-30T22:55:50.759225Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi038:172.21.15.38=smithi038", "smithi167:172.21.15.167=smithi167"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2023-11-30T22:55:50.756456Z", "last_refresh": "2023-11-30T22:58:55.866718Z", "running": 2, "size": 2}}, {"events": ["2023-11-30T22:58:56.311581Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2023-11-30T22:58:56.308071Z", "ports": [12049], "running": 0, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2023-11-30T22:54:46.136630Z", "last_refresh": "2023-11-30T22:58:55.867137Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2023-11-30T22:56:33.258058Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2023-11-30T22:56:33.253117Z", "last_refresh": "2023-11-30T22:58:55.867284Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2023-11-30T22:54:43.949497Z", "last_refresh": "2023-11-30T22:58:55.867217Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2023-11-30T22:58:52.105721Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2023-11-30T22:58:59.793467Z", "last_refresh": "2023-11-30T23:04:39.558809Z", "ports": [8800], "running": 1, "size": 2}}] 2023-11-30T23:04:40.845 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:04:40 smithi038 conmon[81956]: audit 2023-11-30T23:04:39.564282+0000 mon.smithi038 ( 2023-11-30T23:04:40.845 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:04:40 smithi038 conmon[81956]: mon.0) 674 : audit [INF] from='mgr.14182 172.21.15.38:0/2999689707' entity='mgr.smithi038.ldalxq' 2023-11-30T23:04:40.847 INFO:tasks.cephadm:nfs.foo has 0/1 2023-11-30T23:04:41.013 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:04:40 smithi167 conmon[87022]: audit 2023-11-30T23:04:39.564282+0000 mon.smithi038 (mon.0) 674 : audit [INF] from='mgr.14182 172.21.15.38:0/2999689707' entity='mgr.smithi038.ldalxq' 2023-11-30T23:04:41.014 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:04:40 smithi167 conmon[87022]: 2023-11-30T23:04:41.848 DEBUG:teuthology.orchestra.run.smithi038:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:0dc074ce0b0b3b4f393f56dd32ef36884ebf45a9 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 3faf8b00-8fd3-11ee-95a2-87774f69a715 -- ceph orch ls -f json 2023-11-30T23:04:41.875 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:04:41 smithi038 conmon[81956]: audit 2023-11-30T23:04:40.176515+0000 mgr.smithi038.ldalxq (mgr.14182) 445 : audit [DBG] from='client.14980 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-11-30T23:04:41.875 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:04:41 smithi038 conmon[81956]: cluster 2023-11-30T23:04:40.506062+0000 mgr.smithi038.ldalxq (mgr.14182) 446 : cluster [DBG] pgmap v315: 225 pgs: 225 active+clean; 7.2 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 100 B/s rd, 0 op/s 2023-11-30T23:04:42.012 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:04:41 smithi167 conmon[87022]: audit 2023-11-30T23:04:40.176515+0000 mgr.smithi038.ldalxq (mgr.14182) 445 : audit [DBG] from='client.14980 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-11-30T23:04:42.012 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:04:41 smithi167 conmon[87022]: cluster 2023-11-30T23:04:40.506062+0000 mgr.smithi038.ldalxq (mgr.14182) 446 : cluster [DBG] pgmap v315: 225 pgs: 225 active+clean; 7.2 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 100 B/s rd, 0 op/s 2023-11-30T23:04:43.749 INFO:teuthology.orchestra.run.smithi038.stdout: 2023-11-30T23:04:43.749 INFO:teuthology.orchestra.run.smithi038.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2023-11-30T22:54:47.122758Z", "last_refresh": "2023-11-30T23:04:43.743252Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2023-11-30T22:54:42.674972Z", "last_refresh": "2023-11-30T23:04:39.558186Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2023-11-30T22:54:45.114633Z", "last_refresh": "2023-11-30T23:04:43.743389Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2023-11-30T22:58:56.317378Z service:ingress.nfs.foo [INFO] \"service was created\"", "2023-11-30T23:02:07.111634Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi167.buykdj on smithi167: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi167-buykdj\n/bin/podman: stderr Error: error inspecting object: no such container ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi167-buykdj\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi167.buykdj\n/bin/podman: stderr Error: error inspecting object: no such container ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi167.buykdj\nDeploy daemon haproxy.nfs.foo.smithi167.buykdj ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi167 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2023-11-30T22:59:44Z\" level=warning msg=\"failed, retrying in 1s ... (1/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-11-30T23:00:21Z\" level=warning msg=\"failed, retrying in 1s ... (2/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-11-30T23:00:59Z\" level=warning msg=\"failed, retrying in 1s ... (3/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: Error determining manifest MIME type for docker://haproxy:2.3: Error reading manifest sha256:058f434330f13dbbc46761f3e9a76af2408e9ec1898c9ac5a8baf00b42e756a9 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi167 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-11-30T23:04:36.497929Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi038.fwcakz on smithi038: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi038-fwcakz\n/bin/podman: stderr Error: error inspecting object: no such container ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi038-fwcakz\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi038.fwcakz\n/bin/podman: stderr Error: error inspecting object: no such container ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi038.fwcakz\nDeploy daemon haproxy.nfs.foo.smithi038.fwcakz ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi038 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2023-11-30T23:02:44Z\" level=warning msg=\"failed, retrying in 1s ... (1/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-11-30T23:03:21Z\" level=warning msg=\"failed, retrying in 1s ... (2/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-11-30T23:03:58Z\" level=warning msg=\"failed, retrying in 1s ... (3/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi038 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-11-30T23:04:36.502614Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi038.flofui on smithi038: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2023-11-30T23:04:36.503792Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi167.dxieha on smithi167: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.38/16"}, "status": {"created": "2023-11-30T22:58:56.312786Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.38/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2023-11-30T22:54:41.668043Z", "last_refresh": "2023-11-30T23:04:39.558331Z", "running": 2, "size": 2}}, {"events": ["2023-11-30T22:55:50.759225Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi038:172.21.15.38=smithi038", "smithi167:172.21.15.167=smithi167"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2023-11-30T22:55:50.756456Z", "last_refresh": "2023-11-30T23:04:39.558407Z", "running": 2, "size": 2}}, {"events": ["2023-11-30T22:58:56.311581Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2023-11-30T22:58:56.308071Z", "last_refresh": "2023-11-30T23:04:43.743907Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2023-11-30T22:54:46.136630Z", "last_refresh": "2023-11-30T23:04:39.558478Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2023-11-30T22:56:33.258058Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2023-11-30T22:56:33.253117Z", "last_refresh": "2023-11-30T23:04:39.558544Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2023-11-30T22:54:43.949497Z", "last_refresh": "2023-11-30T23:04:43.743520Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2023-11-30T22:58:52.105721Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2023-11-30T22:58:59.793467Z", "last_refresh": "2023-11-30T23:04:39.558809Z", "ports": [8800], "running": 2, "size": 2}}] 2023-11-30T23:04:43.762 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:04:43 smithi167 conmon[87022]: audit 2023-11-30T23:04:42.345523+0000 mon.smithi038 (mon.0) 675 : audit [INF] from='mgr.14182 172.21.15.38:0/2999689707' entity='mgr.smithi038.ldalxq' 2023-11-30T23:04:43.762 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:04:43 smithi167 conmon[87022]: 2023-11-30T23:04:43.762 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:04:43 smithi167 conmon[87022]: cluster 2023-11-30T23:04:42.506665+0000 mgr.smithi038.ldalxq (mgr.14182) 447 : cluster [DBG] pgmap v316: 225 pgs: 225 active+clean; 7.2 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 100 B/s rd, 0 op/s 2023-11-30T23:04:43.774 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:04:43 smithi038 conmon[81956]: audit 2023-11-30T23:04:42. 2023-11-30T23:04:43.774 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:04:43 smithi038 conmon[81956]: 345523+0000 mon.smithi038 (mon.0) 675 : audit [INF] from='mgr.14182 172.21.15.38:0/2999689707' entity='mgr.smithi038.ldalxq' 2023-11-30T23:04:43.774 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:04:43 smithi038 conmon[81956]: cluster 2023-11-30T23:04:42.506665+0000 mgr.smithi038.ldalxq (mgr.14182) 447 : cluster [DBG] pgmap v316: 225 pgs: 225 active+clean; 7.2 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 100 B/s rd, 0 op/s 2023-11-30T23:04:44.111 INFO:tasks.cephadm:nfs.foo has 1/1 2023-11-30T23:04:44.111 INFO:teuthology.run_tasks:Running task cephadm.wait_for_service... 2023-11-30T23:04:44.130 INFO:tasks.cephadm:Waiting for ceph service ingress.nfs.foo to start (timeout 300)... 2023-11-30T23:04:44.130 DEBUG:teuthology.orchestra.run.smithi038:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:0dc074ce0b0b3b4f393f56dd32ef36884ebf45a9 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 3faf8b00-8fd3-11ee-95a2-87774f69a715 -- ceph orch ls -f json 2023-11-30T23:04:44.942 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:04:44 smithi038 conmon[81956]: audit 2023-11-30T23:04:43.741976+0000 mgr.smithi038.ldalxq ( 2023-11-30T23:04:44.943 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:04:44 smithi038 conmon[81956]: mgr.14182) 448 : audit [DBG] from='client.14984 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-11-30T23:04:44.943 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:04:44 smithi038 conmon[81956]: audit 2023-11-30T23:04:43.754187+0000 mon.smithi038 (mon.0) 676 : audit [INF] from='mgr.14182 172.21.15.38:0/2999689707' entity='mgr.smithi038.ldalxq' 2023-11-30T23:04:44.943 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:04:44 smithi038 conmon[81956]: audit 2023-11-30T23:04:44.261854+0000 mon.smithi038 (mon.0) 677 : audit [DBG] from='mgr.14182 172.21.15.38:0/2999689707' entity='mgr.smithi038.ldalxq' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2023-11-30T23:04:44.943 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:04:44 smithi038 conmon[81956]: audit 2023-11-30T23:04:44.262592+0000 mon.smithi038 (mon.0) 678 : audit [INF] from='mgr.14182 172.21.15.38:0/2999689707' entity='mgr.smithi038.ldalxq' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2023-11-30T23:04:44.944 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:04:44 smithi038 conmon[81956]: cephadm 2023-11-30T23:04:44.266079+0000 mgr.smithi038.ldalxq (mgr.14182) 449 : cephadm [INF] Checking dashboard <-> RGW credentials 2023-11-30T23:04:44.944 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:04:44 smithi038 conmon[81956]: cluster 2023-11-30T23:04:44.507792+0000 mgr.smithi038.ldalxq (mgr.14182) 450 : cluster [DBG] pgmap v317: 225 pgs: 225 active+clean; 7.2 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 100 B/s rd, 0 op/s 2023-11-30T23:04:44.944 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:04:44 smithi038 conmon[81956]: audit 2023-11-30T23:04:44.540123+0000 mon.smithi038 (mon.0) 679 : audit [INF] from='mgr.14182 172.21.15.38:0/2999689707' entity='mgr.smithi038.ldalxq' 2023-11-30T23:04:44.944 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:04:44 smithi038 conmon[81956]: audit 2023-11-30T23:04:44.551236+0000 mon.smithi038 (mon.0) 680 : audit [INF] from='mgr.14182 172.21.15.38:0/2999689707' entity='mgr.smithi038.ldalxq' 2023-11-30T23:04:44.944 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:04:44 smithi038 conmon[81956]: audit 2023-11-30T23:04:44.556510+0000 mon.smithi038 (mon.0) 681 : audit [INF] from='mgr.14182 172.21.15.38:0/2999689707' entity='mgr.smithi038.ldalxq' 2023-11-30T23:04:44.944 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:04:44 smithi038 conmon[81956]: cluster 2023-11-30T23:04:44.557358+0000 mgr.smithi038.ldalxq (mgr.14182) 451 : cluster [DBG] pgmap v318: 225 pgs: 225 active+clean; 7.2 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 124 B/s rd, 0 op/s 2023-11-30T23:04:44.945 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:04:44 smithi038 conmon[81956]: audit 2023-11-30T23:04:44.562754+0000 mon.smithi038 (mon.0) 682 : audit [DBG] from='mgr.14182 172.21.15.38:0/2999689707' entity='mgr.smithi038.ldalxq' cmd=[{"prefix": "osd tree", "states": ["destroyed"], "format": "json"}]: dispatch 2023-11-30T23:04:44.945 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:04:44 smithi038 conmon[81956]: audit 2023-11-30T 2023-11-30T23:04:44.945 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:04:44 smithi038 conmon[81956]: 23:04:44.576519+0000 mon.smithi038 (mon.0) 683 : audit [INF] from='mgr.14182 172.21.15.38:0/2999689707' entity='mgr.smithi038.ldalxq' 2023-11-30T23:04:44.945 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:04:44 smithi038 conmon[81956]: cephadm 2023-11-30T23:04:44.579041+0000 mgr.smithi038.ldalxq (mgr.14182) 452 : cephadm [INF] Deploying daemon haproxy.nfs.foo.smithi167.igxkgw on smithi167 2023-11-30T23:04:45.262 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:04:44 smithi167 conmon[87022]: audit 2023-11-30T23:04:43.741976+0000 mgr.smithi038.ldalxq ( 2023-11-30T23:04:45.262 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:04:44 smithi167 conmon[87022]: mgr.14182) 448 : audit [DBG] from='client.14984 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-11-30T23:04:45.262 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:04:44 smithi167 conmon[87022]: audit 2023-11-30T23:04:43.754187+0000 mon.smithi038 (mon.0) 676 : audit [INF] from='mgr.14182 172.21.15.38:0/2999689707' entity='mgr.smithi038.ldalxq' 2023-11-30T23:04:45.262 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:04:44 smithi167 conmon[87022]: audit 2023-11-30T23:04:44.261854+0000 mon.smithi038 (mon.0) 677 : audit [DBG] from='mgr.14182 172.21.15.38:0/2999689707' entity='mgr.smithi038.ldalxq' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2023-11-30T23:04:45.262 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:04:44 smithi167 conmon[87022]: audit 2023-11-30T23:04:44.262592+0000 mon.smithi038 (mon.0) 678 : audit [INF] from='mgr.14182 172.21.15.38:0/2999689707' entity='mgr.smithi038.ldalxq' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2023-11-30T23:04:45.262 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:04:44 smithi167 conmon[87022]: cephadm 2023-11-30T23:04:44.266079+0000 mgr.smithi038.ldalxq (mgr.14182) 449 : cephadm [INF] Checking dashboard <-> RGW credentials 2023-11-30T23:04:45.263 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:04:44 smithi167 conmon[87022]: cluster 2023-11-30T23:04:44.507792+0000 mgr.smithi038.ldalxq (mgr.14182) 450 : cluster [DBG] pgmap v317: 225 pgs: 225 active+clean; 7.2 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 100 B/s rd, 0 op/s 2023-11-30T23:04:45.263 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:04:44 smithi167 conmon[87022]: audit 2023-11-30T23:04:44.540123+0000 mon.smithi038 (mon.0) 679 : audit [INF] from='mgr.14182 172.21.15.38:0/2999689707' entity='mgr.smithi038.ldalxq' 2023-11-30T23:04:45.263 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:04:44 smithi167 conmon[87022]: audit 2023-11-30T23:04:44.551236+0000 mon.smithi038 (mon.0) 680 : audit [INF] from='mgr.14182 172.21.15.38:0/2999689707' entity='mgr.smithi038.ldalxq' 2023-11-30T23:04:45.263 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:04:44 smithi167 conmon[87022]: audit 2023-11-30T23:04:44.556510+0000 mon.smithi038 (mon.0) 681 : audit [INF] from='mgr.14182 172.21.15.38:0/2999689707' entity='mgr.smithi038.ldalxq' 2023-11-30T23:04:45.263 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:04:44 smithi167 conmon[87022]: cluster 2023-11-30T23:04:44.557358+0000 mgr.smithi038.ldalxq (mgr.14182) 451 : cluster [DBG] pgmap v318: 225 pgs: 225 active+clean; 7.2 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 124 B/s rd, 0 op/s 2023-11-30T23:04:45.263 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:04:44 smithi167 conmon[87022]: audit 2023-11-30T23:04:44.562754+0000 mon.smithi038 (mon.0) 682 : audit [DBG] from='mgr.14182 172.21.15.38:0/2999689707' entity='mgr.smithi038.ldalxq' cmd=[{"prefix": "osd tree", "states": ["destroyed"], "format": "json"}]: dispatch 2023-11-30T23:04:45.263 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:04:44 smithi167 conmon[87022]: audit 2023-11-30T23:04:44.576519+0000 mon.smithi038 (mon.0) 683 : audit [INF] from='mgr.14182 172.21.15.38:0/2999689707' entity='mgr.smithi038.ldalxq' 2023-11-30T23:04:45.263 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:04:44 smithi167 conmon[87022]: cephadm 2023-11-30T23:04:44.579041+0000 mgr.smithi038.ldalxq (mgr.14182) 452 : cephadm [INF] Deploying daemon haproxy.nfs.foo.smithi167.igxkgw on smithi167 2023-11-30T23:04:45.984 INFO:teuthology.orchestra.run.smithi038.stdout: 2023-11-30T23:04:45.985 INFO:teuthology.orchestra.run.smithi038.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2023-11-30T22:54:47.122758Z", "last_refresh": "2023-11-30T23:04:43.743252Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2023-11-30T22:54:42.674972Z", "last_refresh": "2023-11-30T23:04:39.558186Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2023-11-30T22:54:45.114633Z", "last_refresh": "2023-11-30T23:04:43.743389Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2023-11-30T22:58:56.317378Z service:ingress.nfs.foo [INFO] \"service was created\"", "2023-11-30T23:02:07.111634Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi167.buykdj on smithi167: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi167-buykdj\n/bin/podman: stderr Error: error inspecting object: no such container ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi167-buykdj\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi167.buykdj\n/bin/podman: stderr Error: error inspecting object: no such container ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi167.buykdj\nDeploy daemon haproxy.nfs.foo.smithi167.buykdj ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi167 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2023-11-30T22:59:44Z\" level=warning msg=\"failed, retrying in 1s ... (1/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-11-30T23:00:21Z\" level=warning msg=\"failed, retrying in 1s ... (2/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-11-30T23:00:59Z\" level=warning msg=\"failed, retrying in 1s ... (3/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: Error determining manifest MIME type for docker://haproxy:2.3: Error reading manifest sha256:058f434330f13dbbc46761f3e9a76af2408e9ec1898c9ac5a8baf00b42e756a9 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi167 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-11-30T23:04:36.497929Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi038.fwcakz on smithi038: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi038-fwcakz\n/bin/podman: stderr Error: error inspecting object: no such container ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi038-fwcakz\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi038.fwcakz\n/bin/podman: stderr Error: error inspecting object: no such container ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi038.fwcakz\nDeploy daemon haproxy.nfs.foo.smithi038.fwcakz ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi038 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2023-11-30T23:02:44Z\" level=warning msg=\"failed, retrying in 1s ... (1/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-11-30T23:03:21Z\" level=warning msg=\"failed, retrying in 1s ... (2/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-11-30T23:03:58Z\" level=warning msg=\"failed, retrying in 1s ... (3/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi038 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-11-30T23:04:36.502614Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi038.flofui on smithi038: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2023-11-30T23:04:36.503792Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi167.dxieha on smithi167: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.38/16"}, "status": {"created": "2023-11-30T22:58:56.312786Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.38/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2023-11-30T22:54:41.668043Z", "last_refresh": "2023-11-30T23:04:39.558331Z", "running": 2, "size": 2}}, {"events": ["2023-11-30T22:55:50.759225Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi038:172.21.15.38=smithi038", "smithi167:172.21.15.167=smithi167"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2023-11-30T22:55:50.756456Z", "last_refresh": "2023-11-30T23:04:39.558407Z", "running": 2, "size": 2}}, {"events": ["2023-11-30T22:58:56.311581Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2023-11-30T22:58:56.308071Z", "last_refresh": "2023-11-30T23:04:43.743907Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2023-11-30T22:54:46.136630Z", "last_refresh": "2023-11-30T23:04:39.558478Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2023-11-30T22:56:33.258058Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2023-11-30T22:56:33.253117Z", "last_refresh": "2023-11-30T23:04:39.558544Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2023-11-30T22:54:43.949497Z", "last_refresh": "2023-11-30T23:04:43.743520Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2023-11-30T22:58:52.105721Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2023-11-30T22:58:59.793467Z", "last_refresh": "2023-11-30T23:04:39.558809Z", "ports": [8800], "running": 2, "size": 2}}] 2023-11-30T23:04:46.006 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:04:45 smithi038 conmon[81956]: cluster 2023-11-30T23:04:44.752274+0000 mon.smithi038 (mon.0) 684 : cluster [INF] Health check cleared: CEPHADM_DAEMON_PLACE_FAIL (was: Failed to place 4 daemon(s)) 2023-11-30T23:04:46.007 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:04:45 smithi038 conmon[81956]: cluster 2023-11-30T23:04:44.752351+0000 mon.smithi038 (mon.0) 685 : cluster [INF] Cluster is now healthy 2023-11-30T23:04:46.262 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:04:45 smithi167 conmon[87022]: cluster 2023-11-30T23:04:44.752274+0000 mon.smithi038 (mon.0) 684 : cluster [INF] 2023-11-30T23:04:46.262 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:04:45 smithi167 conmon[87022]: Health check cleared: CEPHADM_DAEMON_PLACE_FAIL (was: Failed to place 4 daemon(s)) 2023-11-30T23:04:46.262 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:04:45 smithi167 conmon[87022]: cluster 2023-11-30T23:04:44.752351+0000 mon.smithi038 (mon.0) 685 : cluster [INF] Cluster is now healthy 2023-11-30T23:04:46.406 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2023-11-30T23:04:47.262 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:04:46 smithi167 conmon[87022]: audit 2023-11-30T23:04:45. 2023-11-30T23:04:47.262 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:04:46 smithi167 conmon[87022]: 980244+0000 mgr.smithi038.ldalxq (mgr.14182) 453 : audit [DBG] from='client.15018 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-11-30T23:04:47.262 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:04:46 smithi167 conmon[87022]: cluster 2023-11-30T23:04:46.558246+0000 mgr.smithi038.ldalxq (mgr.14182) 454 : cluster [DBG] 2023-11-30T23:04:47.262 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:04:46 smithi167 conmon[87022]: pgmap v319: 225 pgs: 225 active+clean; 7.2 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 2.5 KiB/s rd, 101 B/s wr, 2 op/s 2023-11-30T23:04:47.274 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:04:46 smithi038 conmon[81956]: audit 2023-11-30T23:04:45.980244+0000 mgr.smithi038.ldalxq (mgr.14182) 453 : audit [DBG] from='client.15018 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-11-30T23:04:47.274 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:04:46 smithi038 conmon[81956]: cluster 2023-11-30T23:04:46.558246+0000 mgr.smithi038.ldalxq (mgr.14182) 454 : cluster [DBG] pgmap v319: 225 pgs: 225 active+clean; 7.2 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 2.5 KiB/s rd, 101 B/s wr, 2 op/s 2023-11-30T23:04:47.407 DEBUG:teuthology.orchestra.run.smithi038:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:0dc074ce0b0b3b4f393f56dd32ef36884ebf45a9 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 3faf8b00-8fd3-11ee-95a2-87774f69a715 -- ceph orch ls -f json 2023-11-30T23:04:49.202 INFO:teuthology.orchestra.run.smithi038.stdout: 2023-11-30T23:04:49.203 INFO:teuthology.orchestra.run.smithi038.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2023-11-30T22:54:47.122758Z", "last_refresh": "2023-11-30T23:04:43.743252Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2023-11-30T22:54:42.674972Z", "last_refresh": "2023-11-30T23:04:39.558186Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2023-11-30T22:54:45.114633Z", "last_refresh": "2023-11-30T23:04:43.743389Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2023-11-30T22:58:56.317378Z service:ingress.nfs.foo [INFO] \"service was created\"", "2023-11-30T23:02:07.111634Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi167.buykdj on smithi167: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi167-buykdj\n/bin/podman: stderr Error: error inspecting object: no such container ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi167-buykdj\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi167.buykdj\n/bin/podman: stderr Error: error inspecting object: no such container ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi167.buykdj\nDeploy daemon haproxy.nfs.foo.smithi167.buykdj ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi167 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2023-11-30T22:59:44Z\" level=warning msg=\"failed, retrying in 1s ... (1/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-11-30T23:00:21Z\" level=warning msg=\"failed, retrying in 1s ... (2/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-11-30T23:00:59Z\" level=warning msg=\"failed, retrying in 1s ... (3/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: Error determining manifest MIME type for docker://haproxy:2.3: Error reading manifest sha256:058f434330f13dbbc46761f3e9a76af2408e9ec1898c9ac5a8baf00b42e756a9 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi167 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-11-30T23:04:36.497929Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi038.fwcakz on smithi038: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi038-fwcakz\n/bin/podman: stderr Error: error inspecting object: no such container ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi038-fwcakz\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi038.fwcakz\n/bin/podman: stderr Error: error inspecting object: no such container ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi038.fwcakz\nDeploy daemon haproxy.nfs.foo.smithi038.fwcakz ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi038 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2023-11-30T23:02:44Z\" level=warning msg=\"failed, retrying in 1s ... (1/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-11-30T23:03:21Z\" level=warning msg=\"failed, retrying in 1s ... (2/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-11-30T23:03:58Z\" level=warning msg=\"failed, retrying in 1s ... (3/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi038 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-11-30T23:04:36.502614Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi038.flofui on smithi038: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2023-11-30T23:04:36.503792Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi167.dxieha on smithi167: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.38/16"}, "status": {"created": "2023-11-30T22:58:56.312786Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.38/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2023-11-30T22:54:41.668043Z", "last_refresh": "2023-11-30T23:04:39.558331Z", "running": 2, "size": 2}}, {"events": ["2023-11-30T22:55:50.759225Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi038:172.21.15.38=smithi038", "smithi167:172.21.15.167=smithi167"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2023-11-30T22:55:50.756456Z", "last_refresh": "2023-11-30T23:04:39.558407Z", "running": 2, "size": 2}}, {"events": ["2023-11-30T22:58:56.311581Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2023-11-30T22:58:56.308071Z", "last_refresh": "2023-11-30T23:04:43.743907Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2023-11-30T22:54:46.136630Z", "last_refresh": "2023-11-30T23:04:39.558478Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2023-11-30T22:56:33.258058Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2023-11-30T22:56:33.253117Z", "last_refresh": "2023-11-30T23:04:39.558544Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2023-11-30T22:54:43.949497Z", "last_refresh": "2023-11-30T23:04:43.743520Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2023-11-30T22:58:52.105721Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2023-11-30T22:58:59.793467Z", "last_refresh": "2023-11-30T23:04:39.558809Z", "ports": [8800], "running": 2, "size": 2}}] 2023-11-30T23:04:49.661 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2023-11-30T23:04:50.012 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:04:49 smithi167 conmon[87022]: cluster 2023-11-30T23:04:48.558719+0000 mgr.smithi038.ldalxq (mgr.14182) 455 2023-11-30T23:04:50.012 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:04:49 smithi167 conmon[87022]: : cluster [DBG] pgmap v320: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 2.5 KiB/s rd, 203 B/s wr, 2 op/s 2023-11-30T23:04:50.024 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:04:49 smithi038 conmon[81956]: cluster 2023-11-30T23:04:48.558719+0000 mgr.smithi038.ldalxq (mgr.14182) 455 : cluster [DBG] pgmap v320: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 2.5 KiB/s rd, 203 B/s wr, 2 op/s 2023-11-30T23:04:50.663 DEBUG:teuthology.orchestra.run.smithi038:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:0dc074ce0b0b3b4f393f56dd32ef36884ebf45a9 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 3faf8b00-8fd3-11ee-95a2-87774f69a715 -- ceph orch ls -f json 2023-11-30T23:04:51.012 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:04:50 smithi167 conmon[87022]: audit 2023-11-30T23:04:49.198767+0000 mgr.smithi038.ldalxq (mgr.14182) 456 : audit 2023-11-30T23:04:51.012 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:04:50 smithi167 conmon[87022]: [DBG] from='client.15022 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-11-30T23:04:51.024 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:04:50 smithi038 conmon[81956]: audit 2023-11-30T23:04:49.198767+0000 mgr.smithi038.ldalxq (mgr. 2023-11-30T23:04:51.024 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:04:50 smithi038 conmon[81956]: 14182) 456 : audit [DBG] from='client.15022 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-11-30T23:04:52.001 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:04:51 smithi038 conmon[81956]: cluster 2023-11-30T23:04:50. 2023-11-30T23:04:52.002 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:04:51 smithi038 conmon[81956]: 559566+0000 mgr.smithi038.ldalxq (mgr.14182) 457 : cluster [DBG] pgmap v321: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 2.5 KiB/s rd, 203 B/s wr, 2 op/s 2023-11-30T23:04:52.012 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:04:51 smithi167 conmon[87022]: cluster 2023-11-30T23:04:50.559566+0000 mgr.smithi038.ldalxq (mgr.14182) 457 : cluster [DBG] pgmap v321: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 2.5 KiB/s rd, 203 B/s wr, 2 op/s 2023-11-30T23:04:52.012 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:04:51 smithi167 conmon[87022]: 2023-11-30T23:04:52.412 INFO:teuthology.orchestra.run.smithi038.stdout: 2023-11-30T23:04:52.412 INFO:teuthology.orchestra.run.smithi038.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2023-11-30T22:54:47.122758Z", "last_refresh": "2023-11-30T23:04:43.743252Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2023-11-30T22:54:42.674972Z", "last_refresh": "2023-11-30T23:04:39.558186Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2023-11-30T22:54:45.114633Z", "last_refresh": "2023-11-30T23:04:43.743389Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2023-11-30T22:58:56.317378Z service:ingress.nfs.foo [INFO] \"service was created\"", "2023-11-30T23:02:07.111634Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi167.buykdj on smithi167: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi167-buykdj\n/bin/podman: stderr Error: error inspecting object: no such container ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi167-buykdj\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi167.buykdj\n/bin/podman: stderr Error: error inspecting object: no such container ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi167.buykdj\nDeploy daemon haproxy.nfs.foo.smithi167.buykdj ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi167 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2023-11-30T22:59:44Z\" level=warning msg=\"failed, retrying in 1s ... (1/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-11-30T23:00:21Z\" level=warning msg=\"failed, retrying in 1s ... (2/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-11-30T23:00:59Z\" level=warning msg=\"failed, retrying in 1s ... (3/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: Error determining manifest MIME type for docker://haproxy:2.3: Error reading manifest sha256:058f434330f13dbbc46761f3e9a76af2408e9ec1898c9ac5a8baf00b42e756a9 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi167 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-11-30T23:04:36.497929Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi038.fwcakz on smithi038: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi038-fwcakz\n/bin/podman: stderr Error: error inspecting object: no such container ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi038-fwcakz\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi038.fwcakz\n/bin/podman: stderr Error: error inspecting object: no such container ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi038.fwcakz\nDeploy daemon haproxy.nfs.foo.smithi038.fwcakz ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi038 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2023-11-30T23:02:44Z\" level=warning msg=\"failed, retrying in 1s ... (1/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-11-30T23:03:21Z\" level=warning msg=\"failed, retrying in 1s ... (2/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-11-30T23:03:58Z\" level=warning msg=\"failed, retrying in 1s ... (3/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi038 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-11-30T23:04:36.502614Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi038.flofui on smithi038: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2023-11-30T23:04:36.503792Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi167.dxieha on smithi167: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.38/16"}, "status": {"created": "2023-11-30T22:58:56.312786Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.38/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2023-11-30T22:54:41.668043Z", "last_refresh": "2023-11-30T23:04:39.558331Z", "running": 2, "size": 2}}, {"events": ["2023-11-30T22:55:50.759225Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi038:172.21.15.38=smithi038", "smithi167:172.21.15.167=smithi167"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2023-11-30T22:55:50.756456Z", "last_refresh": "2023-11-30T23:04:39.558407Z", "running": 2, "size": 2}}, {"events": ["2023-11-30T22:58:56.311581Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2023-11-30T22:58:56.308071Z", "last_refresh": "2023-11-30T23:04:43.743907Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2023-11-30T22:54:46.136630Z", "last_refresh": "2023-11-30T23:04:39.558478Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2023-11-30T22:56:33.258058Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2023-11-30T22:56:33.253117Z", "last_refresh": "2023-11-30T23:04:39.558544Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2023-11-30T22:54:43.949497Z", "last_refresh": "2023-11-30T23:04:43.743520Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2023-11-30T22:58:52.105721Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2023-11-30T22:58:59.793467Z", "last_refresh": "2023-11-30T23:04:39.558809Z", "ports": [8800], "running": 2, "size": 2}}] 2023-11-30T23:04:52.913 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2023-11-30T23:04:53.012 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:04:52 smithi167 conmon[87022]: audit 2023-11-30T23:04:52.408308+0000 mgr.smithi038.ldalxq (mgr.14182) 458 : audit [DBG] 2023-11-30T23:04:53.012 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:04:52 smithi167 conmon[87022]: from='client.15026 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-11-30T23:04:53.012 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:04:52 smithi167 conmon[87022]: cluster 2023-11-30T23:04:52.560040+0000 mgr.smithi038.ldalxq (mgr.14182) 459 : cluster [DBG] pgmap v322: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 2.5 KiB/s rd, 203 B/s wr, 2 op/s 2023-11-30T23:04:53.024 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:04:52 smithi038 conmon[81956]: audit 2023-11-30T23:04:52.408308+0000 mgr.smithi038.ldalxq (mgr.14182) 2023-11-30T23:04:53.024 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:04:52 smithi038 conmon[81956]: 458 : audit [DBG] from='client.15026 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-11-30T23:04:53.024 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:04:52 smithi038 conmon[81956]: cluster 2023-11-30T23:04:52.560040+0000 mgr.smithi038.ldalxq (mgr.14182) 459 : cluster [DBG] pgmap v322: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 2.5 KiB/s rd, 203 B/s wr, 2 op/s 2023-11-30T23:04:53.914 DEBUG:teuthology.orchestra.run.smithi038:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:0dc074ce0b0b3b4f393f56dd32ef36884ebf45a9 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 3faf8b00-8fd3-11ee-95a2-87774f69a715 -- ceph orch ls -f json 2023-11-30T23:04:55.636 INFO:teuthology.orchestra.run.smithi038.stdout: 2023-11-30T23:04:55.636 INFO:teuthology.orchestra.run.smithi038.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2023-11-30T22:54:47.122758Z", "last_refresh": "2023-11-30T23:04:43.743252Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2023-11-30T22:54:42.674972Z", "last_refresh": "2023-11-30T23:04:39.558186Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2023-11-30T22:54:45.114633Z", "last_refresh": "2023-11-30T23:04:43.743389Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2023-11-30T22:58:56.317378Z service:ingress.nfs.foo [INFO] \"service was created\"", "2023-11-30T23:02:07.111634Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi167.buykdj on smithi167: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi167-buykdj\n/bin/podman: stderr Error: error inspecting object: no such container ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi167-buykdj\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi167.buykdj\n/bin/podman: stderr Error: error inspecting object: no such container ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi167.buykdj\nDeploy daemon haproxy.nfs.foo.smithi167.buykdj ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi167 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2023-11-30T22:59:44Z\" level=warning msg=\"failed, retrying in 1s ... (1/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-11-30T23:00:21Z\" level=warning msg=\"failed, retrying in 1s ... (2/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-11-30T23:00:59Z\" level=warning msg=\"failed, retrying in 1s ... (3/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: Error determining manifest MIME type for docker://haproxy:2.3: Error reading manifest sha256:058f434330f13dbbc46761f3e9a76af2408e9ec1898c9ac5a8baf00b42e756a9 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi167 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-11-30T23:04:36.497929Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi038.fwcakz on smithi038: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi038-fwcakz\n/bin/podman: stderr Error: error inspecting object: no such container ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi038-fwcakz\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi038.fwcakz\n/bin/podman: stderr Error: error inspecting object: no such container ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi038.fwcakz\nDeploy daemon haproxy.nfs.foo.smithi038.fwcakz ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi038 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2023-11-30T23:02:44Z\" level=warning msg=\"failed, retrying in 1s ... (1/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-11-30T23:03:21Z\" level=warning msg=\"failed, retrying in 1s ... (2/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-11-30T23:03:58Z\" level=warning msg=\"failed, retrying in 1s ... (3/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi038 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-11-30T23:04:36.502614Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi038.flofui on smithi038: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2023-11-30T23:04:36.503792Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi167.dxieha on smithi167: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.38/16"}, "status": {"created": "2023-11-30T22:58:56.312786Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.38/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2023-11-30T22:54:41.668043Z", "last_refresh": "2023-11-30T23:04:39.558331Z", "running": 2, "size": 2}}, {"events": ["2023-11-30T22:55:50.759225Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi038:172.21.15.38=smithi038", "smithi167:172.21.15.167=smithi167"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2023-11-30T22:55:50.756456Z", "last_refresh": "2023-11-30T23:04:39.558407Z", "running": 2, "size": 2}}, {"events": ["2023-11-30T22:58:56.311581Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2023-11-30T22:58:56.308071Z", "last_refresh": "2023-11-30T23:04:43.743907Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2023-11-30T22:54:46.136630Z", "last_refresh": "2023-11-30T23:04:39.558478Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2023-11-30T22:56:33.258058Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2023-11-30T22:56:33.253117Z", "last_refresh": "2023-11-30T23:04:39.558544Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2023-11-30T22:54:43.949497Z", "last_refresh": "2023-11-30T23:04:43.743520Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2023-11-30T22:58:52.105721Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2023-11-30T22:58:59.793467Z", "last_refresh": "2023-11-30T23:04:39.558809Z", "ports": [8800], "running": 2, "size": 2}}] 2023-11-30T23:04:55.890 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:04:55 smithi038 conmon[81956]: cluster 2023-11-30T23:04:54.560609+0000 mgr.smithi038.ldalxq (mgr.14182) 460 : cluster [DBG] pgmap v323: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 2.5 KiB/s rd, 203 B/s wr, 2 op/s 2023-11-30T23:04:56.012 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:04:55 smithi167 conmon[87022]: cluster 2023-11-30T23:04:54.560609+0000 mgr.smithi038.ldalxq (mgr.14182) 460 : cluster [DBG] pgmap v323: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 2.5 KiB/s rd, 203 B/s wr, 2 op/s 2023-11-30T23:04:56.081 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2023-11-30T23:04:57.012 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:04:56 smithi167 conmon[87022]: audit 2023-11-30T23:04:55.631999+0000 mgr.smithi038.ldalxq (mgr.14182) 461 : audit 2023-11-30T23:04:57.012 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:04:56 smithi167 conmon[87022]: [DBG] from='client.15030 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-11-30T23:04:57.024 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:04:56 smithi038 conmon[81956]: audit 2023-11-30T23:04:55.631999+0000 mgr.smithi038.ldalxq (mgr.14182) 461 : audit [DBG] from='client.15030 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-11-30T23:04:57.081 DEBUG:teuthology.orchestra.run.smithi038:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:0dc074ce0b0b3b4f393f56dd32ef36884ebf45a9 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 3faf8b00-8fd3-11ee-95a2-87774f69a715 -- ceph orch ls -f json 2023-11-30T23:04:58.012 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:04:57 smithi167 conmon[87022]: cluster 2023-11-30T23:04:56.561512+0000 mgr.smithi038.ldalxq (mgr.14182) 462 : cluster 2023-11-30T23:04:58.012 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:04:57 smithi167 conmon[87022]: [DBG] pgmap v324: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 2.1 KiB/s rd, 170 B/s wr, 2 op/s 2023-11-30T23:04:58.012 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:04:57 smithi167 conmon[87022]: audit 2023-11-30T23:04:57.342446+0000 mon.smithi038 (mon.0) 686 : audit [INF] from='mgr.14182 172.21.15.38:0/2999689707' entity='mgr.smithi038.ldalxq' 2023-11-30T23:04:58.024 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:04:57 smithi038 conmon[81956]: cluster 2023-11-30T23:04:56 2023-11-30T23:04:58.024 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:04:57 smithi038 conmon[81956]: .561512+0000 mgr.smithi038.ldalxq (mgr.14182) 462 : cluster [DBG] pgmap v324: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 2.1 KiB/s rd, 170 B/s wr, 2 op/s 2023-11-30T23:04:58.024 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:04:57 smithi038 conmon[81956]: audit 2023-11-30T23:04:57.342446+0000 mon.smithi038 (mon.0) 686 : audit [INF] from='mgr.14182 172.21.15.38:0/2999689707' entity='mgr.smithi038.ldalxq' 2023-11-30T23:04:58.930 INFO:teuthology.orchestra.run.smithi038.stdout: 2023-11-30T23:04:58.930 INFO:teuthology.orchestra.run.smithi038.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2023-11-30T22:54:47.122758Z", "last_refresh": "2023-11-30T23:04:43.743252Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2023-11-30T22:54:42.674972Z", "last_refresh": "2023-11-30T23:04:39.558186Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2023-11-30T22:54:45.114633Z", "last_refresh": "2023-11-30T23:04:43.743389Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2023-11-30T22:58:56.317378Z service:ingress.nfs.foo [INFO] \"service was created\"", "2023-11-30T23:02:07.111634Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi167.buykdj on smithi167: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi167-buykdj\n/bin/podman: stderr Error: error inspecting object: no such container ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi167-buykdj\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi167.buykdj\n/bin/podman: stderr Error: error inspecting object: no such container ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi167.buykdj\nDeploy daemon haproxy.nfs.foo.smithi167.buykdj ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi167 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2023-11-30T22:59:44Z\" level=warning msg=\"failed, retrying in 1s ... (1/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-11-30T23:00:21Z\" level=warning msg=\"failed, retrying in 1s ... (2/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-11-30T23:00:59Z\" level=warning msg=\"failed, retrying in 1s ... (3/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: Error determining manifest MIME type for docker://haproxy:2.3: Error reading manifest sha256:058f434330f13dbbc46761f3e9a76af2408e9ec1898c9ac5a8baf00b42e756a9 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi167 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-11-30T23:04:36.497929Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi038.fwcakz on smithi038: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi038-fwcakz\n/bin/podman: stderr Error: error inspecting object: no such container ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi038-fwcakz\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi038.fwcakz\n/bin/podman: stderr Error: error inspecting object: no such container ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi038.fwcakz\nDeploy daemon haproxy.nfs.foo.smithi038.fwcakz ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi038 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2023-11-30T23:02:44Z\" level=warning msg=\"failed, retrying in 1s ... (1/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-11-30T23:03:21Z\" level=warning msg=\"failed, retrying in 1s ... (2/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-11-30T23:03:58Z\" level=warning msg=\"failed, retrying in 1s ... (3/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi038 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-11-30T23:04:36.502614Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi038.flofui on smithi038: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2023-11-30T23:04:36.503792Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi167.dxieha on smithi167: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.38/16"}, "status": {"created": "2023-11-30T22:58:56.312786Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.38/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2023-11-30T22:54:41.668043Z", "last_refresh": "2023-11-30T23:04:39.558331Z", "running": 2, "size": 2}}, {"events": ["2023-11-30T22:55:50.759225Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi038:172.21.15.38=smithi038", "smithi167:172.21.15.167=smithi167"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2023-11-30T22:55:50.756456Z", "last_refresh": "2023-11-30T23:04:39.558407Z", "running": 2, "size": 2}}, {"events": ["2023-11-30T22:58:56.311581Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2023-11-30T22:58:56.308071Z", "last_refresh": "2023-11-30T23:04:43.743907Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2023-11-30T22:54:46.136630Z", "last_refresh": "2023-11-30T23:04:39.558478Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2023-11-30T22:56:33.258058Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2023-11-30T22:56:33.253117Z", "last_refresh": "2023-11-30T23:04:39.558544Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2023-11-30T22:54:43.949497Z", "last_refresh": "2023-11-30T23:04:43.743520Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2023-11-30T22:58:52.105721Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2023-11-30T22:58:59.793467Z", "last_refresh": "2023-11-30T23:04:39.558809Z", "ports": [8800], "running": 2, "size": 2}}] 2023-11-30T23:04:59.343 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2023-11-30T23:05:00.014 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:04:59 smithi167 conmon[87022]: cluster 2023-11-30T23:04:58.561980+0000 mgr.smithi038.ldalxq (mgr.14182) 463 : cluster [DBG] pgmap v325: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 85 B/s wr, 0 op/s 2023-11-30T23:05:00.014 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:04:59 smithi167 conmon[87022]: 2023-11-30T23:05:00.024 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:04:59 smithi038 conmon[81956]: cluster 2023-11-30T23:04:58.561980+0000 mgr.smithi038.ldalxq 2023-11-30T23:05:00.024 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:04:59 smithi038 conmon[81956]: (mgr.14182) 463 : cluster [DBG] pgmap v325: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 85 B/s wr, 0 op/s 2023-11-30T23:05:00.344 DEBUG:teuthology.orchestra.run.smithi038:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:0dc074ce0b0b3b4f393f56dd32ef36884ebf45a9 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 3faf8b00-8fd3-11ee-95a2-87774f69a715 -- ceph orch ls -f json 2023-11-30T23:05:00.890 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:05:00 smithi038 conmon[81956]: audit 2023-11-30T23:04:58.925907+0000 mgr.smithi038.ldalxq (mgr 2023-11-30T23:05:00.890 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:05:00 smithi038 conmon[81956]: .14182) 464 : audit [DBG] from='client.15034 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-11-30T23:05:01.012 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:05:00 smithi167 conmon[87022]: audit 2023-11-30T23:04:58.925907+0000 mgr.smithi038.ldalxq (mgr.14182) 464 : audit [DBG] 2023-11-30T23:05:01.012 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:05:00 smithi167 conmon[87022]: from='client.15034 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-11-30T23:05:02.011 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:05:01 smithi167 conmon[87022]: cluster 2023-11-30T23:05:00.562681+0000 mgr.smithi038.ldalxq (mgr.14182) 465 2023-11-30T23:05:02.012 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:05:01 smithi167 conmon[87022]: : cluster [DBG] pgmap v326: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2023-11-30T23:05:02.021 INFO:teuthology.orchestra.run.smithi038.stdout: 2023-11-30T23:05:02.021 INFO:teuthology.orchestra.run.smithi038.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2023-11-30T22:54:47.122758Z", "last_refresh": "2023-11-30T23:04:43.743252Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2023-11-30T22:54:42.674972Z", "last_refresh": "2023-11-30T23:04:39.558186Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2023-11-30T22:54:45.114633Z", "last_refresh": "2023-11-30T23:04:43.743389Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2023-11-30T22:58:56.317378Z service:ingress.nfs.foo [INFO] \"service was created\"", "2023-11-30T23:02:07.111634Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi167.buykdj on smithi167: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi167-buykdj\n/bin/podman: stderr Error: error inspecting object: no such container ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi167-buykdj\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi167.buykdj\n/bin/podman: stderr Error: error inspecting object: no such container ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi167.buykdj\nDeploy daemon haproxy.nfs.foo.smithi167.buykdj ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi167 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2023-11-30T22:59:44Z\" level=warning msg=\"failed, retrying in 1s ... (1/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-11-30T23:00:21Z\" level=warning msg=\"failed, retrying in 1s ... (2/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-11-30T23:00:59Z\" level=warning msg=\"failed, retrying in 1s ... (3/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: Error determining manifest MIME type for docker://haproxy:2.3: Error reading manifest sha256:058f434330f13dbbc46761f3e9a76af2408e9ec1898c9ac5a8baf00b42e756a9 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi167 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-11-30T23:04:36.497929Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi038.fwcakz on smithi038: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi038-fwcakz\n/bin/podman: stderr Error: error inspecting object: no such container ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi038-fwcakz\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi038.fwcakz\n/bin/podman: stderr Error: error inspecting object: no such container ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi038.fwcakz\nDeploy daemon haproxy.nfs.foo.smithi038.fwcakz ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi038 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2023-11-30T23:02:44Z\" level=warning msg=\"failed, retrying in 1s ... (1/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-11-30T23:03:21Z\" level=warning msg=\"failed, retrying in 1s ... (2/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-11-30T23:03:58Z\" level=warning msg=\"failed, retrying in 1s ... (3/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi038 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-11-30T23:04:36.502614Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi038.flofui on smithi038: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2023-11-30T23:04:36.503792Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi167.dxieha on smithi167: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.38/16"}, "status": {"created": "2023-11-30T22:58:56.312786Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.38/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2023-11-30T22:54:41.668043Z", "last_refresh": "2023-11-30T23:04:39.558331Z", "running": 2, "size": 2}}, {"events": ["2023-11-30T22:55:50.759225Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi038:172.21.15.38=smithi038", "smithi167:172.21.15.167=smithi167"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2023-11-30T22:55:50.756456Z", "last_refresh": "2023-11-30T23:04:39.558407Z", "running": 2, "size": 2}}, {"events": ["2023-11-30T22:58:56.311581Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2023-11-30T22:58:56.308071Z", "last_refresh": "2023-11-30T23:04:43.743907Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2023-11-30T22:54:46.136630Z", "last_refresh": "2023-11-30T23:04:39.558478Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2023-11-30T22:56:33.258058Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2023-11-30T22:56:33.253117Z", "last_refresh": "2023-11-30T23:04:39.558544Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2023-11-30T22:54:43.949497Z", "last_refresh": "2023-11-30T23:04:43.743520Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2023-11-30T22:58:52.105721Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2023-11-30T22:58:59.793467Z", "last_refresh": "2023-11-30T23:04:39.558809Z", "ports": [8800], "running": 2, "size": 2}}] 2023-11-30T23:05:02.023 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:05:01 smithi038 conmon[81956]: cluster 2023-11-30T23:05:00.562681+0000 mgr.smithi038.ldalxq (mgr.14182) 465 : cluster [DBG] pgmap v326: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2023-11-30T23:05:02.395 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2023-11-30T23:05:03.012 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:05:02 smithi167 conmon[87022]: audit 2023-11-30T23:05:02.015909+0000 mgr.smithi038.ldalxq (mgr.14182) 466 : audit 2023-11-30T23:05:03.012 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:05:02 smithi167 conmon[87022]: [DBG] from='client.15038 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-11-30T23:05:03.012 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:05:02 smithi167 conmon[87022]: cluster 2023-11-30T23:05:02.563299+0000 mgr.smithi038.ldalxq (mgr.14182) 467 : cluster [DBG] pgmap v327: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2023-11-30T23:05:03.024 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:05:02 smithi038 conmon[81956]: audit 2023-11-30T23:05:02.015909+0000 mgr.smithi038.ldalxq ( 2023-11-30T23:05:03.024 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:05:02 smithi038 conmon[81956]: mgr.14182) 466 : audit [DBG] from='client.15038 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-11-30T23:05:03.024 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:05:02 smithi038 conmon[81956]: cluster 2023-11-30T23:05:02.563299+0000 mgr.smithi038.ldalxq (mgr.14182) 467 : cluster [DBG] pgmap v327: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2023-11-30T23:05:03.396 DEBUG:teuthology.orchestra.run.smithi038:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:0dc074ce0b0b3b4f393f56dd32ef36884ebf45a9 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 3faf8b00-8fd3-11ee-95a2-87774f69a715 -- ceph orch ls -f json 2023-11-30T23:05:05.116 INFO:teuthology.orchestra.run.smithi038.stdout: 2023-11-30T23:05:05.116 INFO:teuthology.orchestra.run.smithi038.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2023-11-30T22:54:47.122758Z", "last_refresh": "2023-11-30T23:04:43.743252Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2023-11-30T22:54:42.674972Z", "last_refresh": "2023-11-30T23:04:39.558186Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2023-11-30T22:54:45.114633Z", "last_refresh": "2023-11-30T23:04:43.743389Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2023-11-30T22:58:56.317378Z service:ingress.nfs.foo [INFO] \"service was created\"", "2023-11-30T23:02:07.111634Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi167.buykdj on smithi167: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi167-buykdj\n/bin/podman: stderr Error: error inspecting object: no such container ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi167-buykdj\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi167.buykdj\n/bin/podman: stderr Error: error inspecting object: no such container ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi167.buykdj\nDeploy daemon haproxy.nfs.foo.smithi167.buykdj ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi167 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2023-11-30T22:59:44Z\" level=warning msg=\"failed, retrying in 1s ... (1/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-11-30T23:00:21Z\" level=warning msg=\"failed, retrying in 1s ... (2/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-11-30T23:00:59Z\" level=warning msg=\"failed, retrying in 1s ... (3/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: Error determining manifest MIME type for docker://haproxy:2.3: Error reading manifest sha256:058f434330f13dbbc46761f3e9a76af2408e9ec1898c9ac5a8baf00b42e756a9 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi167 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-11-30T23:04:36.497929Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi038.fwcakz on smithi038: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi038-fwcakz\n/bin/podman: stderr Error: error inspecting object: no such container ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi038-fwcakz\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi038.fwcakz\n/bin/podman: stderr Error: error inspecting object: no such container ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi038.fwcakz\nDeploy daemon haproxy.nfs.foo.smithi038.fwcakz ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi038 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2023-11-30T23:02:44Z\" level=warning msg=\"failed, retrying in 1s ... (1/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-11-30T23:03:21Z\" level=warning msg=\"failed, retrying in 1s ... (2/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-11-30T23:03:58Z\" level=warning msg=\"failed, retrying in 1s ... (3/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi038 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-11-30T23:04:36.502614Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi038.flofui on smithi038: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2023-11-30T23:04:36.503792Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi167.dxieha on smithi167: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.38/16"}, "status": {"created": "2023-11-30T22:58:56.312786Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.38/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2023-11-30T22:54:41.668043Z", "last_refresh": "2023-11-30T23:04:39.558331Z", "running": 2, "size": 2}}, {"events": ["2023-11-30T22:55:50.759225Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi038:172.21.15.38=smithi038", "smithi167:172.21.15.167=smithi167"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2023-11-30T22:55:50.756456Z", "last_refresh": "2023-11-30T23:04:39.558407Z", "running": 2, "size": 2}}, {"events": ["2023-11-30T22:58:56.311581Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2023-11-30T22:58:56.308071Z", "last_refresh": "2023-11-30T23:04:43.743907Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2023-11-30T22:54:46.136630Z", "last_refresh": "2023-11-30T23:04:39.558478Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2023-11-30T22:56:33.258058Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2023-11-30T22:56:33.253117Z", "last_refresh": "2023-11-30T23:04:39.558544Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2023-11-30T22:54:43.949497Z", "last_refresh": "2023-11-30T23:04:43.743520Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2023-11-30T22:58:52.105721Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2023-11-30T22:58:59.793467Z", "last_refresh": "2023-11-30T23:04:39.558809Z", "ports": [8800], "running": 2, "size": 2}}] 2023-11-30T23:05:05.651 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2023-11-30T23:05:06.012 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:05:05 smithi167 conmon[87022]: cluster 2023-11-30T23:05:04.563895+0000 mgr.smithi038.ldalxq (mgr.14182) 468 : cluster [DBG] pgmap v328: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2023-11-30T23:05:06.026 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:05:05 smithi038 conmon[81956]: cluster 2023-11-30T23:05:04. 2023-11-30T23:05:06.026 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:05:05 smithi038 conmon[81956]: 563895+0000 mgr.smithi038.ldalxq (mgr.14182) 468 : cluster [DBG] pgmap v328: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2023-11-30T23:05:06.653 DEBUG:teuthology.orchestra.run.smithi038:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:0dc074ce0b0b3b4f393f56dd32ef36884ebf45a9 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 3faf8b00-8fd3-11ee-95a2-87774f69a715 -- ceph orch ls -f json 2023-11-30T23:05:07.015 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:05:06 smithi167 conmon[87022]: audit 2023-11-30T23:05:05.111859+0000 mgr.smithi038.ldalxq (mgr.14182) 469 : audit [DBG] from='client.15042 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-11-30T23:05:07.024 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:05:06 smithi038 conmon[81956]: audit 2023-11-30T23:05:05.111859+0000 mgr.smithi038.ldalxq (mgr.14182 2023-11-30T23:05:07.024 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:05:06 smithi038 conmon[81956]: ) 469 : audit [DBG] from='client.15042 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-11-30T23:05:07.774 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:05:07 smithi038 conmon[81956]: cluster 2023-11-30T23:05:06.565008+0000 mgr.smithi038.ldalxq (mgr.14182) 470 : cluster [DBG] 2023-11-30T23:05:07.774 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:05:07 smithi038 conmon[81956]: pgmap v329: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2023-11-30T23:05:08.012 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:05:07 smithi167 conmon[87022]: cluster 2023-11-30T23:05:06.565008+0000 mgr.smithi038.ldalxq (mgr.14182) 470 : cluster [DBG] pgmap v329: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2023-11-30T23:05:08.372 INFO:teuthology.orchestra.run.smithi038.stdout: 2023-11-30T23:05:08.373 INFO:teuthology.orchestra.run.smithi038.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2023-11-30T22:54:47.122758Z", "last_refresh": "2023-11-30T23:04:43.743252Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2023-11-30T22:54:42.674972Z", "last_refresh": "2023-11-30T23:04:39.558186Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2023-11-30T22:54:45.114633Z", "last_refresh": "2023-11-30T23:04:43.743389Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2023-11-30T22:58:56.317378Z service:ingress.nfs.foo [INFO] \"service was created\"", "2023-11-30T23:02:07.111634Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi167.buykdj on smithi167: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi167-buykdj\n/bin/podman: stderr Error: error inspecting object: no such container ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi167-buykdj\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi167.buykdj\n/bin/podman: stderr Error: error inspecting object: no such container ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi167.buykdj\nDeploy daemon haproxy.nfs.foo.smithi167.buykdj ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi167 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2023-11-30T22:59:44Z\" level=warning msg=\"failed, retrying in 1s ... (1/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-11-30T23:00:21Z\" level=warning msg=\"failed, retrying in 1s ... (2/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-11-30T23:00:59Z\" level=warning msg=\"failed, retrying in 1s ... (3/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: Error determining manifest MIME type for docker://haproxy:2.3: Error reading manifest sha256:058f434330f13dbbc46761f3e9a76af2408e9ec1898c9ac5a8baf00b42e756a9 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi167 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-11-30T23:04:36.497929Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi038.fwcakz on smithi038: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi038-fwcakz\n/bin/podman: stderr Error: error inspecting object: no such container ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi038-fwcakz\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi038.fwcakz\n/bin/podman: stderr Error: error inspecting object: no such container ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi038.fwcakz\nDeploy daemon haproxy.nfs.foo.smithi038.fwcakz ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi038 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2023-11-30T23:02:44Z\" level=warning msg=\"failed, retrying in 1s ... (1/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-11-30T23:03:21Z\" level=warning msg=\"failed, retrying in 1s ... (2/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-11-30T23:03:58Z\" level=warning msg=\"failed, retrying in 1s ... (3/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi038 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-11-30T23:04:36.502614Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi038.flofui on smithi038: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2023-11-30T23:04:36.503792Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi167.dxieha on smithi167: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.38/16"}, "status": {"created": "2023-11-30T22:58:56.312786Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.38/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2023-11-30T22:54:41.668043Z", "last_refresh": "2023-11-30T23:04:39.558331Z", "running": 2, "size": 2}}, {"events": ["2023-11-30T22:55:50.759225Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi038:172.21.15.38=smithi038", "smithi167:172.21.15.167=smithi167"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2023-11-30T22:55:50.756456Z", "last_refresh": "2023-11-30T23:04:39.558407Z", "running": 2, "size": 2}}, {"events": ["2023-11-30T22:58:56.311581Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2023-11-30T22:58:56.308071Z", "last_refresh": "2023-11-30T23:04:43.743907Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2023-11-30T22:54:46.136630Z", "last_refresh": "2023-11-30T23:04:39.558478Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2023-11-30T22:56:33.258058Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2023-11-30T22:56:33.253117Z", "last_refresh": "2023-11-30T23:04:39.558544Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2023-11-30T22:54:43.949497Z", "last_refresh": "2023-11-30T23:04:43.743520Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2023-11-30T22:58:52.105721Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2023-11-30T22:58:59.793467Z", "last_refresh": "2023-11-30T23:04:39.558809Z", "ports": [8800], "running": 2, "size": 2}}] 2023-11-30T23:05:08.806 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2023-11-30T23:05:09.808 DEBUG:teuthology.orchestra.run.smithi038:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:0dc074ce0b0b3b4f393f56dd32ef36884ebf45a9 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 3faf8b00-8fd3-11ee-95a2-87774f69a715 -- ceph orch ls -f json 2023-11-30T23:05:10.012 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:05:09 smithi167 conmon[87022]: audit 2023-11-30T23:05:08.368342+0000 mgr.smithi038.ldalxq (mgr.14182) 471 : audit [DBG] from='client.15046 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-11-30T23:05:10.012 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:05:09 smithi167 conmon[87022]: cluster 2023-11-30T23:05:08.565531+0000 mgr.smithi038.ldalxq (mgr.14182) 472 : cluster [DBG] pgmap v330: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2023-11-30T23:05:10.024 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:05:09 smithi038 conmon[81956]: audit 2023-11-30T23:05:08.368342+0000 mgr.smithi038.ldalxq (mgr.14182 2023-11-30T23:05:10.024 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:05:09 smithi038 conmon[81956]: ) 471 : audit [DBG] from='client.15046 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-11-30T23:05:10.024 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:05:09 smithi038 conmon[81956]: cluster 2023-11-30T23:05:08.565531+0000 mgr.smithi038.ldalxq (mgr.14182) 472 : cluster [DBG] pgmap v330: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2023-11-30T23:05:11.607 INFO:teuthology.orchestra.run.smithi038.stdout: 2023-11-30T23:05:11.607 INFO:teuthology.orchestra.run.smithi038.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2023-11-30T22:54:47.122758Z", "last_refresh": "2023-11-30T23:04:43.743252Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2023-11-30T22:54:42.674972Z", "last_refresh": "2023-11-30T23:04:39.558186Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2023-11-30T22:54:45.114633Z", "last_refresh": "2023-11-30T23:04:43.743389Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2023-11-30T22:58:56.317378Z service:ingress.nfs.foo [INFO] \"service was created\"", "2023-11-30T23:02:07.111634Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi167.buykdj on smithi167: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi167-buykdj\n/bin/podman: stderr Error: error inspecting object: no such container ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi167-buykdj\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi167.buykdj\n/bin/podman: stderr Error: error inspecting object: no such container ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi167.buykdj\nDeploy daemon haproxy.nfs.foo.smithi167.buykdj ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi167 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2023-11-30T22:59:44Z\" level=warning msg=\"failed, retrying in 1s ... (1/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-11-30T23:00:21Z\" level=warning msg=\"failed, retrying in 1s ... (2/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-11-30T23:00:59Z\" level=warning msg=\"failed, retrying in 1s ... (3/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: Error determining manifest MIME type for docker://haproxy:2.3: Error reading manifest sha256:058f434330f13dbbc46761f3e9a76af2408e9ec1898c9ac5a8baf00b42e756a9 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi167 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-11-30T23:04:36.497929Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi038.fwcakz on smithi038: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi038-fwcakz\n/bin/podman: stderr Error: error inspecting object: no such container ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi038-fwcakz\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi038.fwcakz\n/bin/podman: stderr Error: error inspecting object: no such container ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi038.fwcakz\nDeploy daemon haproxy.nfs.foo.smithi038.fwcakz ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi038 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2023-11-30T23:02:44Z\" level=warning msg=\"failed, retrying in 1s ... (1/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-11-30T23:03:21Z\" level=warning msg=\"failed, retrying in 1s ... (2/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-11-30T23:03:58Z\" level=warning msg=\"failed, retrying in 1s ... (3/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi038 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-11-30T23:04:36.502614Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi038.flofui on smithi038: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2023-11-30T23:04:36.503792Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi167.dxieha on smithi167: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.38/16"}, "status": {"created": "2023-11-30T22:58:56.312786Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.38/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2023-11-30T22:54:41.668043Z", "last_refresh": "2023-11-30T23:04:39.558331Z", "running": 2, "size": 2}}, {"events": ["2023-11-30T22:55:50.759225Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi038:172.21.15.38=smithi038", "smithi167:172.21.15.167=smithi167"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2023-11-30T22:55:50.756456Z", "last_refresh": "2023-11-30T23:04:39.558407Z", "running": 2, "size": 2}}, {"events": ["2023-11-30T22:58:56.311581Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2023-11-30T22:58:56.308071Z", "last_refresh": "2023-11-30T23:04:43.743907Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2023-11-30T22:54:46.136630Z", "last_refresh": "2023-11-30T23:04:39.558478Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2023-11-30T22:56:33.258058Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2023-11-30T22:56:33.253117Z", "last_refresh": "2023-11-30T23:04:39.558544Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2023-11-30T22:54:43.949497Z", "last_refresh": "2023-11-30T23:04:43.743520Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2023-11-30T22:58:52.105721Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2023-11-30T22:58:59.793467Z", "last_refresh": "2023-11-30T23:04:39.558809Z", "ports": [8800], "running": 2, "size": 2}}] 2023-11-30T23:05:12.012 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:05:11 smithi167 conmon[87022]: cluster 2023-11-30T23:05:10.566253+0000 mgr.smithi038.ldalxq (mgr.14182) 473 : cluster [DBG] pgmap v331: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2023-11-30T23:05:12.017 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:05:11 smithi038 conmon[81956]: cluster 2023-11-30T23:05:10.566253 2023-11-30T23:05:12.017 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:05:11 smithi038 conmon[81956]: +0000 mgr.smithi038.ldalxq (mgr.14182) 473 : cluster [DBG] pgmap v331: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2023-11-30T23:05:12.057 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2023-11-30T23:05:13.012 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:05:12 smithi167 conmon[87022]: audit 2023-11-30T23:05:11.602994+0000 mgr.smithi038.ldalxq (mgr.14182) 474 : audit [DBG] from='client.15050 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-11-30T23:05:13.012 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:05:12 smithi167 conmon[87022]: 2023-11-30T23:05:13.024 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:05:12 smithi038 conmon[81956]: audit 2023-11-30T23:05:11.602994+0000 mgr.smithi038.ldalxq (mgr.14182 2023-11-30T23:05:13.024 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:05:12 smithi038 conmon[81956]: ) 474 : audit [DBG] from='client.15050 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-11-30T23:05:13.058 DEBUG:teuthology.orchestra.run.smithi038:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:0dc074ce0b0b3b4f393f56dd32ef36884ebf45a9 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 3faf8b00-8fd3-11ee-95a2-87774f69a715 -- ceph orch ls -f json 2023-11-30T23:05:13.955 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:05:13 smithi038 conmon[81956]: cluster 2023-11-30T23:05:12.566840+0000 mgr.smithi038.ldalxq (mgr.14182) 475 : cluster [DBG] pgmap v332: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2023-11-30T23:05:14.011 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:05:13 smithi167 conmon[87022]: cluster 2023-11-30T23:05:12.566840+0000 mgr.smithi038.ldalxq (mgr.14182) 475 : cluster [DBG] pgmap v332: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2023-11-30T23:05:14.874 INFO:teuthology.orchestra.run.smithi038.stdout: 2023-11-30T23:05:14.874 INFO:teuthology.orchestra.run.smithi038.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2023-11-30T22:54:47.122758Z", "last_refresh": "2023-11-30T23:04:43.743252Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2023-11-30T22:54:42.674972Z", "last_refresh": "2023-11-30T23:04:39.558186Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2023-11-30T22:54:45.114633Z", "last_refresh": "2023-11-30T23:04:43.743389Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2023-11-30T22:58:56.317378Z service:ingress.nfs.foo [INFO] \"service was created\"", "2023-11-30T23:02:07.111634Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi167.buykdj on smithi167: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi167-buykdj\n/bin/podman: stderr Error: error inspecting object: no such container ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi167-buykdj\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi167.buykdj\n/bin/podman: stderr Error: error inspecting object: no such container ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi167.buykdj\nDeploy daemon haproxy.nfs.foo.smithi167.buykdj ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi167 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2023-11-30T22:59:44Z\" level=warning msg=\"failed, retrying in 1s ... (1/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-11-30T23:00:21Z\" level=warning msg=\"failed, retrying in 1s ... (2/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-11-30T23:00:59Z\" level=warning msg=\"failed, retrying in 1s ... (3/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: Error determining manifest MIME type for docker://haproxy:2.3: Error reading manifest sha256:058f434330f13dbbc46761f3e9a76af2408e9ec1898c9ac5a8baf00b42e756a9 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi167 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-11-30T23:04:36.497929Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi038.fwcakz on smithi038: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi038-fwcakz\n/bin/podman: stderr Error: error inspecting object: no such container ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi038-fwcakz\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi038.fwcakz\n/bin/podman: stderr Error: error inspecting object: no such container ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi038.fwcakz\nDeploy daemon haproxy.nfs.foo.smithi038.fwcakz ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi038 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2023-11-30T23:02:44Z\" level=warning msg=\"failed, retrying in 1s ... (1/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-11-30T23:03:21Z\" level=warning msg=\"failed, retrying in 1s ... (2/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-11-30T23:03:58Z\" level=warning msg=\"failed, retrying in 1s ... (3/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi038 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-11-30T23:04:36.502614Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi038.flofui on smithi038: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2023-11-30T23:04:36.503792Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi167.dxieha on smithi167: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.38/16"}, "status": {"created": "2023-11-30T22:58:56.312786Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.38/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2023-11-30T22:54:41.668043Z", "last_refresh": "2023-11-30T23:04:39.558331Z", "running": 2, "size": 2}}, {"events": ["2023-11-30T22:55:50.759225Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi038:172.21.15.38=smithi038", "smithi167:172.21.15.167=smithi167"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2023-11-30T22:55:50.756456Z", "last_refresh": "2023-11-30T23:04:39.558407Z", "running": 2, "size": 2}}, {"events": ["2023-11-30T22:58:56.311581Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2023-11-30T22:58:56.308071Z", "last_refresh": "2023-11-30T23:04:43.743907Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2023-11-30T22:54:46.136630Z", "last_refresh": "2023-11-30T23:04:39.558478Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2023-11-30T22:56:33.258058Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2023-11-30T22:56:33.253117Z", "last_refresh": "2023-11-30T23:04:39.558544Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2023-11-30T22:54:43.949497Z", "last_refresh": "2023-11-30T23:04:43.743520Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2023-11-30T22:58:52.105721Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2023-11-30T22:58:59.793467Z", "last_refresh": "2023-11-30T23:04:39.558809Z", "ports": [8800], "running": 2, "size": 2}}] 2023-11-30T23:05:15.308 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2023-11-30T23:05:16.012 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:05:15 smithi167 conmon[87022]: cluster 2023-11-30T23:05:14.567474+0000 mgr.smithi038.ldalxq (mgr.14182) 476 : cluster [DBG] pgmap v333: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2023-11-30T23:05:16.024 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:05:15 smithi038 conmon[81956]: cluster 2023-11-30T23:05:14.567474 2023-11-30T23:05:16.024 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:05:15 smithi038 conmon[81956]: +0000 mgr.smithi038.ldalxq (mgr.14182) 476 : cluster [DBG] pgmap v333: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2023-11-30T23:05:16.310 DEBUG:teuthology.orchestra.run.smithi038:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:0dc074ce0b0b3b4f393f56dd32ef36884ebf45a9 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 3faf8b00-8fd3-11ee-95a2-87774f69a715 -- ceph orch ls -f json 2023-11-30T23:05:16.927 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:05:16 smithi038 conmon[81956]: audit 2023-11-30T23:05:14.869498+0000 mgr.smithi038.ldalxq (mgr.14182) 477 : audit [DBG] 2023-11-30T23:05:16.927 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:05:16 smithi038 conmon[81956]: from='client.15054 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-11-30T23:05:17.011 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:05:16 smithi167 conmon[87022]: audit 2023-11-30T23:05:14.869498+0000 mgr.smithi038.ldalxq (mgr.14182) 477 : audit [DBG] from='client.15054 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-11-30T23:05:17.012 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:05:16 smithi167 conmon[87022]: 2023-11-30T23:05:17.740 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:05:17 smithi038 conmon[81956]: cluster 2023-11-30T23:05:16.568127+0000 mgr.smithi038.ldalxq (mgr.14182) 478 : cluster [DBG] pgmap v334: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2023-11-30T23:05:18.012 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:05:17 smithi167 conmon[87022]: cluster 2023-11-30T23:05:16.568127+0000 mgr.smithi038.ldalxq (mgr.14182) 478 : cluster [DBG] pgmap v334: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2023-11-30T23:05:18.126 INFO:teuthology.orchestra.run.smithi038.stdout: 2023-11-30T23:05:18.126 INFO:teuthology.orchestra.run.smithi038.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2023-11-30T22:54:47.122758Z", "last_refresh": "2023-11-30T23:04:43.743252Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2023-11-30T22:54:42.674972Z", "last_refresh": "2023-11-30T23:04:39.558186Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2023-11-30T22:54:45.114633Z", "last_refresh": "2023-11-30T23:04:43.743389Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2023-11-30T22:58:56.317378Z service:ingress.nfs.foo [INFO] \"service was created\"", "2023-11-30T23:02:07.111634Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi167.buykdj on smithi167: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi167-buykdj\n/bin/podman: stderr Error: error inspecting object: no such container ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi167-buykdj\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi167.buykdj\n/bin/podman: stderr Error: error inspecting object: no such container ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi167.buykdj\nDeploy daemon haproxy.nfs.foo.smithi167.buykdj ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi167 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2023-11-30T22:59:44Z\" level=warning msg=\"failed, retrying in 1s ... (1/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-11-30T23:00:21Z\" level=warning msg=\"failed, retrying in 1s ... (2/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-11-30T23:00:59Z\" level=warning msg=\"failed, retrying in 1s ... (3/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: Error determining manifest MIME type for docker://haproxy:2.3: Error reading manifest sha256:058f434330f13dbbc46761f3e9a76af2408e9ec1898c9ac5a8baf00b42e756a9 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi167 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-11-30T23:04:36.497929Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi038.fwcakz on smithi038: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi038-fwcakz\n/bin/podman: stderr Error: error inspecting object: no such container ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi038-fwcakz\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi038.fwcakz\n/bin/podman: stderr Error: error inspecting object: no such container ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi038.fwcakz\nDeploy daemon haproxy.nfs.foo.smithi038.fwcakz ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi038 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2023-11-30T23:02:44Z\" level=warning msg=\"failed, retrying in 1s ... (1/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-11-30T23:03:21Z\" level=warning msg=\"failed, retrying in 1s ... (2/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-11-30T23:03:58Z\" level=warning msg=\"failed, retrying in 1s ... (3/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi038 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-11-30T23:04:36.502614Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi038.flofui on smithi038: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2023-11-30T23:04:36.503792Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi167.dxieha on smithi167: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.38/16"}, "status": {"created": "2023-11-30T22:58:56.312786Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.38/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2023-11-30T22:54:41.668043Z", "last_refresh": "2023-11-30T23:04:39.558331Z", "running": 2, "size": 2}}, {"events": ["2023-11-30T22:55:50.759225Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi038:172.21.15.38=smithi038", "smithi167:172.21.15.167=smithi167"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2023-11-30T22:55:50.756456Z", "last_refresh": "2023-11-30T23:04:39.558407Z", "running": 2, "size": 2}}, {"events": ["2023-11-30T22:58:56.311581Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2023-11-30T22:58:56.308071Z", "last_refresh": "2023-11-30T23:04:43.743907Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2023-11-30T22:54:46.136630Z", "last_refresh": "2023-11-30T23:04:39.558478Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2023-11-30T22:56:33.258058Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2023-11-30T22:56:33.253117Z", "last_refresh": "2023-11-30T23:04:39.558544Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2023-11-30T22:54:43.949497Z", "last_refresh": "2023-11-30T23:04:43.743520Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2023-11-30T22:58:52.105721Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2023-11-30T22:58:59.793467Z", "last_refresh": "2023-11-30T23:04:39.558809Z", "ports": [8800], "running": 2, "size": 2}}] 2023-11-30T23:05:18.579 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2023-11-30T23:05:18.945 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:05:18 smithi038 conmon[81956]: audit 2023-11-30T23:05:18.122290 2023-11-30T23:05:18.945 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:05:18 smithi038 conmon[81956]: +0000 mgr.smithi038.ldalxq (mgr.14182) 479 : audit [DBG] from='client.15058 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-11-30T23:05:18.945 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:05:18 smithi038 conmon[81956]: cluster 2023-11-30T23:05:18.568613+0000 mgr.smithi038.ldalxq (mgr.14182) 480 : cluster [DBG] pgmap v335: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2023-11-30T23:05:19.012 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:05:18 smithi167 conmon[87022]: audit 2023-11-30T23:05:18.122290+0000 mgr.smithi038.ldalxq (mgr.14182) 479 : audit [DBG] from='client.15058 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-11-30T23:05:19.012 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:05:18 smithi167 conmon[87022]: cluster 2023-11-30T23:05:18. 2023-11-30T23:05:19.012 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:05:18 smithi167 conmon[87022]: 568613+0000 mgr.smithi038.ldalxq (mgr.14182) 480 : cluster [DBG] pgmap v335: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2023-11-30T23:05:19.579 DEBUG:teuthology.orchestra.run.smithi038:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:0dc074ce0b0b3b4f393f56dd32ef36884ebf45a9 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 3faf8b00-8fd3-11ee-95a2-87774f69a715 -- ceph orch ls -f json 2023-11-30T23:05:21.309 INFO:teuthology.orchestra.run.smithi038.stdout: 2023-11-30T23:05:21.309 INFO:teuthology.orchestra.run.smithi038.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2023-11-30T22:54:47.122758Z", "last_refresh": "2023-11-30T23:04:43.743252Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2023-11-30T22:54:42.674972Z", "last_refresh": "2023-11-30T23:04:39.558186Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2023-11-30T22:54:45.114633Z", "last_refresh": "2023-11-30T23:04:43.743389Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2023-11-30T22:58:56.317378Z service:ingress.nfs.foo [INFO] \"service was created\"", "2023-11-30T23:02:07.111634Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi167.buykdj on smithi167: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi167-buykdj\n/bin/podman: stderr Error: error inspecting object: no such container ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi167-buykdj\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi167.buykdj\n/bin/podman: stderr Error: error inspecting object: no such container ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi167.buykdj\nDeploy daemon haproxy.nfs.foo.smithi167.buykdj ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi167 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2023-11-30T22:59:44Z\" level=warning msg=\"failed, retrying in 1s ... (1/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-11-30T23:00:21Z\" level=warning msg=\"failed, retrying in 1s ... (2/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-11-30T23:00:59Z\" level=warning msg=\"failed, retrying in 1s ... (3/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: Error determining manifest MIME type for docker://haproxy:2.3: Error reading manifest sha256:058f434330f13dbbc46761f3e9a76af2408e9ec1898c9ac5a8baf00b42e756a9 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi167 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-11-30T23:04:36.497929Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi038.fwcakz on smithi038: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi038-fwcakz\n/bin/podman: stderr Error: error inspecting object: no such container ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi038-fwcakz\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi038.fwcakz\n/bin/podman: stderr Error: error inspecting object: no such container ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi038.fwcakz\nDeploy daemon haproxy.nfs.foo.smithi038.fwcakz ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi038 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2023-11-30T23:02:44Z\" level=warning msg=\"failed, retrying in 1s ... (1/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-11-30T23:03:21Z\" level=warning msg=\"failed, retrying in 1s ... (2/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-11-30T23:03:58Z\" level=warning msg=\"failed, retrying in 1s ... (3/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi038 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-11-30T23:04:36.502614Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi038.flofui on smithi038: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2023-11-30T23:04:36.503792Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi167.dxieha on smithi167: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.38/16"}, "status": {"created": "2023-11-30T22:58:56.312786Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.38/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2023-11-30T22:54:41.668043Z", "last_refresh": "2023-11-30T23:04:39.558331Z", "running": 2, "size": 2}}, {"events": ["2023-11-30T22:55:50.759225Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi038:172.21.15.38=smithi038", "smithi167:172.21.15.167=smithi167"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2023-11-30T22:55:50.756456Z", "last_refresh": "2023-11-30T23:04:39.558407Z", "running": 2, "size": 2}}, {"events": ["2023-11-30T22:58:56.311581Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2023-11-30T22:58:56.308071Z", "last_refresh": "2023-11-30T23:04:43.743907Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2023-11-30T22:54:46.136630Z", "last_refresh": "2023-11-30T23:04:39.558478Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2023-11-30T22:56:33.258058Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2023-11-30T22:56:33.253117Z", "last_refresh": "2023-11-30T23:04:39.558544Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2023-11-30T22:54:43.949497Z", "last_refresh": "2023-11-30T23:04:43.743520Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2023-11-30T22:58:52.105721Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2023-11-30T22:58:59.793467Z", "last_refresh": "2023-11-30T23:04:39.558809Z", "ports": [8800], "running": 2, "size": 2}}] 2023-11-30T23:05:21.731 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2023-11-30T23:05:22.012 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:05:21 smithi167 conmon[87022]: cluster 2023-11-30T23:05:20.569431+0000 mgr.smithi038.ldalxq (mgr.14182) 481 : cluster [DBG] pgmap v336: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2023-11-30T23:05:22.024 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:05:21 smithi038 conmon[81956]: cluster 2023-11-30T23:05:20.569431+0000 mgr.smithi038.ldalxq (mgr.14182) 481 : cluster [DBG] pgmap v336: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2023-11-30T23:05:22.732 DEBUG:teuthology.orchestra.run.smithi038:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:0dc074ce0b0b3b4f393f56dd32ef36884ebf45a9 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 3faf8b00-8fd3-11ee-95a2-87774f69a715 -- ceph orch ls -f json 2023-11-30T23:05:23.012 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:05:22 smithi167 conmon[87022]: audit 2023-11-30T23:05:21.304970+0000 mgr.smithi038.ldalxq (mgr.14182) 482 : audit [DBG] from='client.15062 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-11-30T23:05:23.024 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:05:22 smithi038 conmon[81956]: audit 2023-11-30T23:05:21.304970+0000 mgr.smithi038.ldalxq (mgr.14182) 482 2023-11-30T23:05:23.024 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:05:22 smithi038 conmon[81956]: : audit [DBG] from='client.15062 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-11-30T23:05:24.012 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:05:23 smithi167 conmon[87022]: cluster 2023-11-30T23:05:22.570064+0000 mgr.smithi038.ldalxq (mgr.14182) 483 : cluster [DBG] pgmap v337: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2023-11-30T23:05:24.024 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:05:23 smithi038 conmon[81956]: cluster 2023-11-30T23:05:22.570064+0000 mgr.smithi038.ldalxq (mgr.14182) 483 : cluster [DBG] pgmap v337: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2023-11-30T23:05:24.518 INFO:teuthology.orchestra.run.smithi038.stdout: 2023-11-30T23:05:24.519 INFO:teuthology.orchestra.run.smithi038.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2023-11-30T22:54:47.122758Z", "last_refresh": "2023-11-30T23:04:43.743252Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2023-11-30T22:54:42.674972Z", "last_refresh": "2023-11-30T23:04:39.558186Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2023-11-30T22:54:45.114633Z", "last_refresh": "2023-11-30T23:04:43.743389Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2023-11-30T22:58:56.317378Z service:ingress.nfs.foo [INFO] \"service was created\"", "2023-11-30T23:02:07.111634Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi167.buykdj on smithi167: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi167-buykdj\n/bin/podman: stderr Error: error inspecting object: no such container ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi167-buykdj\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi167.buykdj\n/bin/podman: stderr Error: error inspecting object: no such container ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi167.buykdj\nDeploy daemon haproxy.nfs.foo.smithi167.buykdj ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi167 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2023-11-30T22:59:44Z\" level=warning msg=\"failed, retrying in 1s ... (1/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-11-30T23:00:21Z\" level=warning msg=\"failed, retrying in 1s ... (2/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-11-30T23:00:59Z\" level=warning msg=\"failed, retrying in 1s ... (3/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: Error determining manifest MIME type for docker://haproxy:2.3: Error reading manifest sha256:058f434330f13dbbc46761f3e9a76af2408e9ec1898c9ac5a8baf00b42e756a9 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi167 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-11-30T23:04:36.497929Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi038.fwcakz on smithi038: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi038-fwcakz\n/bin/podman: stderr Error: error inspecting object: no such container ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi038-fwcakz\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi038.fwcakz\n/bin/podman: stderr Error: error inspecting object: no such container ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi038.fwcakz\nDeploy daemon haproxy.nfs.foo.smithi038.fwcakz ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi038 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2023-11-30T23:02:44Z\" level=warning msg=\"failed, retrying in 1s ... (1/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-11-30T23:03:21Z\" level=warning msg=\"failed, retrying in 1s ... (2/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-11-30T23:03:58Z\" level=warning msg=\"failed, retrying in 1s ... (3/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi038 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-11-30T23:04:36.502614Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi038.flofui on smithi038: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2023-11-30T23:04:36.503792Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi167.dxieha on smithi167: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.38/16"}, "status": {"created": "2023-11-30T22:58:56.312786Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.38/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2023-11-30T22:54:41.668043Z", "last_refresh": "2023-11-30T23:04:39.558331Z", "running": 2, "size": 2}}, {"events": ["2023-11-30T22:55:50.759225Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi038:172.21.15.38=smithi038", "smithi167:172.21.15.167=smithi167"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2023-11-30T22:55:50.756456Z", "last_refresh": "2023-11-30T23:04:39.558407Z", "running": 2, "size": 2}}, {"events": ["2023-11-30T22:58:56.311581Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2023-11-30T22:58:56.308071Z", "last_refresh": "2023-11-30T23:04:43.743907Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2023-11-30T22:54:46.136630Z", "last_refresh": "2023-11-30T23:04:39.558478Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2023-11-30T22:56:33.258058Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2023-11-30T22:56:33.253117Z", "last_refresh": "2023-11-30T23:04:39.558544Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2023-11-30T22:54:43.949497Z", "last_refresh": "2023-11-30T23:04:43.743520Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2023-11-30T22:58:52.105721Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2023-11-30T22:58:59.793467Z", "last_refresh": "2023-11-30T23:04:39.558809Z", "ports": [8800], "running": 2, "size": 2}}] 2023-11-30T23:05:24.982 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2023-11-30T23:05:25.983 DEBUG:teuthology.orchestra.run.smithi038:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:0dc074ce0b0b3b4f393f56dd32ef36884ebf45a9 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 3faf8b00-8fd3-11ee-95a2-87774f69a715 -- ceph orch ls -f json 2023-11-30T23:05:26.012 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:05:25 smithi167 conmon[87022]: audit 2023-11-30T23:05:24.514685+0000 mgr.smithi038.ldalxq (mgr.14182) 2023-11-30T23:05:26.012 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:05:25 smithi167 conmon[87022]: 484 : audit [DBG] from='client.15066 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-11-30T23:05:26.012 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:05:25 smithi167 conmon[87022]: cluster 2023-11-30T23:05:24.570648+0000 mgr.smithi038.ldalxq (mgr.14182) 485 : cluster [DBG] pgmap v338: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2023-11-30T23:05:26.015 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:05:25 smithi038 conmon[81956]: audit 2023-11-30T23:05:24.514685+0000 mgr.smithi038.ldalxq (mgr.14182) 484 : audit [DBG] from='client.15066 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-11-30T23:05:26.015 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:05:25 smithi038 conmon[81956]: cluster 2023-11-30T23:05:24.570648+0000 mgr.smithi038.ldalxq (mgr.14182) 485 : cluster [DBG] pgmap v338: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2023-11-30T23:05:27.790 INFO:teuthology.orchestra.run.smithi038.stdout: 2023-11-30T23:05:27.790 INFO:teuthology.orchestra.run.smithi038.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2023-11-30T22:54:47.122758Z", "last_refresh": "2023-11-30T23:04:43.743252Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2023-11-30T22:54:42.674972Z", "last_refresh": "2023-11-30T23:04:39.558186Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2023-11-30T22:54:45.114633Z", "last_refresh": "2023-11-30T23:04:43.743389Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2023-11-30T22:58:56.317378Z service:ingress.nfs.foo [INFO] \"service was created\"", "2023-11-30T23:02:07.111634Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi167.buykdj on smithi167: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi167-buykdj\n/bin/podman: stderr Error: error inspecting object: no such container ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi167-buykdj\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi167.buykdj\n/bin/podman: stderr Error: error inspecting object: no such container ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi167.buykdj\nDeploy daemon haproxy.nfs.foo.smithi167.buykdj ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi167 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2023-11-30T22:59:44Z\" level=warning msg=\"failed, retrying in 1s ... (1/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-11-30T23:00:21Z\" level=warning msg=\"failed, retrying in 1s ... (2/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-11-30T23:00:59Z\" level=warning msg=\"failed, retrying in 1s ... (3/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: Error determining manifest MIME type for docker://haproxy:2.3: Error reading manifest sha256:058f434330f13dbbc46761f3e9a76af2408e9ec1898c9ac5a8baf00b42e756a9 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi167 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-11-30T23:04:36.497929Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi038.fwcakz on smithi038: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi038-fwcakz\n/bin/podman: stderr Error: error inspecting object: no such container ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi038-fwcakz\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi038.fwcakz\n/bin/podman: stderr Error: error inspecting object: no such container ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi038.fwcakz\nDeploy daemon haproxy.nfs.foo.smithi038.fwcakz ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi038 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2023-11-30T23:02:44Z\" level=warning msg=\"failed, retrying in 1s ... (1/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-11-30T23:03:21Z\" level=warning msg=\"failed, retrying in 1s ... (2/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-11-30T23:03:58Z\" level=warning msg=\"failed, retrying in 1s ... (3/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi038 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-11-30T23:04:36.502614Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi038.flofui on smithi038: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2023-11-30T23:04:36.503792Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi167.dxieha on smithi167: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.38/16"}, "status": {"created": "2023-11-30T22:58:56.312786Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.38/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2023-11-30T22:54:41.668043Z", "last_refresh": "2023-11-30T23:04:39.558331Z", "running": 2, "size": 2}}, {"events": ["2023-11-30T22:55:50.759225Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi038:172.21.15.38=smithi038", "smithi167:172.21.15.167=smithi167"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2023-11-30T22:55:50.756456Z", "last_refresh": "2023-11-30T23:04:39.558407Z", "running": 2, "size": 2}}, {"events": ["2023-11-30T22:58:56.311581Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2023-11-30T22:58:56.308071Z", "last_refresh": "2023-11-30T23:04:43.743907Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2023-11-30T22:54:46.136630Z", "last_refresh": "2023-11-30T23:04:39.558478Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2023-11-30T22:56:33.258058Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2023-11-30T22:56:33.253117Z", "last_refresh": "2023-11-30T23:04:39.558544Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2023-11-30T22:54:43.949497Z", "last_refresh": "2023-11-30T23:04:43.743520Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2023-11-30T22:58:52.105721Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2023-11-30T22:58:59.793467Z", "last_refresh": "2023-11-30T23:04:39.558809Z", "ports": [8800], "running": 2, "size": 2}}] 2023-11-30T23:05:27.970 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:05:27 smithi038 conmon[81956]: cluster 2023-11-30T23:05:26.571290+0000 mgr.smithi038.ldalxq ( 2023-11-30T23:05:27.970 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:05:27 smithi038 conmon[81956]: mgr.14182) 486 : cluster [DBG] pgmap v339: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2023-11-30T23:05:28.013 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:05:27 smithi167 conmon[87022]: cluster 2023-11-30T23:05:26.571290+0000 mgr.smithi038.ldalxq (mgr.14182) 486 : cluster [DBG] pgmap v339: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2023-11-30T23:05:28.235 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2023-11-30T23:05:29.237 DEBUG:teuthology.orchestra.run.smithi038:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:0dc074ce0b0b3b4f393f56dd32ef36884ebf45a9 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 3faf8b00-8fd3-11ee-95a2-87774f69a715 -- ceph orch ls -f json 2023-11-30T23:05:29.969 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:05:29 smithi038 conmon[81956]: audit 2023-11-30T23:05:27.784588+0000 2023-11-30T23:05:29.969 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:05:29 smithi038 conmon[81956]: mgr.smithi038.ldalxq (mgr.14182) 487 : audit [DBG] from='client.15070 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-11-30T23:05:29.969 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:05:29 smithi038 conmon[81956]: cluster 2023-11-30T23:05:28.571915+0000 mgr.smithi038.ldalxq (mgr.14182) 488 : cluster [DBG] pgmap v340: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2023-11-30T23:05:30.012 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:05:29 smithi167 conmon[87022]: audit 2023-11-30T23:05:27.784588+0000 mgr.smithi038.ldalxq (mgr.14182) 487 : audit [DBG] from='client.15070 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-11-30T23:05:30.012 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:05:29 smithi167 conmon[87022]: cluster 2023-11-30T23:05:28.571915+0000 mgr.smithi038.ldalxq (mgr.14182) 488 : cluster [DBG] pgmap v340: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2023-11-30T23:05:31.021 INFO:teuthology.orchestra.run.smithi038.stdout: 2023-11-30T23:05:31.021 INFO:teuthology.orchestra.run.smithi038.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2023-11-30T22:54:47.122758Z", "last_refresh": "2023-11-30T23:04:43.743252Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2023-11-30T22:54:42.674972Z", "last_refresh": "2023-11-30T23:04:39.558186Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2023-11-30T22:54:45.114633Z", "last_refresh": "2023-11-30T23:04:43.743389Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2023-11-30T22:58:56.317378Z service:ingress.nfs.foo [INFO] \"service was created\"", "2023-11-30T23:02:07.111634Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi167.buykdj on smithi167: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi167-buykdj\n/bin/podman: stderr Error: error inspecting object: no such container ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi167-buykdj\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi167.buykdj\n/bin/podman: stderr Error: error inspecting object: no such container ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi167.buykdj\nDeploy daemon haproxy.nfs.foo.smithi167.buykdj ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi167 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2023-11-30T22:59:44Z\" level=warning msg=\"failed, retrying in 1s ... (1/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-11-30T23:00:21Z\" level=warning msg=\"failed, retrying in 1s ... (2/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-11-30T23:00:59Z\" level=warning msg=\"failed, retrying in 1s ... (3/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: Error determining manifest MIME type for docker://haproxy:2.3: Error reading manifest sha256:058f434330f13dbbc46761f3e9a76af2408e9ec1898c9ac5a8baf00b42e756a9 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi167 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-11-30T23:04:36.497929Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi038.fwcakz on smithi038: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi038-fwcakz\n/bin/podman: stderr Error: error inspecting object: no such container ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi038-fwcakz\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi038.fwcakz\n/bin/podman: stderr Error: error inspecting object: no such container ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi038.fwcakz\nDeploy daemon haproxy.nfs.foo.smithi038.fwcakz ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi038 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2023-11-30T23:02:44Z\" level=warning msg=\"failed, retrying in 1s ... (1/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-11-30T23:03:21Z\" level=warning msg=\"failed, retrying in 1s ... (2/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-11-30T23:03:58Z\" level=warning msg=\"failed, retrying in 1s ... (3/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi038 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-11-30T23:04:36.502614Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi038.flofui on smithi038: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2023-11-30T23:04:36.503792Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi167.dxieha on smithi167: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.38/16"}, "status": {"created": "2023-11-30T22:58:56.312786Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.38/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2023-11-30T22:54:41.668043Z", "last_refresh": "2023-11-30T23:04:39.558331Z", "running": 2, "size": 2}}, {"events": ["2023-11-30T22:55:50.759225Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi038:172.21.15.38=smithi038", "smithi167:172.21.15.167=smithi167"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2023-11-30T22:55:50.756456Z", "last_refresh": "2023-11-30T23:04:39.558407Z", "running": 2, "size": 2}}, {"events": ["2023-11-30T22:58:56.311581Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2023-11-30T22:58:56.308071Z", "last_refresh": "2023-11-30T23:04:43.743907Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2023-11-30T22:54:46.136630Z", "last_refresh": "2023-11-30T23:04:39.558478Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2023-11-30T22:56:33.258058Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2023-11-30T22:56:33.253117Z", "last_refresh": "2023-11-30T23:04:39.558544Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2023-11-30T22:54:43.949497Z", "last_refresh": "2023-11-30T23:04:43.743520Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2023-11-30T22:58:52.105721Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2023-11-30T22:58:59.793467Z", "last_refresh": "2023-11-30T23:04:39.558809Z", "ports": [8800], "running": 2, "size": 2}}] 2023-11-30T23:05:31.488 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2023-11-30T23:05:31.774 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:05:31 smithi038 conmon[81956]: cluster 2023-11-30T23:05:30.572688+0000 mgr.smithi038.ldalxq (mgr.14182) 489 : cluster 2023-11-30T23:05:31.774 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:05:31 smithi038 conmon[81956]: [DBG] pgmap v341: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2023-11-30T23:05:32.012 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:05:31 smithi167 conmon[87022]: cluster 2023-11-30T23:05:30.572688+0000 mgr.smithi038.ldalxq (mgr.14182) 489 : cluster [DBG] pgmap v341: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2023-11-30T23:05:32.490 DEBUG:teuthology.orchestra.run.smithi038:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:0dc074ce0b0b3b4f393f56dd32ef36884ebf45a9 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 3faf8b00-8fd3-11ee-95a2-87774f69a715 -- ceph orch ls -f json 2023-11-30T23:05:32.774 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:05:32 smithi038 conmon[81956]: audit 2023-11-30T23:05:31.017492+0000 mgr.smithi038.ldalxq (mgr. 2023-11-30T23:05:32.774 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:05:32 smithi038 conmon[81956]: 14182) 490 : audit [DBG] from='client.15074 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-11-30T23:05:32.774 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:05:32 smithi038 conmon[81956]: cluster 2023-11-30T23:05:32.573233+0000 mgr.smithi038.ldalxq (mgr.14182) 491 : cluster [DBG] pgmap v342: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2023-11-30T23:05:33.015 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:05:32 smithi167 conmon[87022]: audit 2023-11-30T23:05:31.017492+0000 mgr.smithi038.ldalxq (mgr.14182) 490 : audit [DBG] 2023-11-30T23:05:33.015 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:05:32 smithi167 conmon[87022]: from='client.15074 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-11-30T23:05:33.015 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:05:32 smithi167 conmon[87022]: cluster 2023-11-30T23:05:32.573233+0000 mgr.smithi038.ldalxq (mgr.14182) 491 : cluster [DBG] pgmap v342: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2023-11-30T23:05:34.208 INFO:teuthology.orchestra.run.smithi038.stdout: 2023-11-30T23:05:34.209 INFO:teuthology.orchestra.run.smithi038.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2023-11-30T22:54:47.122758Z", "last_refresh": "2023-11-30T23:04:43.743252Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2023-11-30T22:54:42.674972Z", "last_refresh": "2023-11-30T23:04:39.558186Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2023-11-30T22:54:45.114633Z", "last_refresh": "2023-11-30T23:04:43.743389Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2023-11-30T22:58:56.317378Z service:ingress.nfs.foo [INFO] \"service was created\"", "2023-11-30T23:02:07.111634Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi167.buykdj on smithi167: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi167-buykdj\n/bin/podman: stderr Error: error inspecting object: no such container ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi167-buykdj\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi167.buykdj\n/bin/podman: stderr Error: error inspecting object: no such container ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi167.buykdj\nDeploy daemon haproxy.nfs.foo.smithi167.buykdj ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi167 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2023-11-30T22:59:44Z\" level=warning msg=\"failed, retrying in 1s ... (1/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-11-30T23:00:21Z\" level=warning msg=\"failed, retrying in 1s ... (2/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-11-30T23:00:59Z\" level=warning msg=\"failed, retrying in 1s ... (3/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: Error determining manifest MIME type for docker://haproxy:2.3: Error reading manifest sha256:058f434330f13dbbc46761f3e9a76af2408e9ec1898c9ac5a8baf00b42e756a9 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi167 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-11-30T23:04:36.497929Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi038.fwcakz on smithi038: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi038-fwcakz\n/bin/podman: stderr Error: error inspecting object: no such container ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi038-fwcakz\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi038.fwcakz\n/bin/podman: stderr Error: error inspecting object: no such container ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi038.fwcakz\nDeploy daemon haproxy.nfs.foo.smithi038.fwcakz ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi038 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2023-11-30T23:02:44Z\" level=warning msg=\"failed, retrying in 1s ... (1/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-11-30T23:03:21Z\" level=warning msg=\"failed, retrying in 1s ... (2/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-11-30T23:03:58Z\" level=warning msg=\"failed, retrying in 1s ... (3/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi038 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-11-30T23:04:36.502614Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi038.flofui on smithi038: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2023-11-30T23:04:36.503792Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi167.dxieha on smithi167: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.38/16"}, "status": {"created": "2023-11-30T22:58:56.312786Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.38/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2023-11-30T22:54:41.668043Z", "last_refresh": "2023-11-30T23:04:39.558331Z", "running": 2, "size": 2}}, {"events": ["2023-11-30T22:55:50.759225Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi038:172.21.15.38=smithi038", "smithi167:172.21.15.167=smithi167"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2023-11-30T22:55:50.756456Z", "last_refresh": "2023-11-30T23:04:39.558407Z", "running": 2, "size": 2}}, {"events": ["2023-11-30T22:58:56.311581Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2023-11-30T22:58:56.308071Z", "last_refresh": "2023-11-30T23:04:43.743907Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2023-11-30T22:54:46.136630Z", "last_refresh": "2023-11-30T23:04:39.558478Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2023-11-30T22:56:33.258058Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2023-11-30T22:56:33.253117Z", "last_refresh": "2023-11-30T23:04:39.558544Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2023-11-30T22:54:43.949497Z", "last_refresh": "2023-11-30T23:04:43.743520Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2023-11-30T22:58:52.105721Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2023-11-30T22:58:59.793467Z", "last_refresh": "2023-11-30T23:04:39.558809Z", "ports": [8800], "running": 2, "size": 2}}] 2023-11-30T23:05:34.643 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2023-11-30T23:05:35.644 DEBUG:teuthology.orchestra.run.smithi038:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:0dc074ce0b0b3b4f393f56dd32ef36884ebf45a9 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 3faf8b00-8fd3-11ee-95a2-87774f69a715 -- ceph orch ls -f json 2023-11-30T23:05:36.012 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:05:35 smithi167 conmon[87022]: audit 2023-11-30T23:05:34.204259+0000 mgr.smithi038.ldalxq (mgr.14182) 492 : audit [DBG] from='client.15078 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-11-30T23:05:36.012 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:05:35 smithi167 conmon[87022]: cluster 2023-11-30T23:05:34.574115+0000 mgr.smithi038.ldalxq (mgr.14182) 493 : cluster [DBG] pgmap v343: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2023-11-30T23:05:36.024 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:05:35 smithi038 conmon[81956]: audit 2023-11-30T23:05:34.204259+0000 mgr.smithi038.ldalxq (mgr.14182) 492 : audit [DBG] from='client.15078 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-11-30T23:05:36.024 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:05:35 smithi038 conmon[81956]: cluster 2023-11-30T23:05:34.574115+0000 mgr.smithi038.ldalxq (mgr.14182) 493 : cluster [DBG] pgmap v343: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2023-11-30T23:05:37.364 INFO:teuthology.orchestra.run.smithi038.stdout: 2023-11-30T23:05:37.364 INFO:teuthology.orchestra.run.smithi038.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2023-11-30T22:54:47.122758Z", "last_refresh": "2023-11-30T23:04:43.743252Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2023-11-30T22:54:42.674972Z", "last_refresh": "2023-11-30T23:04:39.558186Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2023-11-30T22:54:45.114633Z", "last_refresh": "2023-11-30T23:04:43.743389Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2023-11-30T22:58:56.317378Z service:ingress.nfs.foo [INFO] \"service was created\"", "2023-11-30T23:02:07.111634Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi167.buykdj on smithi167: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi167-buykdj\n/bin/podman: stderr Error: error inspecting object: no such container ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi167-buykdj\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi167.buykdj\n/bin/podman: stderr Error: error inspecting object: no such container ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi167.buykdj\nDeploy daemon haproxy.nfs.foo.smithi167.buykdj ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi167 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2023-11-30T22:59:44Z\" level=warning msg=\"failed, retrying in 1s ... (1/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-11-30T23:00:21Z\" level=warning msg=\"failed, retrying in 1s ... (2/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-11-30T23:00:59Z\" level=warning msg=\"failed, retrying in 1s ... (3/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: Error determining manifest MIME type for docker://haproxy:2.3: Error reading manifest sha256:058f434330f13dbbc46761f3e9a76af2408e9ec1898c9ac5a8baf00b42e756a9 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi167 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-11-30T23:04:36.497929Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi038.fwcakz on smithi038: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi038-fwcakz\n/bin/podman: stderr Error: error inspecting object: no such container ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi038-fwcakz\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi038.fwcakz\n/bin/podman: stderr Error: error inspecting object: no such container ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi038.fwcakz\nDeploy daemon haproxy.nfs.foo.smithi038.fwcakz ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi038 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2023-11-30T23:02:44Z\" level=warning msg=\"failed, retrying in 1s ... (1/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-11-30T23:03:21Z\" level=warning msg=\"failed, retrying in 1s ... (2/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-11-30T23:03:58Z\" level=warning msg=\"failed, retrying in 1s ... (3/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi038 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-11-30T23:04:36.502614Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi038.flofui on smithi038: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2023-11-30T23:04:36.503792Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi167.dxieha on smithi167: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.38/16"}, "status": {"created": "2023-11-30T22:58:56.312786Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.38/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2023-11-30T22:54:41.668043Z", "last_refresh": "2023-11-30T23:04:39.558331Z", "running": 2, "size": 2}}, {"events": ["2023-11-30T22:55:50.759225Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi038:172.21.15.38=smithi038", "smithi167:172.21.15.167=smithi167"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2023-11-30T22:55:50.756456Z", "last_refresh": "2023-11-30T23:04:39.558407Z", "running": 2, "size": 2}}, {"events": ["2023-11-30T22:58:56.311581Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2023-11-30T22:58:56.308071Z", "last_refresh": "2023-11-30T23:04:43.743907Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2023-11-30T22:54:46.136630Z", "last_refresh": "2023-11-30T23:04:39.558478Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2023-11-30T22:56:33.258058Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2023-11-30T22:56:33.253117Z", "last_refresh": "2023-11-30T23:04:39.558544Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2023-11-30T22:54:43.949497Z", "last_refresh": "2023-11-30T23:04:43.743520Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2023-11-30T22:58:52.105721Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2023-11-30T22:58:59.793467Z", "last_refresh": "2023-11-30T23:04:39.558809Z", "ports": [8800], "running": 2, "size": 2}}] 2023-11-30T23:05:37.809 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2023-11-30T23:05:38.012 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:05:37 smithi167 conmon[87022]: cluster 2023-11-30T23:05:36.574785+0000 mgr.smithi038.ldalxq (mgr.14182) 494 : cluster [DBG] pgmap v344: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2023-11-30T23:05:38.027 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:05:37 smithi038 conmon[81956]: cluster 2023-11-30T23:05:36.574785 2023-11-30T23:05:38.027 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:05:37 smithi038 conmon[81956]: +0000 mgr.smithi038.ldalxq (mgr.14182) 494 : cluster [DBG] pgmap v344: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2023-11-30T23:05:38.811 DEBUG:teuthology.orchestra.run.smithi038:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:0dc074ce0b0b3b4f393f56dd32ef36884ebf45a9 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 3faf8b00-8fd3-11ee-95a2-87774f69a715 -- ceph orch ls -f json 2023-11-30T23:05:38.943 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:05:38 smithi038 conmon[81956]: audit 2023-11-30T23:05:37.360164+0000 mgr.smithi038.ldalxq (mgr.14182) 495 : audit [DBG] 2023-11-30T23:05:38.943 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:05:38 smithi038 conmon[81956]: from='client.15082 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-11-30T23:05:39.012 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:05:38 smithi167 conmon[87022]: audit 2023-11-30T23:05:37.360164+0000 mgr.smithi038.ldalxq (mgr.14182) 495 : audit [DBG] 2023-11-30T23:05:39.012 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:05:38 smithi167 conmon[87022]: from='client.15082 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-11-30T23:05:40.012 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:05:39 smithi167 conmon[87022]: cluster 2023-11-30T23:05:38.575379+0000 mgr.smithi038.ldalxq (mgr.14182) 496 : cluster [DBG] 2023-11-30T23:05:40.012 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:05:39 smithi167 conmon[87022]: pgmap v345: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2023-11-30T23:05:40.024 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:05:39 smithi038 conmon[81956]: cluster 2023-11-30T23:05:38.575379+0000 mgr.smithi038.ldalxq 2023-11-30T23:05:40.024 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:05:39 smithi038 conmon[81956]: (mgr.14182) 496 : cluster [DBG] pgmap v345: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2023-11-30T23:05:40.505 INFO:teuthology.orchestra.run.smithi038.stdout: 2023-11-30T23:05:40.505 INFO:teuthology.orchestra.run.smithi038.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2023-11-30T22:54:47.122758Z", "last_refresh": "2023-11-30T23:04:43.743252Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2023-11-30T22:54:42.674972Z", "last_refresh": "2023-11-30T23:04:39.558186Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2023-11-30T22:54:45.114633Z", "last_refresh": "2023-11-30T23:04:43.743389Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2023-11-30T22:58:56.317378Z service:ingress.nfs.foo [INFO] \"service was created\"", "2023-11-30T23:02:07.111634Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi167.buykdj on smithi167: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi167-buykdj\n/bin/podman: stderr Error: error inspecting object: no such container ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi167-buykdj\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi167.buykdj\n/bin/podman: stderr Error: error inspecting object: no such container ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi167.buykdj\nDeploy daemon haproxy.nfs.foo.smithi167.buykdj ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi167 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2023-11-30T22:59:44Z\" level=warning msg=\"failed, retrying in 1s ... (1/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-11-30T23:00:21Z\" level=warning msg=\"failed, retrying in 1s ... (2/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-11-30T23:00:59Z\" level=warning msg=\"failed, retrying in 1s ... (3/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: Error determining manifest MIME type for docker://haproxy:2.3: Error reading manifest sha256:058f434330f13dbbc46761f3e9a76af2408e9ec1898c9ac5a8baf00b42e756a9 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi167 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-11-30T23:04:36.497929Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi038.fwcakz on smithi038: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi038-fwcakz\n/bin/podman: stderr Error: error inspecting object: no such container ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi038-fwcakz\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi038.fwcakz\n/bin/podman: stderr Error: error inspecting object: no such container ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi038.fwcakz\nDeploy daemon haproxy.nfs.foo.smithi038.fwcakz ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi038 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2023-11-30T23:02:44Z\" level=warning msg=\"failed, retrying in 1s ... (1/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-11-30T23:03:21Z\" level=warning msg=\"failed, retrying in 1s ... (2/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-11-30T23:03:58Z\" level=warning msg=\"failed, retrying in 1s ... (3/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi038 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-11-30T23:04:36.502614Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi038.flofui on smithi038: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2023-11-30T23:04:36.503792Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi167.dxieha on smithi167: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.38/16"}, "status": {"created": "2023-11-30T22:58:56.312786Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.38/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2023-11-30T22:54:41.668043Z", "last_refresh": "2023-11-30T23:04:39.558331Z", "running": 2, "size": 2}}, {"events": ["2023-11-30T22:55:50.759225Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi038:172.21.15.38=smithi038", "smithi167:172.21.15.167=smithi167"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2023-11-30T22:55:50.756456Z", "last_refresh": "2023-11-30T23:04:39.558407Z", "running": 2, "size": 2}}, {"events": ["2023-11-30T22:58:56.311581Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2023-11-30T22:58:56.308071Z", "last_refresh": "2023-11-30T23:04:43.743907Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2023-11-30T22:54:46.136630Z", "last_refresh": "2023-11-30T23:04:39.558478Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2023-11-30T22:56:33.258058Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2023-11-30T22:56:33.253117Z", "last_refresh": "2023-11-30T23:04:39.558544Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2023-11-30T22:54:43.949497Z", "last_refresh": "2023-11-30T23:04:43.743520Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2023-11-30T22:58:52.105721Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2023-11-30T22:58:59.793467Z", "last_refresh": "2023-11-30T23:04:39.558809Z", "ports": [8800], "running": 2, "size": 2}}] 2023-11-30T23:05:40.974 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2023-11-30T23:05:41.975 DEBUG:teuthology.orchestra.run.smithi038:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:0dc074ce0b0b3b4f393f56dd32ef36884ebf45a9 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 3faf8b00-8fd3-11ee-95a2-87774f69a715 -- ceph orch ls -f json 2023-11-30T23:05:42.007 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:05:41 smithi038 conmon[81956]: audit 2023-11-30T23:05:40.501053+0000 mgr.smithi038.ldalxq (mgr.14182) 497 : audit [DBG] from='client.15086 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-11-30T23:05:42.007 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:05:41 smithi038 conmon[81956]: cluster 2023-11-30T23:05:40.576353+0000 mgr.smithi038.ldalxq (mgr.14182) 498 : cluster [DBG] pgmap v346: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2023-11-30T23:05:42.011 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:05:41 smithi167 conmon[87022]: audit 2023-11-30T23:05:40.501053+0000 mgr.smithi038.ldalxq (mgr.14182) 497 : audit [DBG] from='client.15086 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-11-30T23:05:42.012 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:05:41 smithi167 conmon[87022]: cluster 2023-11-30T23:05:40.576353+0000 mgr.smithi038.ldalxq (mgr.14182) 498 : cluster [DBG] pgmap v346: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2023-11-30T23:05:42.901 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:05:42 smithi038 conmon[81956]: cluster 2023-11-30T23:05:42.576848+0000 mgr.smithi038.ldalxq 2023-11-30T23:05:42.901 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:05:42 smithi038 conmon[81956]: (mgr.14182) 499 : cluster [DBG] pgmap v347: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2023-11-30T23:05:43.012 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:05:42 smithi167 conmon[87022]: cluster 2023-11-30T23:05:42.576848+0000 mgr.smithi038.ldalxq (mgr.14182) 499 : cluster [DBG] pgmap v347: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2023-11-30T23:05:43.749 INFO:teuthology.orchestra.run.smithi038.stdout: 2023-11-30T23:05:43.750 INFO:teuthology.orchestra.run.smithi038.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2023-11-30T22:54:47.122758Z", "last_refresh": "2023-11-30T23:04:43.743252Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2023-11-30T22:54:42.674972Z", "last_refresh": "2023-11-30T23:04:39.558186Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2023-11-30T22:54:45.114633Z", "last_refresh": "2023-11-30T23:04:43.743389Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2023-11-30T22:58:56.317378Z service:ingress.nfs.foo [INFO] \"service was created\"", "2023-11-30T23:02:07.111634Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi167.buykdj on smithi167: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi167-buykdj\n/bin/podman: stderr Error: error inspecting object: no such container ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi167-buykdj\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi167.buykdj\n/bin/podman: stderr Error: error inspecting object: no such container ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi167.buykdj\nDeploy daemon haproxy.nfs.foo.smithi167.buykdj ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi167 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2023-11-30T22:59:44Z\" level=warning msg=\"failed, retrying in 1s ... (1/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-11-30T23:00:21Z\" level=warning msg=\"failed, retrying in 1s ... (2/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-11-30T23:00:59Z\" level=warning msg=\"failed, retrying in 1s ... (3/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: Error determining manifest MIME type for docker://haproxy:2.3: Error reading manifest sha256:058f434330f13dbbc46761f3e9a76af2408e9ec1898c9ac5a8baf00b42e756a9 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi167 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-11-30T23:04:36.497929Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi038.fwcakz on smithi038: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi038-fwcakz\n/bin/podman: stderr Error: error inspecting object: no such container ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi038-fwcakz\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi038.fwcakz\n/bin/podman: stderr Error: error inspecting object: no such container ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi038.fwcakz\nDeploy daemon haproxy.nfs.foo.smithi038.fwcakz ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi038 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2023-11-30T23:02:44Z\" level=warning msg=\"failed, retrying in 1s ... (1/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-11-30T23:03:21Z\" level=warning msg=\"failed, retrying in 1s ... (2/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-11-30T23:03:58Z\" level=warning msg=\"failed, retrying in 1s ... (3/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi038 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-11-30T23:04:36.502614Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi038.flofui on smithi038: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2023-11-30T23:04:36.503792Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi167.dxieha on smithi167: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.38/16"}, "status": {"created": "2023-11-30T22:58:56.312786Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.38/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2023-11-30T22:54:41.668043Z", "last_refresh": "2023-11-30T23:04:39.558331Z", "running": 2, "size": 2}}, {"events": ["2023-11-30T22:55:50.759225Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi038:172.21.15.38=smithi038", "smithi167:172.21.15.167=smithi167"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2023-11-30T22:55:50.756456Z", "last_refresh": "2023-11-30T23:04:39.558407Z", "running": 2, "size": 2}}, {"events": ["2023-11-30T22:58:56.311581Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2023-11-30T22:58:56.308071Z", "last_refresh": "2023-11-30T23:04:43.743907Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2023-11-30T22:54:46.136630Z", "last_refresh": "2023-11-30T23:04:39.558478Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2023-11-30T22:56:33.258058Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2023-11-30T22:56:33.253117Z", "last_refresh": "2023-11-30T23:04:39.558544Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2023-11-30T22:54:43.949497Z", "last_refresh": "2023-11-30T23:04:43.743520Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2023-11-30T22:58:52.105721Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2023-11-30T22:58:59.793467Z", "last_refresh": "2023-11-30T23:04:39.558809Z", "ports": [8800], "running": 2, "size": 2}}] 2023-11-30T23:05:44.141 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2023-11-30T23:05:45.142 DEBUG:teuthology.orchestra.run.smithi038:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:0dc074ce0b0b3b4f393f56dd32ef36884ebf45a9 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 3faf8b00-8fd3-11ee-95a2-87774f69a715 -- ceph orch ls -f json 2023-11-30T23:05:45.894 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:05:45 smithi038 conmon[81956]: audit 2023-11-30T23:05:43.745506+0000 mgr.smithi038.ldalxq (mgr.14182) 500 : audit [DBG] from='client.15090 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-11-30T23:05:45.894 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:05:45 smithi038 conmon[81956]: cluster 2023-11-30T23:05:44.577489+0000 mgr.smithi038.ldalxq (mgr.14182) 501 : cluster [DBG] pgmap v348: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2023-11-30T23:05:46.012 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:05:45 smithi167 conmon[87022]: audit 2023-11-30T23:05:43.745506+0000 mgr.smithi038.ldalxq (mgr.14182) 500 : audit [DBG] 2023-11-30T23:05:46.012 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:05:45 smithi167 conmon[87022]: from='client.15090 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-11-30T23:05:46.012 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:05:45 smithi167 conmon[87022]: cluster 2023-11-30T23:05:44.577489+0000 mgr.smithi038.ldalxq (mgr.14182) 501 : cluster [DBG] pgmap v348: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2023-11-30T23:05:46.832 INFO:teuthology.orchestra.run.smithi038.stdout: 2023-11-30T23:05:46.832 INFO:teuthology.orchestra.run.smithi038.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2023-11-30T22:54:47.122758Z", "last_refresh": "2023-11-30T23:04:43.743252Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2023-11-30T22:54:42.674972Z", "last_refresh": "2023-11-30T23:04:39.558186Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2023-11-30T22:54:45.114633Z", "last_refresh": "2023-11-30T23:04:43.743389Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2023-11-30T22:58:56.317378Z service:ingress.nfs.foo [INFO] \"service was created\"", "2023-11-30T23:02:07.111634Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi167.buykdj on smithi167: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi167-buykdj\n/bin/podman: stderr Error: error inspecting object: no such container ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi167-buykdj\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi167.buykdj\n/bin/podman: stderr Error: error inspecting object: no such container ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi167.buykdj\nDeploy daemon haproxy.nfs.foo.smithi167.buykdj ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi167 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2023-11-30T22:59:44Z\" level=warning msg=\"failed, retrying in 1s ... (1/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-11-30T23:00:21Z\" level=warning msg=\"failed, retrying in 1s ... (2/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-11-30T23:00:59Z\" level=warning msg=\"failed, retrying in 1s ... (3/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: Error determining manifest MIME type for docker://haproxy:2.3: Error reading manifest sha256:058f434330f13dbbc46761f3e9a76af2408e9ec1898c9ac5a8baf00b42e756a9 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi167 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-11-30T23:04:36.497929Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi038.fwcakz on smithi038: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi038-fwcakz\n/bin/podman: stderr Error: error inspecting object: no such container ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi038-fwcakz\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi038.fwcakz\n/bin/podman: stderr Error: error inspecting object: no such container ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi038.fwcakz\nDeploy daemon haproxy.nfs.foo.smithi038.fwcakz ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi038 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2023-11-30T23:02:44Z\" level=warning msg=\"failed, retrying in 1s ... (1/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-11-30T23:03:21Z\" level=warning msg=\"failed, retrying in 1s ... (2/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-11-30T23:03:58Z\" level=warning msg=\"failed, retrying in 1s ... (3/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi038 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-11-30T23:04:36.502614Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi038.flofui on smithi038: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2023-11-30T23:04:36.503792Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi167.dxieha on smithi167: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.38/16"}, "status": {"created": "2023-11-30T22:58:56.312786Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.38/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2023-11-30T22:54:41.668043Z", "last_refresh": "2023-11-30T23:04:39.558331Z", "running": 2, "size": 2}}, {"events": ["2023-11-30T22:55:50.759225Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi038:172.21.15.38=smithi038", "smithi167:172.21.15.167=smithi167"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2023-11-30T22:55:50.756456Z", "last_refresh": "2023-11-30T23:04:39.558407Z", "running": 2, "size": 2}}, {"events": ["2023-11-30T22:58:56.311581Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2023-11-30T22:58:56.308071Z", "last_refresh": "2023-11-30T23:04:43.743907Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2023-11-30T22:54:46.136630Z", "last_refresh": "2023-11-30T23:04:39.558478Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2023-11-30T22:56:33.258058Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2023-11-30T22:56:33.253117Z", "last_refresh": "2023-11-30T23:04:39.558544Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2023-11-30T22:54:43.949497Z", "last_refresh": "2023-11-30T23:04:43.743520Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2023-11-30T22:58:52.105721Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2023-11-30T22:58:59.793467Z", "last_refresh": "2023-11-30T23:04:39.558809Z", "ports": [8800], "running": 2, "size": 2}}] 2023-11-30T23:05:47.304 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2023-11-30T23:05:48.012 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:05:47 smithi167 conmon[87022]: cluster 2023-11-30T23:05:46.578182+0000 mgr.smithi038.ldalxq (mgr.14182) 502 : cluster [DBG] pgmap v349: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2023-11-30T23:05:48.024 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:05:47 smithi038 conmon[81956]: cluster 2023-11-30T23:05:46.578182+0000 mgr.smithi038.ldalxq (mgr.14182) 502 : cluster [DBG] pgmap v349: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2023-11-30T23:05:48.305 DEBUG:teuthology.orchestra.run.smithi038:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:0dc074ce0b0b3b4f393f56dd32ef36884ebf45a9 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 3faf8b00-8fd3-11ee-95a2-87774f69a715 -- ceph orch ls -f json 2023-11-30T23:05:48.902 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:05:48 smithi038 conmon[81956]: audit 2023-11-30T23:05:46.827881+0000 mgr.smithi038.ldalxq (mgr.14182) 503 : 2023-11-30T23:05:48.902 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:05:48 smithi038 conmon[81956]: audit [DBG] from='client.15094 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-11-30T23:05:49.012 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:05:48 smithi167 conmon[87022]: audit 2023-11-30T23:05:46.827881+0000 mgr.smithi038.ldalxq (mgr.14182) 503 : audit [DBG] from='client.15094 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-11-30T23:05:50.012 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:05:49 smithi167 conmon[87022]: cluster 2023-11-30T23:05:48.578902+0000 mgr.smithi038.ldalxq (mgr.14182) 504 : cluster [DBG] pgmap v350: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2023-11-30T23:05:50.024 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:05:49 smithi038 conmon[81956]: cluster 2023-11-30T23:05:48.578902+0000 mgr.smithi038.ldalxq 2023-11-30T23:05:50.024 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:05:49 smithi038 conmon[81956]: (mgr.14182) 504 : cluster [DBG] pgmap v350: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2023-11-30T23:05:50.033 INFO:teuthology.orchestra.run.smithi038.stdout: 2023-11-30T23:05:50.033 INFO:teuthology.orchestra.run.smithi038.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2023-11-30T22:54:47.122758Z", "last_refresh": "2023-11-30T23:04:43.743252Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2023-11-30T22:54:42.674972Z", "last_refresh": "2023-11-30T23:04:39.558186Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2023-11-30T22:54:45.114633Z", "last_refresh": "2023-11-30T23:04:43.743389Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2023-11-30T22:58:56.317378Z service:ingress.nfs.foo [INFO] \"service was created\"", "2023-11-30T23:02:07.111634Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi167.buykdj on smithi167: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi167-buykdj\n/bin/podman: stderr Error: error inspecting object: no such container ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi167-buykdj\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi167.buykdj\n/bin/podman: stderr Error: error inspecting object: no such container ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi167.buykdj\nDeploy daemon haproxy.nfs.foo.smithi167.buykdj ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi167 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2023-11-30T22:59:44Z\" level=warning msg=\"failed, retrying in 1s ... (1/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-11-30T23:00:21Z\" level=warning msg=\"failed, retrying in 1s ... (2/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-11-30T23:00:59Z\" level=warning msg=\"failed, retrying in 1s ... (3/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: Error determining manifest MIME type for docker://haproxy:2.3: Error reading manifest sha256:058f434330f13dbbc46761f3e9a76af2408e9ec1898c9ac5a8baf00b42e756a9 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi167 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-11-30T23:04:36.497929Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi038.fwcakz on smithi038: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi038-fwcakz\n/bin/podman: stderr Error: error inspecting object: no such container ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi038-fwcakz\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi038.fwcakz\n/bin/podman: stderr Error: error inspecting object: no such container ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi038.fwcakz\nDeploy daemon haproxy.nfs.foo.smithi038.fwcakz ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi038 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2023-11-30T23:02:44Z\" level=warning msg=\"failed, retrying in 1s ... (1/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-11-30T23:03:21Z\" level=warning msg=\"failed, retrying in 1s ... (2/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-11-30T23:03:58Z\" level=warning msg=\"failed, retrying in 1s ... (3/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi038 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-11-30T23:04:36.502614Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi038.flofui on smithi038: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2023-11-30T23:04:36.503792Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi167.dxieha on smithi167: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.38/16"}, "status": {"created": "2023-11-30T22:58:56.312786Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.38/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2023-11-30T22:54:41.668043Z", "last_refresh": "2023-11-30T23:04:39.558331Z", "running": 2, "size": 2}}, {"events": ["2023-11-30T22:55:50.759225Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi038:172.21.15.38=smithi038", "smithi167:172.21.15.167=smithi167"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2023-11-30T22:55:50.756456Z", "last_refresh": "2023-11-30T23:04:39.558407Z", "running": 2, "size": 2}}, {"events": ["2023-11-30T22:58:56.311581Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2023-11-30T22:58:56.308071Z", "last_refresh": "2023-11-30T23:04:43.743907Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2023-11-30T22:54:46.136630Z", "last_refresh": "2023-11-30T23:04:39.558478Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2023-11-30T22:56:33.258058Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2023-11-30T22:56:33.253117Z", "last_refresh": "2023-11-30T23:04:39.558544Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2023-11-30T22:54:43.949497Z", "last_refresh": "2023-11-30T23:04:43.743520Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2023-11-30T22:58:52.105721Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2023-11-30T22:58:59.793467Z", "last_refresh": "2023-11-30T23:04:39.558809Z", "ports": [8800], "running": 2, "size": 2}}] 2023-11-30T23:05:50.467 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2023-11-30T23:05:51.468 DEBUG:teuthology.orchestra.run.smithi038:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:0dc074ce0b0b3b4f393f56dd32ef36884ebf45a9 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 3faf8b00-8fd3-11ee-95a2-87774f69a715 -- ceph orch ls -f json 2023-11-30T23:05:51.774 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:05:51 smithi038 conmon[81956]: audit 2023-11-30T23:05:50.029437+0000 mgr.smithi038.ldalxq (mgr.14182) 505 : audit [DBG] from='client.15098 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-11-30T23:05:51.774 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:05:51 smithi038 conmon[81956]: cluster 2023-11-30T23:05:50.579599+0000 mgr.smithi038.ldalxq (mgr.14182) 506 : cluster [DBG] pgmap v351: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2023-11-30T23:05:52.012 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:05:51 smithi167 conmon[87022]: audit 2023-11-30T23:05:50.029437+0000 mgr.smithi038.ldalxq (mgr.14182) 505 : audit [DBG] from='client.15098 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-11-30T23:05:52.012 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:05:51 smithi167 conmon[87022]: cluster 2023-11-30T23:05:50.579599+0000 mgr.smithi038.ldalxq (mgr.14182) 506 : cluster [DBG] pgmap v351: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2023-11-30T23:05:53.015 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:05:52 smithi167 conmon[87022]: cluster 2023-11-30T23:05:52.580123+0000 mgr.smithi038.ldalxq (mgr.14182) 507 : cluster [DBG] pgmap v352: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2023-11-30T23:05:53.015 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:05:52 smithi167 conmon[87022]: 2023-11-30T23:05:53.023 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:05:52 smithi038 conmon[81956]: cluster 2023-11-30T23:05:52.580123+0000 mgr.smithi038.ldalxq ( 2023-11-30T23:05:53.024 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:05:52 smithi038 conmon[81956]: mgr.14182) 507 : cluster [DBG] pgmap v352: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2023-11-30T23:05:53.188 INFO:teuthology.orchestra.run.smithi038.stdout: 2023-11-30T23:05:53.188 INFO:teuthology.orchestra.run.smithi038.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2023-11-30T22:54:47.122758Z", "last_refresh": "2023-11-30T23:04:43.743252Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2023-11-30T22:54:42.674972Z", "last_refresh": "2023-11-30T23:04:39.558186Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2023-11-30T22:54:45.114633Z", "last_refresh": "2023-11-30T23:04:43.743389Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2023-11-30T22:58:56.317378Z service:ingress.nfs.foo [INFO] \"service was created\"", "2023-11-30T23:02:07.111634Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi167.buykdj on smithi167: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi167-buykdj\n/bin/podman: stderr Error: error inspecting object: no such container ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi167-buykdj\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi167.buykdj\n/bin/podman: stderr Error: error inspecting object: no such container ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi167.buykdj\nDeploy daemon haproxy.nfs.foo.smithi167.buykdj ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi167 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2023-11-30T22:59:44Z\" level=warning msg=\"failed, retrying in 1s ... (1/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-11-30T23:00:21Z\" level=warning msg=\"failed, retrying in 1s ... (2/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-11-30T23:00:59Z\" level=warning msg=\"failed, retrying in 1s ... (3/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: Error determining manifest MIME type for docker://haproxy:2.3: Error reading manifest sha256:058f434330f13dbbc46761f3e9a76af2408e9ec1898c9ac5a8baf00b42e756a9 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi167 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-11-30T23:04:36.497929Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi038.fwcakz on smithi038: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi038-fwcakz\n/bin/podman: stderr Error: error inspecting object: no such container ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi038-fwcakz\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi038.fwcakz\n/bin/podman: stderr Error: error inspecting object: no such container ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi038.fwcakz\nDeploy daemon haproxy.nfs.foo.smithi038.fwcakz ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi038 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2023-11-30T23:02:44Z\" level=warning msg=\"failed, retrying in 1s ... (1/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-11-30T23:03:21Z\" level=warning msg=\"failed, retrying in 1s ... (2/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-11-30T23:03:58Z\" level=warning msg=\"failed, retrying in 1s ... (3/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi038 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-11-30T23:04:36.502614Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi038.flofui on smithi038: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2023-11-30T23:04:36.503792Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi167.dxieha on smithi167: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.38/16"}, "status": {"created": "2023-11-30T22:58:56.312786Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.38/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2023-11-30T22:54:41.668043Z", "last_refresh": "2023-11-30T23:04:39.558331Z", "running": 2, "size": 2}}, {"events": ["2023-11-30T22:55:50.759225Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi038:172.21.15.38=smithi038", "smithi167:172.21.15.167=smithi167"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2023-11-30T22:55:50.756456Z", "last_refresh": "2023-11-30T23:04:39.558407Z", "running": 2, "size": 2}}, {"events": ["2023-11-30T22:58:56.311581Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2023-11-30T22:58:56.308071Z", "last_refresh": "2023-11-30T23:04:43.743907Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2023-11-30T22:54:46.136630Z", "last_refresh": "2023-11-30T23:04:39.558478Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2023-11-30T22:56:33.258058Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2023-11-30T22:56:33.253117Z", "last_refresh": "2023-11-30T23:04:39.558544Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2023-11-30T22:54:43.949497Z", "last_refresh": "2023-11-30T23:04:43.743520Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2023-11-30T22:58:52.105721Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2023-11-30T22:58:59.793467Z", "last_refresh": "2023-11-30T23:04:39.558809Z", "ports": [8800], "running": 2, "size": 2}}] 2023-11-30T23:05:53.634 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2023-11-30T23:05:54.016 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:05:53 smithi167 conmon[87022]: audit 2023-11-30T23:05:53.184030+0000 mgr.smithi038.ldalxq (mgr.14182) 508 : audit 2023-11-30T23:05:54.016 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:05:53 smithi167 conmon[87022]: [DBG] from='client.15102 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-11-30T23:05:54.026 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:05:53 smithi038 conmon[81956]: audit 2023-11-30T23:05:53.184030+0000 mgr.smithi038.ldalxq (mgr.14182) 508 : audit [DBG] from='client.15102 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-11-30T23:05:54.635 DEBUG:teuthology.orchestra.run.smithi038:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:0dc074ce0b0b3b4f393f56dd32ef36884ebf45a9 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 3faf8b00-8fd3-11ee-95a2-87774f69a715 -- ceph orch ls -f json 2023-11-30T23:05:55.013 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:05:54 smithi167 conmon[87022]: cluster 2023-11-30T23:05:54.580936+0000 mgr.smithi038.ldalxq (mgr.14182) 509 : cluster [DBG] pgmap v353: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2023-11-30T23:05:55.024 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:05:54 smithi038 conmon[81956]: cluster 2023-11-30T23:05:54.580936+0000 mgr.smithi038.ldalxq 2023-11-30T23:05:55.024 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:05:54 smithi038 conmon[81956]: (mgr.14182) 509 : cluster [DBG] pgmap v353: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2023-11-30T23:05:56.445 INFO:teuthology.orchestra.run.smithi038.stdout: 2023-11-30T23:05:56.445 INFO:teuthology.orchestra.run.smithi038.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2023-11-30T22:54:47.122758Z", "last_refresh": "2023-11-30T23:04:43.743252Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2023-11-30T22:54:42.674972Z", "last_refresh": "2023-11-30T23:04:39.558186Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2023-11-30T22:54:45.114633Z", "last_refresh": "2023-11-30T23:04:43.743389Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2023-11-30T22:58:56.317378Z service:ingress.nfs.foo [INFO] \"service was created\"", "2023-11-30T23:02:07.111634Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi167.buykdj on smithi167: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi167-buykdj\n/bin/podman: stderr Error: error inspecting object: no such container ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi167-buykdj\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi167.buykdj\n/bin/podman: stderr Error: error inspecting object: no such container ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi167.buykdj\nDeploy daemon haproxy.nfs.foo.smithi167.buykdj ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi167 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2023-11-30T22:59:44Z\" level=warning msg=\"failed, retrying in 1s ... (1/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-11-30T23:00:21Z\" level=warning msg=\"failed, retrying in 1s ... (2/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-11-30T23:00:59Z\" level=warning msg=\"failed, retrying in 1s ... (3/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: Error determining manifest MIME type for docker://haproxy:2.3: Error reading manifest sha256:058f434330f13dbbc46761f3e9a76af2408e9ec1898c9ac5a8baf00b42e756a9 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi167 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-11-30T23:04:36.497929Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi038.fwcakz on smithi038: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi038-fwcakz\n/bin/podman: stderr Error: error inspecting object: no such container ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi038-fwcakz\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi038.fwcakz\n/bin/podman: stderr Error: error inspecting object: no such container ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi038.fwcakz\nDeploy daemon haproxy.nfs.foo.smithi038.fwcakz ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi038 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2023-11-30T23:02:44Z\" level=warning msg=\"failed, retrying in 1s ... (1/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-11-30T23:03:21Z\" level=warning msg=\"failed, retrying in 1s ... (2/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-11-30T23:03:58Z\" level=warning msg=\"failed, retrying in 1s ... (3/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi038 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-11-30T23:04:36.502614Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi038.flofui on smithi038: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2023-11-30T23:04:36.503792Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi167.dxieha on smithi167: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.38/16"}, "status": {"created": "2023-11-30T22:58:56.312786Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.38/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2023-11-30T22:54:41.668043Z", "last_refresh": "2023-11-30T23:04:39.558331Z", "running": 2, "size": 2}}, {"events": ["2023-11-30T22:55:50.759225Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi038:172.21.15.38=smithi038", "smithi167:172.21.15.167=smithi167"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2023-11-30T22:55:50.756456Z", "last_refresh": "2023-11-30T23:04:39.558407Z", "running": 2, "size": 2}}, {"events": ["2023-11-30T22:58:56.311581Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2023-11-30T22:58:56.308071Z", "last_refresh": "2023-11-30T23:04:43.743907Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2023-11-30T22:54:46.136630Z", "last_refresh": "2023-11-30T23:04:39.558478Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2023-11-30T22:56:33.258058Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2023-11-30T22:56:33.253117Z", "last_refresh": "2023-11-30T23:04:39.558544Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2023-11-30T22:54:43.949497Z", "last_refresh": "2023-11-30T23:04:43.743520Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2023-11-30T22:58:52.105721Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2023-11-30T22:58:59.793467Z", "last_refresh": "2023-11-30T23:04:39.558809Z", "ports": [8800], "running": 2, "size": 2}}] 2023-11-30T23:05:56.988 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2023-11-30T23:05:57.989 DEBUG:teuthology.orchestra.run.smithi038:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:0dc074ce0b0b3b4f393f56dd32ef36884ebf45a9 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 3faf8b00-8fd3-11ee-95a2-87774f69a715 -- ceph orch ls -f json 2023-11-30T23:05:58.012 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:05:57 smithi167 conmon[87022]: audit 2023-11-30T23:05:56.441602+0000 mgr.smithi038.ldalxq (mgr.14182) 510 : audit [DBG] from='client.15106 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-11-30T23:05:58.012 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:05:57 smithi167 conmon[87022]: cluster 2023-11-30T23:05:56.581596+0000 mgr.smithi038.ldalxq (mgr.14182) 511 : cluster [DBG] pgmap v354: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2023-11-30T23:05:58.020 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:05:57 smithi038 conmon[81956]: audit 2023-11-30T23:05:56.441602+0000 mgr.smithi038.ldalxq ( 2023-11-30T23:05:58.020 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:05:57 smithi038 conmon[81956]: mgr.14182) 510 : audit [DBG] from='client.15106 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-11-30T23:05:58.020 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:05:57 smithi038 conmon[81956]: cluster 2023-11-30T23:05:56.581596+0000 mgr.smithi038.ldalxq (mgr.14182) 511 : cluster [DBG] pgmap v354: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2023-11-30T23:05:59.669 INFO:teuthology.orchestra.run.smithi038.stdout: 2023-11-30T23:05:59.669 INFO:teuthology.orchestra.run.smithi038.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2023-11-30T22:54:47.122758Z", "last_refresh": "2023-11-30T23:04:43.743252Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2023-11-30T22:54:42.674972Z", "last_refresh": "2023-11-30T23:04:39.558186Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2023-11-30T22:54:45.114633Z", "last_refresh": "2023-11-30T23:04:43.743389Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2023-11-30T22:58:56.317378Z service:ingress.nfs.foo [INFO] \"service was created\"", "2023-11-30T23:02:07.111634Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi167.buykdj on smithi167: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi167-buykdj\n/bin/podman: stderr Error: error inspecting object: no such container ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi167-buykdj\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi167.buykdj\n/bin/podman: stderr Error: error inspecting object: no such container ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi167.buykdj\nDeploy daemon haproxy.nfs.foo.smithi167.buykdj ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi167 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2023-11-30T22:59:44Z\" level=warning msg=\"failed, retrying in 1s ... (1/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-11-30T23:00:21Z\" level=warning msg=\"failed, retrying in 1s ... (2/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-11-30T23:00:59Z\" level=warning msg=\"failed, retrying in 1s ... (3/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: Error determining manifest MIME type for docker://haproxy:2.3: Error reading manifest sha256:058f434330f13dbbc46761f3e9a76af2408e9ec1898c9ac5a8baf00b42e756a9 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi167 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-11-30T23:04:36.497929Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi038.fwcakz on smithi038: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi038-fwcakz\n/bin/podman: stderr Error: error inspecting object: no such container ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi038-fwcakz\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi038.fwcakz\n/bin/podman: stderr Error: error inspecting object: no such container ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi038.fwcakz\nDeploy daemon haproxy.nfs.foo.smithi038.fwcakz ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi038 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2023-11-30T23:02:44Z\" level=warning msg=\"failed, retrying in 1s ... (1/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-11-30T23:03:21Z\" level=warning msg=\"failed, retrying in 1s ... (2/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-11-30T23:03:58Z\" level=warning msg=\"failed, retrying in 1s ... (3/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi038 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-11-30T23:04:36.502614Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi038.flofui on smithi038: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2023-11-30T23:04:36.503792Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi167.dxieha on smithi167: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.38/16"}, "status": {"created": "2023-11-30T22:58:56.312786Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.38/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2023-11-30T22:54:41.668043Z", "last_refresh": "2023-11-30T23:04:39.558331Z", "running": 2, "size": 2}}, {"events": ["2023-11-30T22:55:50.759225Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi038:172.21.15.38=smithi038", "smithi167:172.21.15.167=smithi167"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2023-11-30T22:55:50.756456Z", "last_refresh": "2023-11-30T23:04:39.558407Z", "running": 2, "size": 2}}, {"events": ["2023-11-30T22:58:56.311581Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2023-11-30T22:58:56.308071Z", "last_refresh": "2023-11-30T23:04:43.743907Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2023-11-30T22:54:46.136630Z", "last_refresh": "2023-11-30T23:04:39.558478Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2023-11-30T22:56:33.258058Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2023-11-30T22:56:33.253117Z", "last_refresh": "2023-11-30T23:04:39.558544Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2023-11-30T22:54:43.949497Z", "last_refresh": "2023-11-30T23:04:43.743520Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2023-11-30T22:58:52.105721Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2023-11-30T22:58:59.793467Z", "last_refresh": "2023-11-30T23:04:39.558809Z", "ports": [8800], "running": 2, "size": 2}}] 2023-11-30T23:06:00.012 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:05:59 smithi167 conmon[87022]: cluster 2023-11-30T23:05:58.582334+0000 mgr.smithi038.ldalxq (mgr.14182) 512 : cluster [DBG] pgmap v355: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2023-11-30T23:06:00.024 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:05:59 smithi038 conmon[81956]: cluster 2023-11-30T23:05: 2023-11-30T23:06:00.024 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:05:59 smithi038 conmon[81956]: 58.582334+0000 mgr.smithi038.ldalxq (mgr.14182) 512 : cluster [DBG] pgmap v355: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2023-11-30T23:06:00.150 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2023-11-30T23:06:01.013 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:06:00 smithi167 conmon[87022]: audit 2023-11-30T23:05:59.665036+0000 mgr.smithi038.ldalxq (mgr.14182) 513 : audit [DBG] from='client.15110 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-11-30T23:06:01.024 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:06:00 smithi038 conmon[81956]: audit 2023-11-30T23:05:59.665036+0000 mgr.smithi038.ldalxq (mgr. 2023-11-30T23:06:01.024 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:06:00 smithi038 conmon[81956]: 14182) 513 : audit [DBG] from='client.15110 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-11-30T23:06:01.151 DEBUG:teuthology.orchestra.run.smithi038:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:0dc074ce0b0b3b4f393f56dd32ef36884ebf45a9 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 3faf8b00-8fd3-11ee-95a2-87774f69a715 -- ceph orch ls -f json 2023-11-30T23:06:02.012 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:06:01 smithi167 conmon[87022]: cluster 2023-11-30T23:06:00.583135+0000 mgr.smithi038.ldalxq (mgr.14182) 514 : cluster [DBG] pgmap v356: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2023-11-30T23:06:02.024 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:06:01 smithi038 conmon[81956]: cluster 2023-11-30T23:06:00.583135+0000 mgr.smithi038.ldalxq (mgr.14182) 514 : cluster [DBG] pgmap v356: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2023-11-30T23:06:02.977 INFO:teuthology.orchestra.run.smithi038.stdout: 2023-11-30T23:06:02.978 INFO:teuthology.orchestra.run.smithi038.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2023-11-30T22:54:47.122758Z", "last_refresh": "2023-11-30T23:04:43.743252Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2023-11-30T22:54:42.674972Z", "last_refresh": "2023-11-30T23:04:39.558186Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2023-11-30T22:54:45.114633Z", "last_refresh": "2023-11-30T23:04:43.743389Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2023-11-30T22:58:56.317378Z service:ingress.nfs.foo [INFO] \"service was created\"", "2023-11-30T23:02:07.111634Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi167.buykdj on smithi167: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi167-buykdj\n/bin/podman: stderr Error: error inspecting object: no such container ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi167-buykdj\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi167.buykdj\n/bin/podman: stderr Error: error inspecting object: no such container ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi167.buykdj\nDeploy daemon haproxy.nfs.foo.smithi167.buykdj ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi167 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2023-11-30T22:59:44Z\" level=warning msg=\"failed, retrying in 1s ... (1/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-11-30T23:00:21Z\" level=warning msg=\"failed, retrying in 1s ... (2/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-11-30T23:00:59Z\" level=warning msg=\"failed, retrying in 1s ... (3/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: Error determining manifest MIME type for docker://haproxy:2.3: Error reading manifest sha256:058f434330f13dbbc46761f3e9a76af2408e9ec1898c9ac5a8baf00b42e756a9 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi167 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-11-30T23:04:36.497929Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi038.fwcakz on smithi038: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi038-fwcakz\n/bin/podman: stderr Error: error inspecting object: no such container ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi038-fwcakz\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi038.fwcakz\n/bin/podman: stderr Error: error inspecting object: no such container ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi038.fwcakz\nDeploy daemon haproxy.nfs.foo.smithi038.fwcakz ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi038 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2023-11-30T23:02:44Z\" level=warning msg=\"failed, retrying in 1s ... (1/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-11-30T23:03:21Z\" level=warning msg=\"failed, retrying in 1s ... (2/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-11-30T23:03:58Z\" level=warning msg=\"failed, retrying in 1s ... (3/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi038 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-11-30T23:04:36.502614Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi038.flofui on smithi038: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2023-11-30T23:04:36.503792Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi167.dxieha on smithi167: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.38/16"}, "status": {"created": "2023-11-30T22:58:56.312786Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.38/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2023-11-30T22:54:41.668043Z", "last_refresh": "2023-11-30T23:04:39.558331Z", "running": 2, "size": 2}}, {"events": ["2023-11-30T22:55:50.759225Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi038:172.21.15.38=smithi038", "smithi167:172.21.15.167=smithi167"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2023-11-30T22:55:50.756456Z", "last_refresh": "2023-11-30T23:04:39.558407Z", "running": 2, "size": 2}}, {"events": ["2023-11-30T22:58:56.311581Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2023-11-30T22:58:56.308071Z", "last_refresh": "2023-11-30T23:04:43.743907Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2023-11-30T22:54:46.136630Z", "last_refresh": "2023-11-30T23:04:39.558478Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2023-11-30T22:56:33.258058Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2023-11-30T22:56:33.253117Z", "last_refresh": "2023-11-30T23:04:39.558544Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2023-11-30T22:54:43.949497Z", "last_refresh": "2023-11-30T23:04:43.743520Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2023-11-30T22:58:52.105721Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2023-11-30T22:58:59.793467Z", "last_refresh": "2023-11-30T23:04:39.558809Z", "ports": [8800], "running": 2, "size": 2}}] 2023-11-30T23:06:02.999 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:06:02 smithi038 conmon[81956]: cluster 2023-11-30T23:06:02.583793+0000 2023-11-30T23:06:02.999 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:06:02 smithi038 conmon[81956]: mgr.smithi038.ldalxq (mgr.14182) 515 : cluster [DBG] pgmap v357: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2023-11-30T23:06:03.012 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:06:02 smithi167 conmon[87022]: cluster 2023-11-30T23:06:02.583793+0000 mgr.smithi038.ldalxq (mgr.14182) 515 : cluster [DBG] pgmap v357: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2023-11-30T23:06:03.412 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2023-11-30T23:06:04.012 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:06:03 smithi167 conmon[87022]: audit 2023-11-30T23:06:02.973512+0000 mgr.smithi038.ldalxq (mgr.14182) 516 : audit [DBG] from='client.15114 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-11-30T23:06:04.024 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:06:03 smithi038 conmon[81956]: audit 2023-11-30T23:06:02.973512+0000 mgr.smithi038.ldalxq ( 2023-11-30T23:06:04.024 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:06:03 smithi038 conmon[81956]: mgr.14182) 516 : audit [DBG] from='client.15114 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-11-30T23:06:04.413 DEBUG:teuthology.orchestra.run.smithi038:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:0dc074ce0b0b3b4f393f56dd32ef36884ebf45a9 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 3faf8b00-8fd3-11ee-95a2-87774f69a715 -- ceph orch ls -f json 2023-11-30T23:06:04.983 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:06:04 smithi038 conmon[81956]: cluster 2023-11-30T23:06:04.584612+0000 mgr.smithi038.ldalxq 2023-11-30T23:06:04.983 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:06:04 smithi038 conmon[81956]: (mgr.14182) 517 : cluster [DBG] pgmap v358: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2023-11-30T23:06:05.012 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:06:04 smithi167 conmon[87022]: cluster 2023-11-30T23:06:04.584612+0000 mgr.smithi038.ldalxq (mgr.14182) 517 : cluster [DBG] pgmap v358: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2023-11-30T23:06:06.163 INFO:teuthology.orchestra.run.smithi038.stdout: 2023-11-30T23:06:06.163 INFO:teuthology.orchestra.run.smithi038.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2023-11-30T22:54:47.122758Z", "last_refresh": "2023-11-30T23:04:43.743252Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2023-11-30T22:54:42.674972Z", "last_refresh": "2023-11-30T23:04:39.558186Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2023-11-30T22:54:45.114633Z", "last_refresh": "2023-11-30T23:04:43.743389Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2023-11-30T22:58:56.317378Z service:ingress.nfs.foo [INFO] \"service was created\"", "2023-11-30T23:02:07.111634Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi167.buykdj on smithi167: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi167-buykdj\n/bin/podman: stderr Error: error inspecting object: no such container ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi167-buykdj\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi167.buykdj\n/bin/podman: stderr Error: error inspecting object: no such container ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi167.buykdj\nDeploy daemon haproxy.nfs.foo.smithi167.buykdj ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi167 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2023-11-30T22:59:44Z\" level=warning msg=\"failed, retrying in 1s ... (1/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-11-30T23:00:21Z\" level=warning msg=\"failed, retrying in 1s ... (2/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-11-30T23:00:59Z\" level=warning msg=\"failed, retrying in 1s ... (3/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: Error determining manifest MIME type for docker://haproxy:2.3: Error reading manifest sha256:058f434330f13dbbc46761f3e9a76af2408e9ec1898c9ac5a8baf00b42e756a9 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi167 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-11-30T23:04:36.497929Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi038.fwcakz on smithi038: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi038-fwcakz\n/bin/podman: stderr Error: error inspecting object: no such container ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi038-fwcakz\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi038.fwcakz\n/bin/podman: stderr Error: error inspecting object: no such container ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi038.fwcakz\nDeploy daemon haproxy.nfs.foo.smithi038.fwcakz ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi038 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2023-11-30T23:02:44Z\" level=warning msg=\"failed, retrying in 1s ... (1/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-11-30T23:03:21Z\" level=warning msg=\"failed, retrying in 1s ... (2/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-11-30T23:03:58Z\" level=warning msg=\"failed, retrying in 1s ... (3/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi038 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-11-30T23:04:36.502614Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi038.flofui on smithi038: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2023-11-30T23:04:36.503792Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi167.dxieha on smithi167: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.38/16"}, "status": {"created": "2023-11-30T22:58:56.312786Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.38/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2023-11-30T22:54:41.668043Z", "last_refresh": "2023-11-30T23:04:39.558331Z", "running": 2, "size": 2}}, {"events": ["2023-11-30T22:55:50.759225Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi038:172.21.15.38=smithi038", "smithi167:172.21.15.167=smithi167"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2023-11-30T22:55:50.756456Z", "last_refresh": "2023-11-30T23:04:39.558407Z", "running": 2, "size": 2}}, {"events": ["2023-11-30T22:58:56.311581Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2023-11-30T22:58:56.308071Z", "last_refresh": "2023-11-30T23:04:43.743907Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2023-11-30T22:54:46.136630Z", "last_refresh": "2023-11-30T23:04:39.558478Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2023-11-30T22:56:33.258058Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2023-11-30T22:56:33.253117Z", "last_refresh": "2023-11-30T23:04:39.558544Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2023-11-30T22:54:43.949497Z", "last_refresh": "2023-11-30T23:04:43.743520Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2023-11-30T22:58:52.105721Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2023-11-30T22:58:59.793467Z", "last_refresh": "2023-11-30T23:04:39.558809Z", "ports": [8800], "running": 2, "size": 2}}] 2023-11-30T23:06:06.579 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2023-11-30T23:06:07.580 DEBUG:teuthology.orchestra.run.smithi038:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:0dc074ce0b0b3b4f393f56dd32ef36884ebf45a9 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 3faf8b00-8fd3-11ee-95a2-87774f69a715 -- ceph orch ls -f json 2023-11-30T23:06:08.013 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:06:07 smithi167 conmon[87022]: audit 2023-11-30T23:06:06.158844+0000 mgr.smithi038.ldalxq (mgr.14182) 518 : audit [DBG] from='client.15118 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-11-30T23:06:08.013 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:06:07 smithi167 conmon[87022]: cluster 2023-11-30T23:06:06.585562+0000 mgr.smithi038.ldalxq (mgr.14182) 519 : cluster [DBG] pgmap v359: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2023-11-30T23:06:08.024 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:06:07 smithi038 conmon[81956]: audit 2023-11-30T23:06:06.158844+0000 mgr.smithi038.ldalxq (mgr.14182) 518 : audit [DBG] from='client.15118 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-11-30T23:06:08.024 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:06:07 smithi038 conmon[81956]: cluster 2023-11-30T23:06:06.585562+0000 mgr.smithi038.ldalxq (mgr.14182) 519 : cluster [DBG] pgmap v359: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2023-11-30T23:06:09.263 INFO:teuthology.orchestra.run.smithi038.stdout: 2023-11-30T23:06:09.263 INFO:teuthology.orchestra.run.smithi038.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2023-11-30T22:54:47.122758Z", "last_refresh": "2023-11-30T23:04:43.743252Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2023-11-30T22:54:42.674972Z", "last_refresh": "2023-11-30T23:04:39.558186Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2023-11-30T22:54:45.114633Z", "last_refresh": "2023-11-30T23:04:43.743389Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2023-11-30T22:58:56.317378Z service:ingress.nfs.foo [INFO] \"service was created\"", "2023-11-30T23:02:07.111634Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi167.buykdj on smithi167: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi167-buykdj\n/bin/podman: stderr Error: error inspecting object: no such container ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi167-buykdj\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi167.buykdj\n/bin/podman: stderr Error: error inspecting object: no such container ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi167.buykdj\nDeploy daemon haproxy.nfs.foo.smithi167.buykdj ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi167 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2023-11-30T22:59:44Z\" level=warning msg=\"failed, retrying in 1s ... (1/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-11-30T23:00:21Z\" level=warning msg=\"failed, retrying in 1s ... (2/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-11-30T23:00:59Z\" level=warning msg=\"failed, retrying in 1s ... (3/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: Error determining manifest MIME type for docker://haproxy:2.3: Error reading manifest sha256:058f434330f13dbbc46761f3e9a76af2408e9ec1898c9ac5a8baf00b42e756a9 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi167 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-11-30T23:04:36.497929Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi038.fwcakz on smithi038: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi038-fwcakz\n/bin/podman: stderr Error: error inspecting object: no such container ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi038-fwcakz\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi038.fwcakz\n/bin/podman: stderr Error: error inspecting object: no such container ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi038.fwcakz\nDeploy daemon haproxy.nfs.foo.smithi038.fwcakz ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi038 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2023-11-30T23:02:44Z\" level=warning msg=\"failed, retrying in 1s ... (1/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-11-30T23:03:21Z\" level=warning msg=\"failed, retrying in 1s ... (2/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-11-30T23:03:58Z\" level=warning msg=\"failed, retrying in 1s ... (3/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi038 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-11-30T23:04:36.502614Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi038.flofui on smithi038: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2023-11-30T23:04:36.503792Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi167.dxieha on smithi167: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.38/16"}, "status": {"created": "2023-11-30T22:58:56.312786Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.38/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2023-11-30T22:54:41.668043Z", "last_refresh": "2023-11-30T23:04:39.558331Z", "running": 2, "size": 2}}, {"events": ["2023-11-30T22:55:50.759225Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi038:172.21.15.38=smithi038", "smithi167:172.21.15.167=smithi167"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2023-11-30T22:55:50.756456Z", "last_refresh": "2023-11-30T23:04:39.558407Z", "running": 2, "size": 2}}, {"events": ["2023-11-30T22:58:56.311581Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2023-11-30T22:58:56.308071Z", "last_refresh": "2023-11-30T23:04:43.743907Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2023-11-30T22:54:46.136630Z", "last_refresh": "2023-11-30T23:04:39.558478Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2023-11-30T22:56:33.258058Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2023-11-30T22:56:33.253117Z", "last_refresh": "2023-11-30T23:04:39.558544Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2023-11-30T22:54:43.949497Z", "last_refresh": "2023-11-30T23:04:43.743520Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2023-11-30T22:58:52.105721Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2023-11-30T22:58:59.793467Z", "last_refresh": "2023-11-30T23:04:39.558809Z", "ports": [8800], "running": 2, "size": 2}}] 2023-11-30T23:06:09.743 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2023-11-30T23:06:10.012 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:06:09 smithi167 conmon[87022]: cluster 2023-11-30T23:06:08.586049+0000 mgr.smithi038.ldalxq (mgr.14182) 520 : cluster [DBG] pgmap v360: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2023-11-30T23:06:10.024 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:06:09 smithi038 conmon[81956]: cluster 2023-11-30T23:06:08. 2023-11-30T23:06:10.024 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:06:09 smithi038 conmon[81956]: 586049+0000 mgr.smithi038.ldalxq (mgr.14182) 520 : cluster [DBG] pgmap v360: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2023-11-30T23:06:10.777 DEBUG:teuthology.orchestra.run.smithi038:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:0dc074ce0b0b3b4f393f56dd32ef36884ebf45a9 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 3faf8b00-8fd3-11ee-95a2-87774f69a715 -- ceph orch ls -f json 2023-11-30T23:06:11.012 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:06:10 smithi167 conmon[87022]: audit 2023-11-30T23:06:09.259252+0000 mgr.smithi038.ldalxq (mgr.14182) 521 : audit [DBG] from='client.15122 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-11-30T23:06:11.024 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:06:10 smithi038 conmon[81956]: audit 2023-11-30T23:06:09.259252+0000 mgr.smithi038.ldalxq (mgr.14182) 521 : audit 2023-11-30T23:06:11.024 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:06:10 smithi038 conmon[81956]: [DBG] from='client.15122 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-11-30T23:06:12.012 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:06:11 smithi167 conmon[87022]: cluster 2023-11-30T23:06:10.586980+0000 mgr.smithi038.ldalxq (mgr.14182) 522 : cluster [DBG] pgmap v361: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2023-11-30T23:06:12.025 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:06:11 smithi038 conmon[81956]: cluster 2023-11-30T23:06:10.586980+0000 2023-11-30T23:06:12.025 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:06:11 smithi038 conmon[81956]: mgr.smithi038.ldalxq (mgr.14182) 522 : cluster [DBG] pgmap v361: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2023-11-30T23:06:12.587 INFO:teuthology.orchestra.run.smithi038.stdout: 2023-11-30T23:06:12.587 INFO:teuthology.orchestra.run.smithi038.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2023-11-30T22:54:47.122758Z", "last_refresh": "2023-11-30T23:04:43.743252Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2023-11-30T22:54:42.674972Z", "last_refresh": "2023-11-30T23:04:39.558186Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2023-11-30T22:54:45.114633Z", "last_refresh": "2023-11-30T23:04:43.743389Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2023-11-30T22:58:56.317378Z service:ingress.nfs.foo [INFO] \"service was created\"", "2023-11-30T23:02:07.111634Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi167.buykdj on smithi167: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi167-buykdj\n/bin/podman: stderr Error: error inspecting object: no such container ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi167-buykdj\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi167.buykdj\n/bin/podman: stderr Error: error inspecting object: no such container ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi167.buykdj\nDeploy daemon haproxy.nfs.foo.smithi167.buykdj ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi167 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2023-11-30T22:59:44Z\" level=warning msg=\"failed, retrying in 1s ... (1/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-11-30T23:00:21Z\" level=warning msg=\"failed, retrying in 1s ... (2/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-11-30T23:00:59Z\" level=warning msg=\"failed, retrying in 1s ... (3/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: Error determining manifest MIME type for docker://haproxy:2.3: Error reading manifest sha256:058f434330f13dbbc46761f3e9a76af2408e9ec1898c9ac5a8baf00b42e756a9 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi167 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-11-30T23:04:36.497929Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi038.fwcakz on smithi038: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi038-fwcakz\n/bin/podman: stderr Error: error inspecting object: no such container ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi038-fwcakz\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi038.fwcakz\n/bin/podman: stderr Error: error inspecting object: no such container ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi038.fwcakz\nDeploy daemon haproxy.nfs.foo.smithi038.fwcakz ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi038 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2023-11-30T23:02:44Z\" level=warning msg=\"failed, retrying in 1s ... (1/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-11-30T23:03:21Z\" level=warning msg=\"failed, retrying in 1s ... (2/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-11-30T23:03:58Z\" level=warning msg=\"failed, retrying in 1s ... (3/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi038 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-11-30T23:04:36.502614Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi038.flofui on smithi038: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2023-11-30T23:04:36.503792Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi167.dxieha on smithi167: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.38/16"}, "status": {"created": "2023-11-30T22:58:56.312786Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.38/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2023-11-30T22:54:41.668043Z", "last_refresh": "2023-11-30T23:04:39.558331Z", "running": 2, "size": 2}}, {"events": ["2023-11-30T22:55:50.759225Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi038:172.21.15.38=smithi038", "smithi167:172.21.15.167=smithi167"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2023-11-30T22:55:50.756456Z", "last_refresh": "2023-11-30T23:04:39.558407Z", "running": 2, "size": 2}}, {"events": ["2023-11-30T22:58:56.311581Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2023-11-30T22:58:56.308071Z", "last_refresh": "2023-11-30T23:04:43.743907Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2023-11-30T22:54:46.136630Z", "last_refresh": "2023-11-30T23:04:39.558478Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2023-11-30T22:56:33.258058Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2023-11-30T22:56:33.253117Z", "last_refresh": "2023-11-30T23:04:39.558544Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2023-11-30T22:54:43.949497Z", "last_refresh": "2023-11-30T23:04:43.743520Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2023-11-30T22:58:52.105721Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2023-11-30T22:58:59.793467Z", "last_refresh": "2023-11-30T23:04:39.558809Z", "ports": [8800], "running": 2, "size": 2}}] 2023-11-30T23:06:12.971 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:06:12 smithi038 conmon[81956]: audit 2023-11-30T23:06:12.583261+0000 mgr.smithi038.ldalxq (mgr.14182) 523 : audit [DBG] from='client.15126 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-11-30T23:06:12.971 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:06:12 smithi038 conmon[81956]: cluster 2023-11-30T23:06:12.587475+0000 mgr.smithi038.ldalxq (mgr.14182) 524 : cluster [DBG] pgmap v362: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2023-11-30T23:06:13.012 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:06:12 smithi167 conmon[87022]: audit 2023-11-30T23:06:12.583261+0000 mgr.smithi038.ldalxq (mgr.14182) 523 : audit [DBG] from='client.15126 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-11-30T23:06:13.012 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:06:12 smithi167 conmon[87022]: cluster 2023-11-30T23:06:12.587475+0000 2023-11-30T23:06:13.013 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:06:12 smithi167 conmon[87022]: mgr.smithi038.ldalxq (mgr.14182) 524 : cluster [DBG] pgmap v362: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2023-11-30T23:06:13.029 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2023-11-30T23:06:14.029 DEBUG:teuthology.orchestra.run.smithi038:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:0dc074ce0b0b3b4f393f56dd32ef36884ebf45a9 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 3faf8b00-8fd3-11ee-95a2-87774f69a715 -- ceph orch ls -f json 2023-11-30T23:06:15.755 INFO:teuthology.orchestra.run.smithi038.stdout: 2023-11-30T23:06:15.756 INFO:teuthology.orchestra.run.smithi038.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2023-11-30T22:54:47.122758Z", "last_refresh": "2023-11-30T23:04:43.743252Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2023-11-30T22:54:42.674972Z", "last_refresh": "2023-11-30T23:04:39.558186Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2023-11-30T22:54:45.114633Z", "last_refresh": "2023-11-30T23:04:43.743389Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2023-11-30T22:58:56.317378Z service:ingress.nfs.foo [INFO] \"service was created\"", "2023-11-30T23:02:07.111634Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi167.buykdj on smithi167: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi167-buykdj\n/bin/podman: stderr Error: error inspecting object: no such container ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi167-buykdj\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi167.buykdj\n/bin/podman: stderr Error: error inspecting object: no such container ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi167.buykdj\nDeploy daemon haproxy.nfs.foo.smithi167.buykdj ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi167 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2023-11-30T22:59:44Z\" level=warning msg=\"failed, retrying in 1s ... (1/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-11-30T23:00:21Z\" level=warning msg=\"failed, retrying in 1s ... (2/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-11-30T23:00:59Z\" level=warning msg=\"failed, retrying in 1s ... (3/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: Error determining manifest MIME type for docker://haproxy:2.3: Error reading manifest sha256:058f434330f13dbbc46761f3e9a76af2408e9ec1898c9ac5a8baf00b42e756a9 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi167 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-11-30T23:04:36.497929Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi038.fwcakz on smithi038: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi038-fwcakz\n/bin/podman: stderr Error: error inspecting object: no such container ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi038-fwcakz\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi038.fwcakz\n/bin/podman: stderr Error: error inspecting object: no such container ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi038.fwcakz\nDeploy daemon haproxy.nfs.foo.smithi038.fwcakz ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi038 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2023-11-30T23:02:44Z\" level=warning msg=\"failed, retrying in 1s ... (1/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-11-30T23:03:21Z\" level=warning msg=\"failed, retrying in 1s ... (2/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-11-30T23:03:58Z\" level=warning msg=\"failed, retrying in 1s ... (3/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi038 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-11-30T23:04:36.502614Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi038.flofui on smithi038: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2023-11-30T23:04:36.503792Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi167.dxieha on smithi167: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.38/16"}, "status": {"created": "2023-11-30T22:58:56.312786Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.38/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2023-11-30T22:54:41.668043Z", "last_refresh": "2023-11-30T23:04:39.558331Z", "running": 2, "size": 2}}, {"events": ["2023-11-30T22:55:50.759225Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi038:172.21.15.38=smithi038", "smithi167:172.21.15.167=smithi167"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2023-11-30T22:55:50.756456Z", "last_refresh": "2023-11-30T23:04:39.558407Z", "running": 2, "size": 2}}, {"events": ["2023-11-30T22:58:56.311581Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2023-11-30T22:58:56.308071Z", "last_refresh": "2023-11-30T23:04:43.743907Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2023-11-30T22:54:46.136630Z", "last_refresh": "2023-11-30T23:04:39.558478Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2023-11-30T22:56:33.258058Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2023-11-30T22:56:33.253117Z", "last_refresh": "2023-11-30T23:04:39.558544Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2023-11-30T22:54:43.949497Z", "last_refresh": "2023-11-30T23:04:43.743520Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2023-11-30T22:58:52.105721Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2023-11-30T22:58:59.793467Z", "last_refresh": "2023-11-30T23:04:39.558809Z", "ports": [8800], "running": 2, "size": 2}}] 2023-11-30T23:06:16.012 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:06:15 smithi167 conmon[87022]: cluster 2023-11-30T23:06:14.588130+0000 mgr.smithi038.ldalxq (mgr 2023-11-30T23:06:16.012 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:06:15 smithi167 conmon[87022]: .14182) 525 : cluster [DBG] pgmap v363: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2023-11-30T23:06:16.024 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:06:15 smithi038 conmon[81956]: cluster 2023-11-30T23:06:14.588130+0000 mgr.smithi038.ldalxq (mgr 2023-11-30T23:06:16.024 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:06:15 smithi038 conmon[81956]: .14182) 525 : cluster [DBG] pgmap v363: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2023-11-30T23:06:16.379 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2023-11-30T23:06:17.380 DEBUG:teuthology.orchestra.run.smithi038:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:0dc074ce0b0b3b4f393f56dd32ef36884ebf45a9 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 3faf8b00-8fd3-11ee-95a2-87774f69a715 -- ceph orch ls -f json 2023-11-30T23:06:17.774 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:06:17 smithi038 conmon[81956]: audit 2023-11-30T23:06:15.751599+0000 mgr.smithi038.ldalxq (mgr.14182) 526 : audit [DBG] from='client.15130 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-11-30T23:06:17.774 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:06:17 smithi038 conmon[81956]: cluster 2023-11-30T23:06:16.588931+0000 mgr.smithi038.ldalxq (mgr.14182) 527 : cluster [DBG] pgmap v364: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2023-11-30T23:06:18.012 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:06:17 smithi167 conmon[87022]: audit 2023-11-30T23:06:15.751599+0000 mgr.smithi038.ldalxq (mgr.14182) 526 : audit [DBG] 2023-11-30T23:06:18.012 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:06:17 smithi167 conmon[87022]: from='client.15130 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-11-30T23:06:18.012 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:06:17 smithi167 conmon[87022]: cluster 2023-11-30T23:06:16.588931+0000 mgr.smithi038.ldalxq (mgr.14182) 527 : cluster [DBG] pgmap v364: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2023-11-30T23:06:19.219 INFO:teuthology.orchestra.run.smithi038.stdout: 2023-11-30T23:06:19.220 INFO:teuthology.orchestra.run.smithi038.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2023-11-30T22:54:47.122758Z", "last_refresh": "2023-11-30T23:04:43.743252Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2023-11-30T22:54:42.674972Z", "last_refresh": "2023-11-30T23:04:39.558186Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2023-11-30T22:54:45.114633Z", "last_refresh": "2023-11-30T23:04:43.743389Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2023-11-30T22:58:56.317378Z service:ingress.nfs.foo [INFO] \"service was created\"", "2023-11-30T23:02:07.111634Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi167.buykdj on smithi167: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi167-buykdj\n/bin/podman: stderr Error: error inspecting object: no such container ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi167-buykdj\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi167.buykdj\n/bin/podman: stderr Error: error inspecting object: no such container ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi167.buykdj\nDeploy daemon haproxy.nfs.foo.smithi167.buykdj ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi167 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2023-11-30T22:59:44Z\" level=warning msg=\"failed, retrying in 1s ... (1/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-11-30T23:00:21Z\" level=warning msg=\"failed, retrying in 1s ... (2/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-11-30T23:00:59Z\" level=warning msg=\"failed, retrying in 1s ... (3/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: Error determining manifest MIME type for docker://haproxy:2.3: Error reading manifest sha256:058f434330f13dbbc46761f3e9a76af2408e9ec1898c9ac5a8baf00b42e756a9 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi167 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-11-30T23:04:36.497929Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi038.fwcakz on smithi038: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi038-fwcakz\n/bin/podman: stderr Error: error inspecting object: no such container ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi038-fwcakz\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi038.fwcakz\n/bin/podman: stderr Error: error inspecting object: no such container ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi038.fwcakz\nDeploy daemon haproxy.nfs.foo.smithi038.fwcakz ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi038 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2023-11-30T23:02:44Z\" level=warning msg=\"failed, retrying in 1s ... (1/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-11-30T23:03:21Z\" level=warning msg=\"failed, retrying in 1s ... (2/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-11-30T23:03:58Z\" level=warning msg=\"failed, retrying in 1s ... (3/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi038 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-11-30T23:04:36.502614Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi038.flofui on smithi038: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2023-11-30T23:04:36.503792Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi167.dxieha on smithi167: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.38/16"}, "status": {"created": "2023-11-30T22:58:56.312786Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.38/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2023-11-30T22:54:41.668043Z", "last_refresh": "2023-11-30T23:04:39.558331Z", "running": 2, "size": 2}}, {"events": ["2023-11-30T22:55:50.759225Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi038:172.21.15.38=smithi038", "smithi167:172.21.15.167=smithi167"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2023-11-30T22:55:50.756456Z", "last_refresh": "2023-11-30T23:04:39.558407Z", "running": 2, "size": 2}}, {"events": ["2023-11-30T22:58:56.311581Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2023-11-30T22:58:56.308071Z", "last_refresh": "2023-11-30T23:04:43.743907Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2023-11-30T22:54:46.136630Z", "last_refresh": "2023-11-30T23:04:39.558478Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2023-11-30T22:56:33.258058Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2023-11-30T22:56:33.253117Z", "last_refresh": "2023-11-30T23:04:39.558544Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2023-11-30T22:54:43.949497Z", "last_refresh": "2023-11-30T23:04:43.743520Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2023-11-30T22:58:52.105721Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2023-11-30T22:58:59.793467Z", "last_refresh": "2023-11-30T23:04:39.558809Z", "ports": [8800], "running": 2, "size": 2}}] 2023-11-30T23:06:19.631 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2023-11-30T23:06:20.011 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:06:19 smithi167 conmon[87022]: cluster 2023-11-30T23:06:18.589487+0000 mgr.smithi038.ldalxq (mgr.14182) 528 : cluster [DBG] pgmap v365: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2023-11-30T23:06:20.023 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:06:19 smithi038 conmon[81956]: cluster 2023-11-30T23:06:18.589487+0000 mgr.smithi038.ldalxq ( 2023-11-30T23:06:20.024 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:06:19 smithi038 conmon[81956]: mgr.14182) 528 : cluster [DBG] pgmap v365: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2023-11-30T23:06:20.632 DEBUG:teuthology.orchestra.run.smithi038:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:0dc074ce0b0b3b4f393f56dd32ef36884ebf45a9 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 3faf8b00-8fd3-11ee-95a2-87774f69a715 -- ceph orch ls -f json 2023-11-30T23:06:21.014 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:06:20 smithi167 conmon[87022]: audit 2023-11-30T23:06:19.215091+0000 mgr.smithi038.ldalxq (mgr.14182) 529 : audit [DBG] from='client.15134 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-11-30T23:06:21.023 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:06:20 smithi038 conmon[81956]: audit 2023-11-30T23:06:19.215091+0000 mgr.smithi038.ldalxq (mgr.14182 2023-11-30T23:06:21.024 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:06:20 smithi038 conmon[81956]: ) 529 : audit [DBG] from='client.15134 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-11-30T23:06:22.012 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:06:21 smithi167 conmon[87022]: cluster 2023-11-30T23:06:20.590373+0000 mgr.smithi038.ldalxq (mgr.14182) 530 : cluster [DBG] pgmap v366: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2023-11-30T23:06:22.024 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:06:21 smithi038 conmon[81956]: cluster 2023-11-30T23:06:20.590373+0000 mgr.smithi038.ldalxq (mgr.14182) 530 : cluster [DBG] pgmap v366: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2023-11-30T23:06:22.446 INFO:teuthology.orchestra.run.smithi038.stdout: 2023-11-30T23:06:22.446 INFO:teuthology.orchestra.run.smithi038.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2023-11-30T22:54:47.122758Z", "last_refresh": "2023-11-30T23:04:43.743252Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2023-11-30T22:54:42.674972Z", "last_refresh": "2023-11-30T23:04:39.558186Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2023-11-30T22:54:45.114633Z", "last_refresh": "2023-11-30T23:04:43.743389Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2023-11-30T22:58:56.317378Z service:ingress.nfs.foo [INFO] \"service was created\"", "2023-11-30T23:02:07.111634Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi167.buykdj on smithi167: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi167-buykdj\n/bin/podman: stderr Error: error inspecting object: no such container ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi167-buykdj\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi167.buykdj\n/bin/podman: stderr Error: error inspecting object: no such container ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi167.buykdj\nDeploy daemon haproxy.nfs.foo.smithi167.buykdj ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi167 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2023-11-30T22:59:44Z\" level=warning msg=\"failed, retrying in 1s ... (1/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-11-30T23:00:21Z\" level=warning msg=\"failed, retrying in 1s ... (2/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-11-30T23:00:59Z\" level=warning msg=\"failed, retrying in 1s ... (3/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: Error determining manifest MIME type for docker://haproxy:2.3: Error reading manifest sha256:058f434330f13dbbc46761f3e9a76af2408e9ec1898c9ac5a8baf00b42e756a9 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi167 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-11-30T23:04:36.497929Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi038.fwcakz on smithi038: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi038-fwcakz\n/bin/podman: stderr Error: error inspecting object: no such container ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi038-fwcakz\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi038.fwcakz\n/bin/podman: stderr Error: error inspecting object: no such container ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi038.fwcakz\nDeploy daemon haproxy.nfs.foo.smithi038.fwcakz ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi038 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2023-11-30T23:02:44Z\" level=warning msg=\"failed, retrying in 1s ... (1/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-11-30T23:03:21Z\" level=warning msg=\"failed, retrying in 1s ... (2/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-11-30T23:03:58Z\" level=warning msg=\"failed, retrying in 1s ... (3/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi038 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-11-30T23:04:36.502614Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi038.flofui on smithi038: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2023-11-30T23:04:36.503792Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi167.dxieha on smithi167: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.38/16"}, "status": {"created": "2023-11-30T22:58:56.312786Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.38/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2023-11-30T22:54:41.668043Z", "last_refresh": "2023-11-30T23:04:39.558331Z", "running": 2, "size": 2}}, {"events": ["2023-11-30T22:55:50.759225Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi038:172.21.15.38=smithi038", "smithi167:172.21.15.167=smithi167"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2023-11-30T22:55:50.756456Z", "last_refresh": "2023-11-30T23:04:39.558407Z", "running": 2, "size": 2}}, {"events": ["2023-11-30T22:58:56.311581Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2023-11-30T22:58:56.308071Z", "last_refresh": "2023-11-30T23:04:43.743907Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2023-11-30T22:54:46.136630Z", "last_refresh": "2023-11-30T23:04:39.558478Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2023-11-30T22:56:33.258058Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2023-11-30T22:56:33.253117Z", "last_refresh": "2023-11-30T23:04:39.558544Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2023-11-30T22:54:43.949497Z", "last_refresh": "2023-11-30T23:04:43.743520Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2023-11-30T22:58:52.105721Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2023-11-30T22:58:59.793467Z", "last_refresh": "2023-11-30T23:04:39.558809Z", "ports": [8800], "running": 2, "size": 2}}] 2023-11-30T23:06:22.983 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:06:22 smithi038 conmon[81956]: audit 2023-11-30T23:06:22.442446+0000 2023-11-30T23:06:22.983 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:06:22 smithi038 conmon[81956]: mgr.smithi038.ldalxq (mgr.14182) 531 : audit [DBG] from='client.15138 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-11-30T23:06:22.983 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:06:22 smithi038 conmon[81956]: cluster 2023-11-30T23:06:22.590832+0000 mgr.smithi038.ldalxq (mgr.14182) 532 : cluster [DBG] pgmap v367: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2023-11-30T23:06:22.985 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2023-11-30T23:06:23.012 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:06:22 smithi167 conmon[87022]: audit 2023-11-30T23:06:22.442446+0000 mgr.smithi038.ldalxq (mgr.14182 2023-11-30T23:06:23.012 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:06:22 smithi167 conmon[87022]: ) 531 : audit [DBG] from='client.15138 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-11-30T23:06:23.012 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:06:22 smithi167 conmon[87022]: cluster 2023-11-30T23:06:22.590832+0000 mgr.smithi038.ldalxq (mgr.14182) 532 : cluster [DBG] pgmap v367: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2023-11-30T23:06:23.986 DEBUG:teuthology.orchestra.run.smithi038:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:0dc074ce0b0b3b4f393f56dd32ef36884ebf45a9 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 3faf8b00-8fd3-11ee-95a2-87774f69a715 -- ceph orch ls -f json 2023-11-30T23:06:25.733 INFO:teuthology.orchestra.run.smithi038.stdout: 2023-11-30T23:06:25.733 INFO:teuthology.orchestra.run.smithi038.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2023-11-30T22:54:47.122758Z", "last_refresh": "2023-11-30T23:04:43.743252Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2023-11-30T22:54:42.674972Z", "last_refresh": "2023-11-30T23:04:39.558186Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2023-11-30T22:54:45.114633Z", "last_refresh": "2023-11-30T23:04:43.743389Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2023-11-30T22:58:56.317378Z service:ingress.nfs.foo [INFO] \"service was created\"", "2023-11-30T23:02:07.111634Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi167.buykdj on smithi167: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi167-buykdj\n/bin/podman: stderr Error: error inspecting object: no such container ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi167-buykdj\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi167.buykdj\n/bin/podman: stderr Error: error inspecting object: no such container ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi167.buykdj\nDeploy daemon haproxy.nfs.foo.smithi167.buykdj ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi167 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2023-11-30T22:59:44Z\" level=warning msg=\"failed, retrying in 1s ... (1/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-11-30T23:00:21Z\" level=warning msg=\"failed, retrying in 1s ... (2/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-11-30T23:00:59Z\" level=warning msg=\"failed, retrying in 1s ... (3/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: Error determining manifest MIME type for docker://haproxy:2.3: Error reading manifest sha256:058f434330f13dbbc46761f3e9a76af2408e9ec1898c9ac5a8baf00b42e756a9 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi167 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-11-30T23:04:36.497929Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi038.fwcakz on smithi038: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi038-fwcakz\n/bin/podman: stderr Error: error inspecting object: no such container ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi038-fwcakz\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi038.fwcakz\n/bin/podman: stderr Error: error inspecting object: no such container ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi038.fwcakz\nDeploy daemon haproxy.nfs.foo.smithi038.fwcakz ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi038 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2023-11-30T23:02:44Z\" level=warning msg=\"failed, retrying in 1s ... (1/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-11-30T23:03:21Z\" level=warning msg=\"failed, retrying in 1s ... (2/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-11-30T23:03:58Z\" level=warning msg=\"failed, retrying in 1s ... (3/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi038 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-11-30T23:04:36.502614Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi038.flofui on smithi038: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2023-11-30T23:04:36.503792Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi167.dxieha on smithi167: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.38/16"}, "status": {"created": "2023-11-30T22:58:56.312786Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.38/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2023-11-30T22:54:41.668043Z", "last_refresh": "2023-11-30T23:04:39.558331Z", "running": 2, "size": 2}}, {"events": ["2023-11-30T22:55:50.759225Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi038:172.21.15.38=smithi038", "smithi167:172.21.15.167=smithi167"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2023-11-30T22:55:50.756456Z", "last_refresh": "2023-11-30T23:04:39.558407Z", "running": 2, "size": 2}}, {"events": ["2023-11-30T22:58:56.311581Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2023-11-30T22:58:56.308071Z", "last_refresh": "2023-11-30T23:04:43.743907Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2023-11-30T22:54:46.136630Z", "last_refresh": "2023-11-30T23:04:39.558478Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2023-11-30T22:56:33.258058Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2023-11-30T22:56:33.253117Z", "last_refresh": "2023-11-30T23:04:39.558544Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2023-11-30T22:54:43.949497Z", "last_refresh": "2023-11-30T23:04:43.743520Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2023-11-30T22:58:52.105721Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2023-11-30T22:58:59.793467Z", "last_refresh": "2023-11-30T23:04:39.558809Z", "ports": [8800], "running": 2, "size": 2}}] 2023-11-30T23:06:25.929 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:06:25 smithi038 conmon[81956]: cluster 2023-11-30T23:06:24.591411+0000 2023-11-30T23:06:25.929 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:06:25 smithi038 conmon[81956]: mgr.smithi038.ldalxq (mgr.14182) 533 : cluster [DBG] pgmap v368: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2023-11-30T23:06:26.012 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:06:25 smithi167 conmon[87022]: cluster 2023-11-30T23:06:24.591411+0000 mgr.smithi038.ldalxq ( 2023-11-30T23:06:26.012 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:06:25 smithi167 conmon[87022]: mgr.14182) 533 : cluster [DBG] pgmap v368: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2023-11-30T23:06:26.152 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2023-11-30T23:06:27.153 DEBUG:teuthology.orchestra.run.smithi038:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:0dc074ce0b0b3b4f393f56dd32ef36884ebf45a9 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 3faf8b00-8fd3-11ee-95a2-87774f69a715 -- ceph orch ls -f json 2023-11-30T23:06:27.928 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:06:27 smithi038 conmon[81956]: audit 2023-11-30T23:06:25.728990+0000 mgr.smithi038.ldalxq 2023-11-30T23:06:27.928 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:06:27 smithi038 conmon[81956]: (mgr.14182) 534 : audit [DBG] from='client.15142 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-11-30T23:06:27.929 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:06:27 smithi038 conmon[81956]: cluster 2023-11-30T23:06:26.592182+0000 mgr.smithi038.ldalxq (mgr.14182) 535 : cluster [DBG] pgmap v369: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2023-11-30T23:06:28.012 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:06:27 smithi167 conmon[87022]: audit 2023-11-30T23:06:25.728990+0000 mgr.smithi038.ldalxq (mgr.14182) 534 : audit [DBG] from='client.15142 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-11-30T23:06:28.012 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:06:27 smithi167 conmon[87022]: cluster 2023-11-30T23:06:26.592182+0000 mgr.smithi038.ldalxq (mgr.14182) 535 : cluster [DBG] pgmap v369: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2023-11-30T23:06:28.868 INFO:teuthology.orchestra.run.smithi038.stdout: 2023-11-30T23:06:28.869 INFO:teuthology.orchestra.run.smithi038.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2023-11-30T22:54:47.122758Z", "last_refresh": "2023-11-30T23:04:43.743252Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2023-11-30T22:54:42.674972Z", "last_refresh": "2023-11-30T23:04:39.558186Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2023-11-30T22:54:45.114633Z", "last_refresh": "2023-11-30T23:04:43.743389Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2023-11-30T22:58:56.317378Z service:ingress.nfs.foo [INFO] \"service was created\"", "2023-11-30T23:02:07.111634Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi167.buykdj on smithi167: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi167-buykdj\n/bin/podman: stderr Error: error inspecting object: no such container ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi167-buykdj\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi167.buykdj\n/bin/podman: stderr Error: error inspecting object: no such container ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi167.buykdj\nDeploy daemon haproxy.nfs.foo.smithi167.buykdj ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi167 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2023-11-30T22:59:44Z\" level=warning msg=\"failed, retrying in 1s ... (1/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-11-30T23:00:21Z\" level=warning msg=\"failed, retrying in 1s ... (2/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-11-30T23:00:59Z\" level=warning msg=\"failed, retrying in 1s ... (3/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: Error determining manifest MIME type for docker://haproxy:2.3: Error reading manifest sha256:058f434330f13dbbc46761f3e9a76af2408e9ec1898c9ac5a8baf00b42e756a9 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi167 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-11-30T23:04:36.497929Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi038.fwcakz on smithi038: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi038-fwcakz\n/bin/podman: stderr Error: error inspecting object: no such container ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi038-fwcakz\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi038.fwcakz\n/bin/podman: stderr Error: error inspecting object: no such container ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi038.fwcakz\nDeploy daemon haproxy.nfs.foo.smithi038.fwcakz ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi038 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2023-11-30T23:02:44Z\" level=warning msg=\"failed, retrying in 1s ... (1/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-11-30T23:03:21Z\" level=warning msg=\"failed, retrying in 1s ... (2/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-11-30T23:03:58Z\" level=warning msg=\"failed, retrying in 1s ... (3/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi038 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-11-30T23:04:36.502614Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi038.flofui on smithi038: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2023-11-30T23:04:36.503792Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi167.dxieha on smithi167: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.38/16"}, "status": {"created": "2023-11-30T22:58:56.312786Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.38/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2023-11-30T22:54:41.668043Z", "last_refresh": "2023-11-30T23:04:39.558331Z", "running": 2, "size": 2}}, {"events": ["2023-11-30T22:55:50.759225Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi038:172.21.15.38=smithi038", "smithi167:172.21.15.167=smithi167"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2023-11-30T22:55:50.756456Z", "last_refresh": "2023-11-30T23:04:39.558407Z", "running": 2, "size": 2}}, {"events": ["2023-11-30T22:58:56.311581Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2023-11-30T22:58:56.308071Z", "last_refresh": "2023-11-30T23:04:43.743907Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2023-11-30T22:54:46.136630Z", "last_refresh": "2023-11-30T23:04:39.558478Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2023-11-30T22:56:33.258058Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2023-11-30T22:56:33.253117Z", "last_refresh": "2023-11-30T23:04:39.558544Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2023-11-30T22:54:43.949497Z", "last_refresh": "2023-11-30T23:04:43.743520Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2023-11-30T22:58:52.105721Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2023-11-30T22:58:59.793467Z", "last_refresh": "2023-11-30T23:04:39.558809Z", "ports": [8800], "running": 2, "size": 2}}] 2023-11-30T23:06:29.316 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2023-11-30T23:06:30.014 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:06:29 smithi167 conmon[87022]: cluster 2023-11-30T23:06:28.592651+0000 mgr.smithi038.ldalxq (mgr.14182) 536 : cluster [DBG] pgmap v370: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2023-11-30T23:06:30.023 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:06:29 smithi038 conmon[81956]: cluster 2023-11-30T23:06:28.592651+0000 mgr.smithi038.ldalxq (mgr. 2023-11-30T23:06:30.024 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:06:29 smithi038 conmon[81956]: 14182) 536 : cluster [DBG] pgmap v370: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2023-11-30T23:06:30.318 DEBUG:teuthology.orchestra.run.smithi038:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:0dc074ce0b0b3b4f393f56dd32ef36884ebf45a9 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 3faf8b00-8fd3-11ee-95a2-87774f69a715 -- ceph orch ls -f json 2023-11-30T23:06:31.012 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:06:30 smithi167 conmon[87022]: audit 2023-11-30T23:06:28.864700+0000 mgr.smithi038.ldalxq (mgr.14182) 537 : audit [DBG] from='client.15146 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-11-30T23:06:31.025 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:06:30 smithi038 conmon[81956]: audit 2023-11-30T23:06:28.864700+0000 mgr.smithi038.ldalxq (mgr 2023-11-30T23:06:31.025 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:06:30 smithi038 conmon[81956]: .14182) 537 : audit [DBG] from='client.15146 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-11-30T23:06:32.007 INFO:teuthology.orchestra.run.smithi038.stdout: 2023-11-30T23:06:32.007 INFO:teuthology.orchestra.run.smithi038.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2023-11-30T22:54:47.122758Z", "last_refresh": "2023-11-30T23:04:43.743252Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2023-11-30T22:54:42.674972Z", "last_refresh": "2023-11-30T23:04:39.558186Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2023-11-30T22:54:45.114633Z", "last_refresh": "2023-11-30T23:04:43.743389Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2023-11-30T22:58:56.317378Z service:ingress.nfs.foo [INFO] \"service was created\"", "2023-11-30T23:02:07.111634Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi167.buykdj on smithi167: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi167-buykdj\n/bin/podman: stderr Error: error inspecting object: no such container ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi167-buykdj\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi167.buykdj\n/bin/podman: stderr Error: error inspecting object: no such container ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi167.buykdj\nDeploy daemon haproxy.nfs.foo.smithi167.buykdj ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi167 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2023-11-30T22:59:44Z\" level=warning msg=\"failed, retrying in 1s ... (1/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-11-30T23:00:21Z\" level=warning msg=\"failed, retrying in 1s ... (2/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-11-30T23:00:59Z\" level=warning msg=\"failed, retrying in 1s ... (3/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: Error determining manifest MIME type for docker://haproxy:2.3: Error reading manifest sha256:058f434330f13dbbc46761f3e9a76af2408e9ec1898c9ac5a8baf00b42e756a9 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi167 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-11-30T23:04:36.497929Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi038.fwcakz on smithi038: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi038-fwcakz\n/bin/podman: stderr Error: error inspecting object: no such container ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi038-fwcakz\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi038.fwcakz\n/bin/podman: stderr Error: error inspecting object: no such container ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi038.fwcakz\nDeploy daemon haproxy.nfs.foo.smithi038.fwcakz ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi038 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2023-11-30T23:02:44Z\" level=warning msg=\"failed, retrying in 1s ... (1/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-11-30T23:03:21Z\" level=warning msg=\"failed, retrying in 1s ... (2/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-11-30T23:03:58Z\" level=warning msg=\"failed, retrying in 1s ... (3/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi038 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-11-30T23:04:36.502614Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi038.flofui on smithi038: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2023-11-30T23:04:36.503792Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi167.dxieha on smithi167: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.38/16"}, "status": {"created": "2023-11-30T22:58:56.312786Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.38/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2023-11-30T22:54:41.668043Z", "last_refresh": "2023-11-30T23:04:39.558331Z", "running": 2, "size": 2}}, {"events": ["2023-11-30T22:55:50.759225Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi038:172.21.15.38=smithi038", "smithi167:172.21.15.167=smithi167"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2023-11-30T22:55:50.756456Z", "last_refresh": "2023-11-30T23:04:39.558407Z", "running": 2, "size": 2}}, {"events": ["2023-11-30T22:58:56.311581Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2023-11-30T22:58:56.308071Z", "last_refresh": "2023-11-30T23:04:43.743907Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2023-11-30T22:54:46.136630Z", "last_refresh": "2023-11-30T23:04:39.558478Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2023-11-30T22:56:33.258058Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2023-11-30T22:56:33.253117Z", "last_refresh": "2023-11-30T23:04:39.558544Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2023-11-30T22:54:43.949497Z", "last_refresh": "2023-11-30T23:04:43.743520Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2023-11-30T22:58:52.105721Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2023-11-30T22:58:59.793467Z", "last_refresh": "2023-11-30T23:04:39.558809Z", "ports": [8800], "running": 2, "size": 2}}] 2023-11-30T23:06:32.011 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:06:31 smithi167 conmon[87022]: cluster 2023-11-30T23:06:30.593332+0000 mgr.smithi038.ldalxq (mgr.14182) 538 : cluster [DBG] pgmap v371: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2023-11-30T23:06:32.024 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:06:31 smithi038 conmon[81956]: cluster 2023-11-30T23:06:30.593332+0000 2023-11-30T23:06:32.024 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:06:31 smithi038 conmon[81956]: mgr.smithi038.ldalxq (mgr.14182) 538 : cluster [DBG] pgmap v371: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2023-11-30T23:06:32.393 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2023-11-30T23:06:33.011 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:06:32 smithi167 conmon[87022]: audit 2023-11-30T23:06:32.003160+0000 mgr.smithi038.ldalxq (mgr.14182) 539 : audit [DBG] from='client.15150 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-11-30T23:06:33.012 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:06:32 smithi167 conmon[87022]: cluster 2023-11-30T23:06:32.593866+0000 mgr.smithi038.ldalxq (mgr.14182) 540 : cluster [DBG] pgmap v372: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2023-11-30T23:06:33.023 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:06:32 smithi038 conmon[81956]: audit 2023-11-30T23:06:32.003160+0000 mgr.smithi038.ldalxq (mgr.14182) 539 : audit [DBG] from='client.15150 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-11-30T23:06:33.024 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:06:32 smithi038 conmon[81956]: cluster 2023-11-30T23:06:32.593866+0000 mgr.smithi038.ldalxq (mgr.14182) 540 : cluster [DBG] pgmap v372: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2023-11-30T23:06:33.394 DEBUG:teuthology.orchestra.run.smithi038:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:0dc074ce0b0b3b4f393f56dd32ef36884ebf45a9 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 3faf8b00-8fd3-11ee-95a2-87774f69a715 -- ceph orch ls -f json 2023-11-30T23:06:35.004 INFO:teuthology.orchestra.run.smithi038.stdout: 2023-11-30T23:06:35.004 INFO:teuthology.orchestra.run.smithi038.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2023-11-30T22:54:47.122758Z", "last_refresh": "2023-11-30T23:04:43.743252Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2023-11-30T22:54:42.674972Z", "last_refresh": "2023-11-30T23:04:39.558186Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2023-11-30T22:54:45.114633Z", "last_refresh": "2023-11-30T23:04:43.743389Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2023-11-30T22:58:56.317378Z service:ingress.nfs.foo [INFO] \"service was created\"", "2023-11-30T23:02:07.111634Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi167.buykdj on smithi167: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi167-buykdj\n/bin/podman: stderr Error: error inspecting object: no such container ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi167-buykdj\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi167.buykdj\n/bin/podman: stderr Error: error inspecting object: no such container ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi167.buykdj\nDeploy daemon haproxy.nfs.foo.smithi167.buykdj ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi167 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2023-11-30T22:59:44Z\" level=warning msg=\"failed, retrying in 1s ... (1/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-11-30T23:00:21Z\" level=warning msg=\"failed, retrying in 1s ... (2/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-11-30T23:00:59Z\" level=warning msg=\"failed, retrying in 1s ... (3/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: Error determining manifest MIME type for docker://haproxy:2.3: Error reading manifest sha256:058f434330f13dbbc46761f3e9a76af2408e9ec1898c9ac5a8baf00b42e756a9 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi167 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-11-30T23:04:36.497929Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi038.fwcakz on smithi038: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi038-fwcakz\n/bin/podman: stderr Error: error inspecting object: no such container ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi038-fwcakz\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi038.fwcakz\n/bin/podman: stderr Error: error inspecting object: no such container ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi038.fwcakz\nDeploy daemon haproxy.nfs.foo.smithi038.fwcakz ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi038 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2023-11-30T23:02:44Z\" level=warning msg=\"failed, retrying in 1s ... (1/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-11-30T23:03:21Z\" level=warning msg=\"failed, retrying in 1s ... (2/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-11-30T23:03:58Z\" level=warning msg=\"failed, retrying in 1s ... (3/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi038 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-11-30T23:04:36.502614Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi038.flofui on smithi038: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2023-11-30T23:04:36.503792Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi167.dxieha on smithi167: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.38/16"}, "status": {"created": "2023-11-30T22:58:56.312786Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.38/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2023-11-30T22:54:41.668043Z", "last_refresh": "2023-11-30T23:04:39.558331Z", "running": 2, "size": 2}}, {"events": ["2023-11-30T22:55:50.759225Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi038:172.21.15.38=smithi038", "smithi167:172.21.15.167=smithi167"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2023-11-30T22:55:50.756456Z", "last_refresh": "2023-11-30T23:04:39.558407Z", "running": 2, "size": 2}}, {"events": ["2023-11-30T22:58:56.311581Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2023-11-30T22:58:56.308071Z", "last_refresh": "2023-11-30T23:04:43.743907Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2023-11-30T22:54:46.136630Z", "last_refresh": "2023-11-30T23:04:39.558478Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2023-11-30T22:56:33.258058Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2023-11-30T22:56:33.253117Z", "last_refresh": "2023-11-30T23:04:39.558544Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2023-11-30T22:54:43.949497Z", "last_refresh": "2023-11-30T23:04:43.743520Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2023-11-30T22:58:52.105721Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2023-11-30T22:58:59.793467Z", "last_refresh": "2023-11-30T23:04:39.558809Z", "ports": [8800], "running": 2, "size": 2}}] 2023-11-30T23:06:35.456 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2023-11-30T23:06:35.774 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:06:35 smithi038 conmon[81956]: cluster 2023-11-30T23:06:34.594487+0000 mgr.smithi038.ldalxq (mgr.14182) 541 : cluster [DBG] pgmap v373: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2023-11-30T23:06:36.011 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:06:35 smithi167 conmon[87022]: cluster 2023-11-30T23:06:34.594487+0000 mgr.smithi038.ldalxq (mgr.14182) 541 : cluster [DBG] 2023-11-30T23:06:36.012 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:06:35 smithi167 conmon[87022]: pgmap v373: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2023-11-30T23:06:36.458 DEBUG:teuthology.orchestra.run.smithi038:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:0dc074ce0b0b3b4f393f56dd32ef36884ebf45a9 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 3faf8b00-8fd3-11ee-95a2-87774f69a715 -- ceph orch ls -f json 2023-11-30T23:06:36.774 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:06:36 smithi038 conmon[81956]: audit 2023-11-30T23:06:35.000096+0000 mgr.smithi038.ldalxq (mgr.14182) 542 : audit [DBG] from='client.15154 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-11-30T23:06:37.012 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:06:36 smithi167 conmon[87022]: audit 2023-11-30T23:06:35.000096+0000 mgr.smithi038.ldalxq (mgr.14182) 542 : audit [DBG] from='client.15154 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-11-30T23:06:38.011 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:06:37 smithi167 conmon[87022]: cluster 2023-11-30T23:06:36.595174+0000 mgr.smithi038.ldalxq (mgr.14182) 543 : cluster [DBG] pgmap v374: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2023-11-30T23:06:38.027 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:06:37 smithi038 conmon[81956]: cluster 2023-11-30T23:06:36.595174+0000 mgr.smithi038.ldalxq ( 2023-11-30T23:06:38.027 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:06:37 smithi038 conmon[81956]: mgr.14182) 543 : cluster [DBG] pgmap v374: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2023-11-30T23:06:38.225 INFO:teuthology.orchestra.run.smithi038.stdout: 2023-11-30T23:06:38.225 INFO:teuthology.orchestra.run.smithi038.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2023-11-30T22:54:47.122758Z", "last_refresh": "2023-11-30T23:04:43.743252Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2023-11-30T22:54:42.674972Z", "last_refresh": "2023-11-30T23:04:39.558186Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2023-11-30T22:54:45.114633Z", "last_refresh": "2023-11-30T23:04:43.743389Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2023-11-30T22:58:56.317378Z service:ingress.nfs.foo [INFO] \"service was created\"", "2023-11-30T23:02:07.111634Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi167.buykdj on smithi167: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi167-buykdj\n/bin/podman: stderr Error: error inspecting object: no such container ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi167-buykdj\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi167.buykdj\n/bin/podman: stderr Error: error inspecting object: no such container ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi167.buykdj\nDeploy daemon haproxy.nfs.foo.smithi167.buykdj ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi167 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2023-11-30T22:59:44Z\" level=warning msg=\"failed, retrying in 1s ... (1/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-11-30T23:00:21Z\" level=warning msg=\"failed, retrying in 1s ... (2/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-11-30T23:00:59Z\" level=warning msg=\"failed, retrying in 1s ... (3/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: Error determining manifest MIME type for docker://haproxy:2.3: Error reading manifest sha256:058f434330f13dbbc46761f3e9a76af2408e9ec1898c9ac5a8baf00b42e756a9 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi167 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-11-30T23:04:36.497929Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi038.fwcakz on smithi038: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi038-fwcakz\n/bin/podman: stderr Error: error inspecting object: no such container ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi038-fwcakz\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi038.fwcakz\n/bin/podman: stderr Error: error inspecting object: no such container ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi038.fwcakz\nDeploy daemon haproxy.nfs.foo.smithi038.fwcakz ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi038 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2023-11-30T23:02:44Z\" level=warning msg=\"failed, retrying in 1s ... (1/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-11-30T23:03:21Z\" level=warning msg=\"failed, retrying in 1s ... (2/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-11-30T23:03:58Z\" level=warning msg=\"failed, retrying in 1s ... (3/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi038 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-11-30T23:04:36.502614Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi038.flofui on smithi038: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2023-11-30T23:04:36.503792Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi167.dxieha on smithi167: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.38/16"}, "status": {"created": "2023-11-30T22:58:56.312786Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.38/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2023-11-30T22:54:41.668043Z", "last_refresh": "2023-11-30T23:04:39.558331Z", "running": 2, "size": 2}}, {"events": ["2023-11-30T22:55:50.759225Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi038:172.21.15.38=smithi038", "smithi167:172.21.15.167=smithi167"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2023-11-30T22:55:50.756456Z", "last_refresh": "2023-11-30T23:04:39.558407Z", "running": 2, "size": 2}}, {"events": ["2023-11-30T22:58:56.311581Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2023-11-30T22:58:56.308071Z", "last_refresh": "2023-11-30T23:04:43.743907Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2023-11-30T22:54:46.136630Z", "last_refresh": "2023-11-30T23:04:39.558478Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2023-11-30T22:56:33.258058Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2023-11-30T22:56:33.253117Z", "last_refresh": "2023-11-30T23:04:39.558544Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2023-11-30T22:54:43.949497Z", "last_refresh": "2023-11-30T23:04:43.743520Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2023-11-30T22:58:52.105721Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2023-11-30T22:58:59.793467Z", "last_refresh": "2023-11-30T23:04:39.558809Z", "ports": [8800], "running": 2, "size": 2}}] 2023-11-30T23:06:38.624 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2023-11-30T23:06:39.625 DEBUG:teuthology.orchestra.run.smithi038:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:0dc074ce0b0b3b4f393f56dd32ef36884ebf45a9 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 3faf8b00-8fd3-11ee-95a2-87774f69a715 -- ceph orch ls -f json 2023-11-30T23:06:40.012 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:06:39 smithi167 conmon[87022]: audit 2023-11-30T23:06:38.220886+0000 mgr.smithi038.ldalxq (mgr.14182) 544 : audit [DBG] from='client.15158 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-11-30T23:06:40.012 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:06:39 smithi167 conmon[87022]: cluster 2023-11-30T23:06:38.595839+0000 mgr.smithi038.ldalxq (mgr.14182) 545 : cluster [DBG] pgmap v375: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2023-11-30T23:06:40.024 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:06:39 smithi038 conmon[81956]: audit 2023-11-30T23:06:38.220886+0000 mgr.smithi038.ldalxq (mgr. 2023-11-30T23:06:40.024 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:06:39 smithi038 conmon[81956]: 14182) 544 : audit [DBG] from='client.15158 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-11-30T23:06:40.024 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:06:39 smithi038 conmon[81956]: cluster 2023-11-30T23:06:38.595839+0000 mgr.smithi038.ldalxq (mgr.14182) 545 : cluster [DBG] pgmap v375: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2023-11-30T23:06:41.012 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:06:40 smithi167 conmon[87022]: cluster 2023-11-30T23:06:40.596571+0000 mgr.smithi038.ldalxq (mgr.14182) 546 : cluster [DBG] pgmap v376: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2023-11-30T23:06:41.024 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:06:40 smithi038 conmon[81956]: cluster 2023-11-30T23:06:40.596571+0000 mgr.smithi038.ldalxq (mgr.14182) 546 : cluster [DBG] pgmap v376: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2023-11-30T23:06:41.478 INFO:teuthology.orchestra.run.smithi038.stdout: 2023-11-30T23:06:41.478 INFO:teuthology.orchestra.run.smithi038.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2023-11-30T22:54:47.122758Z", "last_refresh": "2023-11-30T23:04:43.743252Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2023-11-30T22:54:42.674972Z", "last_refresh": "2023-11-30T23:04:39.558186Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2023-11-30T22:54:45.114633Z", "last_refresh": "2023-11-30T23:04:43.743389Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2023-11-30T22:58:56.317378Z service:ingress.nfs.foo [INFO] \"service was created\"", "2023-11-30T23:02:07.111634Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi167.buykdj on smithi167: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi167-buykdj\n/bin/podman: stderr Error: error inspecting object: no such container ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi167-buykdj\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi167.buykdj\n/bin/podman: stderr Error: error inspecting object: no such container ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi167.buykdj\nDeploy daemon haproxy.nfs.foo.smithi167.buykdj ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi167 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2023-11-30T22:59:44Z\" level=warning msg=\"failed, retrying in 1s ... (1/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-11-30T23:00:21Z\" level=warning msg=\"failed, retrying in 1s ... (2/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-11-30T23:00:59Z\" level=warning msg=\"failed, retrying in 1s ... (3/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: Error determining manifest MIME type for docker://haproxy:2.3: Error reading manifest sha256:058f434330f13dbbc46761f3e9a76af2408e9ec1898c9ac5a8baf00b42e756a9 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi167 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-11-30T23:04:36.497929Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi038.fwcakz on smithi038: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi038-fwcakz\n/bin/podman: stderr Error: error inspecting object: no such container ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi038-fwcakz\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi038.fwcakz\n/bin/podman: stderr Error: error inspecting object: no such container ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi038.fwcakz\nDeploy daemon haproxy.nfs.foo.smithi038.fwcakz ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi038 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2023-11-30T23:02:44Z\" level=warning msg=\"failed, retrying in 1s ... (1/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-11-30T23:03:21Z\" level=warning msg=\"failed, retrying in 1s ... (2/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-11-30T23:03:58Z\" level=warning msg=\"failed, retrying in 1s ... (3/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi038 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-11-30T23:04:36.502614Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi038.flofui on smithi038: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2023-11-30T23:04:36.503792Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi167.dxieha on smithi167: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.38/16"}, "status": {"created": "2023-11-30T22:58:56.312786Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.38/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2023-11-30T22:54:41.668043Z", "last_refresh": "2023-11-30T23:04:39.558331Z", "running": 2, "size": 2}}, {"events": ["2023-11-30T22:55:50.759225Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi038:172.21.15.38=smithi038", "smithi167:172.21.15.167=smithi167"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2023-11-30T22:55:50.756456Z", "last_refresh": "2023-11-30T23:04:39.558407Z", "running": 2, "size": 2}}, {"events": ["2023-11-30T22:58:56.311581Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2023-11-30T22:58:56.308071Z", "last_refresh": "2023-11-30T23:04:43.743907Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2023-11-30T22:54:46.136630Z", "last_refresh": "2023-11-30T23:04:39.558478Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2023-11-30T22:56:33.258058Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2023-11-30T22:56:33.253117Z", "last_refresh": "2023-11-30T23:04:39.558544Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2023-11-30T22:54:43.949497Z", "last_refresh": "2023-11-30T23:04:43.743520Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2023-11-30T22:58:52.105721Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2023-11-30T22:58:59.793467Z", "last_refresh": "2023-11-30T23:04:39.558809Z", "ports": [8800], "running": 2, "size": 2}}] 2023-11-30T23:06:41.774 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:06:41 smithi038 conmon[81956]: audit 2023-11-30T23:06:41.472537+0000 mgr.smithi038.ldalxq ( 2023-11-30T23:06:41.774 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:06:41 smithi038 conmon[81956]: mgr.14182) 547 : audit [DBG] from='client.15162 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-11-30T23:06:41.973 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2023-11-30T23:06:42.012 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:06:41 smithi167 conmon[87022]: audit 2023-11-30T23:06:41.472537+0000 mgr.smithi038.ldalxq (mgr.14182) 547 : audit [DBG] from='client.15162 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-11-30T23:06:42.974 DEBUG:teuthology.orchestra.run.smithi038:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:0dc074ce0b0b3b4f393f56dd32ef36884ebf45a9 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 3faf8b00-8fd3-11ee-95a2-87774f69a715 -- ceph orch ls -f json 2023-11-30T23:06:43.005 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:06:42 smithi038 conmon[81956]: cluster 2023-11-30T23:06:42.597195+0000 mgr.smithi038.ldalxq (mgr.14182) 548 : cluster [DBG] 2023-11-30T23:06:43.006 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:06:42 smithi038 conmon[81956]: pgmap v377: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2023-11-30T23:06:43.011 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:06:42 smithi167 conmon[87022]: cluster 2023-11-30T23:06:42.597195+0000 mgr.smithi038.ldalxq (mgr.14182) 548 : cluster [DBG] pgmap v377: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2023-11-30T23:06:43.011 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:06:42 smithi167 conmon[87022]: 2023-11-30T23:06:44.789 INFO:teuthology.orchestra.run.smithi038.stdout: 2023-11-30T23:06:44.790 INFO:teuthology.orchestra.run.smithi038.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2023-11-30T22:54:47.122758Z", "last_refresh": "2023-11-30T23:04:43.743252Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2023-11-30T22:54:42.674972Z", "last_refresh": "2023-11-30T23:04:39.558186Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2023-11-30T22:54:45.114633Z", "last_refresh": "2023-11-30T23:04:43.743389Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2023-11-30T22:58:56.317378Z service:ingress.nfs.foo [INFO] \"service was created\"", "2023-11-30T23:02:07.111634Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi167.buykdj on smithi167: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi167-buykdj\n/bin/podman: stderr Error: error inspecting object: no such container ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi167-buykdj\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi167.buykdj\n/bin/podman: stderr Error: error inspecting object: no such container ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi167.buykdj\nDeploy daemon haproxy.nfs.foo.smithi167.buykdj ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi167 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2023-11-30T22:59:44Z\" level=warning msg=\"failed, retrying in 1s ... (1/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-11-30T23:00:21Z\" level=warning msg=\"failed, retrying in 1s ... (2/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-11-30T23:00:59Z\" level=warning msg=\"failed, retrying in 1s ... (3/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: Error determining manifest MIME type for docker://haproxy:2.3: Error reading manifest sha256:058f434330f13dbbc46761f3e9a76af2408e9ec1898c9ac5a8baf00b42e756a9 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi167 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-11-30T23:04:36.497929Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi038.fwcakz on smithi038: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi038-fwcakz\n/bin/podman: stderr Error: error inspecting object: no such container ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi038-fwcakz\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi038.fwcakz\n/bin/podman: stderr Error: error inspecting object: no such container ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi038.fwcakz\nDeploy daemon haproxy.nfs.foo.smithi038.fwcakz ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi038 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2023-11-30T23:02:44Z\" level=warning msg=\"failed, retrying in 1s ... (1/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-11-30T23:03:21Z\" level=warning msg=\"failed, retrying in 1s ... (2/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-11-30T23:03:58Z\" level=warning msg=\"failed, retrying in 1s ... (3/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi038 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-11-30T23:04:36.502614Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi038.flofui on smithi038: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2023-11-30T23:04:36.503792Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi167.dxieha on smithi167: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.38/16"}, "status": {"created": "2023-11-30T22:58:56.312786Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.38/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2023-11-30T22:54:41.668043Z", "last_refresh": "2023-11-30T23:04:39.558331Z", "running": 2, "size": 2}}, {"events": ["2023-11-30T22:55:50.759225Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi038:172.21.15.38=smithi038", "smithi167:172.21.15.167=smithi167"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2023-11-30T22:55:50.756456Z", "last_refresh": "2023-11-30T23:04:39.558407Z", "running": 2, "size": 2}}, {"events": ["2023-11-30T22:58:56.311581Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2023-11-30T22:58:56.308071Z", "last_refresh": "2023-11-30T23:04:43.743907Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2023-11-30T22:54:46.136630Z", "last_refresh": "2023-11-30T23:04:39.558478Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2023-11-30T22:56:33.258058Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2023-11-30T22:56:33.253117Z", "last_refresh": "2023-11-30T23:04:39.558544Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2023-11-30T22:54:43.949497Z", "last_refresh": "2023-11-30T23:04:43.743520Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2023-11-30T22:58:52.105721Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2023-11-30T22:58:59.793467Z", "last_refresh": "2023-11-30T23:04:39.558809Z", "ports": [8800], "running": 2, "size": 2}}] 2023-11-30T23:06:45.225 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2023-11-30T23:06:46.012 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:06:45 smithi167 conmon[87022]: cluster 2023-11-30T23:06:44.597842+0000 mgr.smithi038.ldalxq (mgr.14182) 549 : cluster [DBG] pgmap v378: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2023-11-30T23:06:46.012 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:06:45 smithi167 conmon[87022]: 2023-11-30T23:06:46.024 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:06:45 smithi038 conmon[81956]: cluster 2023-11-30T23:06:44.597842+0000 mgr.smithi038.ldalxq (mgr.14182) 549 : cluster [DBG] pgmap v378: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2023-11-30T23:06:46.225 DEBUG:teuthology.orchestra.run.smithi038:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:0dc074ce0b0b3b4f393f56dd32ef36884ebf45a9 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 3faf8b00-8fd3-11ee-95a2-87774f69a715 -- ceph orch ls -f json 2023-11-30T23:06:46.973 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:06:46 smithi038 conmon[81956]: audit 2023-11-30T23:06:44.785135+0000 mgr.smithi038.ldalxq 2023-11-30T23:06:46.974 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:06:46 smithi038 conmon[81956]: (mgr.14182) 550 : audit [DBG] from='client.15166 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-11-30T23:06:47.011 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:06:46 smithi167 conmon[87022]: audit 2023-11-30T23:06:44.785135+0000 mgr.smithi038.ldalxq (mgr.14182) 550 : audit [DBG] from='client.15166 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-11-30T23:06:47.012 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:06:46 smithi167 conmon[87022]: 2023-11-30T23:06:47.960 INFO:teuthology.orchestra.run.smithi038.stdout: 2023-11-30T23:06:47.961 INFO:teuthology.orchestra.run.smithi038.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2023-11-30T22:54:47.122758Z", "last_refresh": "2023-11-30T23:04:43.743252Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2023-11-30T22:54:42.674972Z", "last_refresh": "2023-11-30T23:04:39.558186Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2023-11-30T22:54:45.114633Z", "last_refresh": "2023-11-30T23:04:43.743389Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2023-11-30T22:58:56.317378Z service:ingress.nfs.foo [INFO] \"service was created\"", "2023-11-30T23:02:07.111634Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi167.buykdj on smithi167: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi167-buykdj\n/bin/podman: stderr Error: error inspecting object: no such container ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi167-buykdj\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi167.buykdj\n/bin/podman: stderr Error: error inspecting object: no such container ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi167.buykdj\nDeploy daemon haproxy.nfs.foo.smithi167.buykdj ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi167 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2023-11-30T22:59:44Z\" level=warning msg=\"failed, retrying in 1s ... (1/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-11-30T23:00:21Z\" level=warning msg=\"failed, retrying in 1s ... (2/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-11-30T23:00:59Z\" level=warning msg=\"failed, retrying in 1s ... (3/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: Error determining manifest MIME type for docker://haproxy:2.3: Error reading manifest sha256:058f434330f13dbbc46761f3e9a76af2408e9ec1898c9ac5a8baf00b42e756a9 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi167 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-11-30T23:04:36.497929Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi038.fwcakz on smithi038: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi038-fwcakz\n/bin/podman: stderr Error: error inspecting object: no such container ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi038-fwcakz\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi038.fwcakz\n/bin/podman: stderr Error: error inspecting object: no such container ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi038.fwcakz\nDeploy daemon haproxy.nfs.foo.smithi038.fwcakz ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi038 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2023-11-30T23:02:44Z\" level=warning msg=\"failed, retrying in 1s ... (1/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-11-30T23:03:21Z\" level=warning msg=\"failed, retrying in 1s ... (2/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-11-30T23:03:58Z\" level=warning msg=\"failed, retrying in 1s ... (3/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi038 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-11-30T23:04:36.502614Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi038.flofui on smithi038: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2023-11-30T23:04:36.503792Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi167.dxieha on smithi167: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.38/16"}, "status": {"created": "2023-11-30T22:58:56.312786Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.38/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2023-11-30T22:54:41.668043Z", "last_refresh": "2023-11-30T23:04:39.558331Z", "running": 2, "size": 2}}, {"events": ["2023-11-30T22:55:50.759225Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi038:172.21.15.38=smithi038", "smithi167:172.21.15.167=smithi167"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2023-11-30T22:55:50.756456Z", "last_refresh": "2023-11-30T23:04:39.558407Z", "running": 2, "size": 2}}, {"events": ["2023-11-30T22:58:56.311581Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2023-11-30T22:58:56.308071Z", "last_refresh": "2023-11-30T23:04:43.743907Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2023-11-30T22:54:46.136630Z", "last_refresh": "2023-11-30T23:04:39.558478Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2023-11-30T22:56:33.258058Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2023-11-30T22:56:33.253117Z", "last_refresh": "2023-11-30T23:04:39.558544Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2023-11-30T22:54:43.949497Z", "last_refresh": "2023-11-30T23:04:43.743520Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2023-11-30T22:58:52.105721Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2023-11-30T22:58:59.793467Z", "last_refresh": "2023-11-30T23:04:39.558809Z", "ports": [8800], "running": 2, "size": 2}}] 2023-11-30T23:06:47.982 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:06:47 smithi038 conmon[81956]: cluster 2023-11-30T23:06:46.598732+0000 mgr.smithi038.ldalxq (mgr.14182) 551 : cluster [DBG] pgmap v379: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2023-11-30T23:06:48.012 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:06:47 smithi167 conmon[87022]: cluster 2023-11-30T23:06:46.598732+0000 mgr.smithi038.ldalxq (mgr.14182) 551 : cluster [DBG] pgmap v379: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2023-11-30T23:06:48.012 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:06:47 smithi167 conmon[87022]: 2023-11-30T23:06:48.380 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2023-11-30T23:06:49.013 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:06:48 smithi167 conmon[87022]: audit 2023-11-30T23:06:47.956474+0000 mgr.smithi038.ldalxq (mgr.14182) 552 : audit [DBG] from='client.15170 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-11-30T23:06:49.013 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:06:48 smithi167 conmon[87022]: cluster 2023-11-30T23:06:48.599432+0000 2023-11-30T23:06:49.014 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:06:48 smithi167 conmon[87022]: mgr.smithi038.ldalxq (mgr.14182) 553 : cluster [DBG] pgmap v380: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2023-11-30T23:06:49.024 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:06:48 smithi038 conmon[81956]: audit 2023-11-30T23:06:47.956474 2023-11-30T23:06:49.024 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:06:48 smithi038 conmon[81956]: +0000 mgr.smithi038.ldalxq (mgr.14182) 552 : audit [DBG] from='client.15170 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-11-30T23:06:49.024 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:06:48 smithi038 conmon[81956]: cluster 2023-11-30T23:06:48.599432+0000 mgr.smithi038.ldalxq (mgr.14182) 553 : cluster [DBG] pgmap v380: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2023-11-30T23:06:49.380 DEBUG:teuthology.orchestra.run.smithi038:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:0dc074ce0b0b3b4f393f56dd32ef36884ebf45a9 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 3faf8b00-8fd3-11ee-95a2-87774f69a715 -- ceph orch ls -f json 2023-11-30T23:06:51.134 INFO:teuthology.orchestra.run.smithi038.stdout: 2023-11-30T23:06:51.134 INFO:teuthology.orchestra.run.smithi038.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2023-11-30T22:54:47.122758Z", "last_refresh": "2023-11-30T23:04:43.743252Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2023-11-30T22:54:42.674972Z", "last_refresh": "2023-11-30T23:04:39.558186Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2023-11-30T22:54:45.114633Z", "last_refresh": "2023-11-30T23:04:43.743389Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2023-11-30T22:58:56.317378Z service:ingress.nfs.foo [INFO] \"service was created\"", "2023-11-30T23:02:07.111634Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi167.buykdj on smithi167: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi167-buykdj\n/bin/podman: stderr Error: error inspecting object: no such container ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi167-buykdj\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi167.buykdj\n/bin/podman: stderr Error: error inspecting object: no such container ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi167.buykdj\nDeploy daemon haproxy.nfs.foo.smithi167.buykdj ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi167 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2023-11-30T22:59:44Z\" level=warning msg=\"failed, retrying in 1s ... (1/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-11-30T23:00:21Z\" level=warning msg=\"failed, retrying in 1s ... (2/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-11-30T23:00:59Z\" level=warning msg=\"failed, retrying in 1s ... (3/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: Error determining manifest MIME type for docker://haproxy:2.3: Error reading manifest sha256:058f434330f13dbbc46761f3e9a76af2408e9ec1898c9ac5a8baf00b42e756a9 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi167 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-11-30T23:04:36.497929Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi038.fwcakz on smithi038: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi038-fwcakz\n/bin/podman: stderr Error: error inspecting object: no such container ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi038-fwcakz\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi038.fwcakz\n/bin/podman: stderr Error: error inspecting object: no such container ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi038.fwcakz\nDeploy daemon haproxy.nfs.foo.smithi038.fwcakz ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi038 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2023-11-30T23:02:44Z\" level=warning msg=\"failed, retrying in 1s ... (1/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-11-30T23:03:21Z\" level=warning msg=\"failed, retrying in 1s ... (2/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-11-30T23:03:58Z\" level=warning msg=\"failed, retrying in 1s ... (3/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi038 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-11-30T23:04:36.502614Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi038.flofui on smithi038: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2023-11-30T23:04:36.503792Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi167.dxieha on smithi167: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.38/16"}, "status": {"created": "2023-11-30T22:58:56.312786Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.38/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2023-11-30T22:54:41.668043Z", "last_refresh": "2023-11-30T23:04:39.558331Z", "running": 2, "size": 2}}, {"events": ["2023-11-30T22:55:50.759225Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi038:172.21.15.38=smithi038", "smithi167:172.21.15.167=smithi167"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2023-11-30T22:55:50.756456Z", "last_refresh": "2023-11-30T23:04:39.558407Z", "running": 2, "size": 2}}, {"events": ["2023-11-30T22:58:56.311581Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2023-11-30T22:58:56.308071Z", "last_refresh": "2023-11-30T23:04:43.743907Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2023-11-30T22:54:46.136630Z", "last_refresh": "2023-11-30T23:04:39.558478Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2023-11-30T22:56:33.258058Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2023-11-30T22:56:33.253117Z", "last_refresh": "2023-11-30T23:04:39.558544Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2023-11-30T22:54:43.949497Z", "last_refresh": "2023-11-30T23:04:43.743520Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2023-11-30T22:58:52.105721Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2023-11-30T22:58:59.793467Z", "last_refresh": "2023-11-30T23:04:39.558809Z", "ports": [8800], "running": 2, "size": 2}}] 2023-11-30T23:06:51.543 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2023-11-30T23:06:52.012 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:06:51 smithi167 conmon[87022]: cluster 2023-11-30T23:06:50.600094+0000 mgr.smithi038.ldalxq (mgr.14182) 554 : cluster [DBG] pgmap v381: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2023-11-30T23:06:52.024 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:06:51 smithi038 conmon[81956]: cluster 2023-11-30T23:06:50.600094+0000 mgr.smithi038.ldalxq (mgr.14182) 554 : cluster [DBG] pgmap v381: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2023-11-30T23:06:52.544 DEBUG:teuthology.orchestra.run.smithi038:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:0dc074ce0b0b3b4f393f56dd32ef36884ebf45a9 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 3faf8b00-8fd3-11ee-95a2-87774f69a715 -- ceph orch ls -f json 2023-11-30T23:06:53.012 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:06:52 smithi167 conmon[87022]: audit 2023-11-30T23:06:51.130248+0000 mgr.smithi038.ldalxq (mgr.14182) 555 : audit [DBG] from='client.15174 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-11-30T23:06:53.023 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:06:52 smithi038 conmon[81956]: audit 2023-11-30T23:06:51.130248+0000 mgr.smithi038.ldalxq ( 2023-11-30T23:06:53.024 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:06:52 smithi038 conmon[81956]: mgr.14182) 555 : audit [DBG] from='client.15174 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-11-30T23:06:53.774 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:06:53 smithi038 conmon[81956]: cluster 2023-11-30T23:06:52 2023-11-30T23:06:53.774 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:06:53 smithi038 conmon[81956]: .600600+0000 mgr.smithi038.ldalxq (mgr.14182) 556 : cluster [DBG] pgmap v382: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2023-11-30T23:06:54.011 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:06:53 smithi167 conmon[87022]: cluster 2023-11-30T23:06:52.600600+0000 mgr.smithi038.ldalxq (mgr.14182) 556 : cluster [DBG] pgmap v382: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2023-11-30T23:06:54.253 INFO:teuthology.orchestra.run.smithi038.stdout: 2023-11-30T23:06:54.254 INFO:teuthology.orchestra.run.smithi038.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2023-11-30T22:54:47.122758Z", "last_refresh": "2023-11-30T23:04:43.743252Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2023-11-30T22:54:42.674972Z", "last_refresh": "2023-11-30T23:04:39.558186Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2023-11-30T22:54:45.114633Z", "last_refresh": "2023-11-30T23:04:43.743389Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2023-11-30T22:58:56.317378Z service:ingress.nfs.foo [INFO] \"service was created\"", "2023-11-30T23:02:07.111634Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi167.buykdj on smithi167: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi167-buykdj\n/bin/podman: stderr Error: error inspecting object: no such container ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi167-buykdj\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi167.buykdj\n/bin/podman: stderr Error: error inspecting object: no such container ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi167.buykdj\nDeploy daemon haproxy.nfs.foo.smithi167.buykdj ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi167 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2023-11-30T22:59:44Z\" level=warning msg=\"failed, retrying in 1s ... (1/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-11-30T23:00:21Z\" level=warning msg=\"failed, retrying in 1s ... (2/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-11-30T23:00:59Z\" level=warning msg=\"failed, retrying in 1s ... (3/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: Error determining manifest MIME type for docker://haproxy:2.3: Error reading manifest sha256:058f434330f13dbbc46761f3e9a76af2408e9ec1898c9ac5a8baf00b42e756a9 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi167 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-11-30T23:04:36.497929Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi038.fwcakz on smithi038: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi038-fwcakz\n/bin/podman: stderr Error: error inspecting object: no such container ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi038-fwcakz\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi038.fwcakz\n/bin/podman: stderr Error: error inspecting object: no such container ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi038.fwcakz\nDeploy daemon haproxy.nfs.foo.smithi038.fwcakz ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi038 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2023-11-30T23:02:44Z\" level=warning msg=\"failed, retrying in 1s ... (1/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-11-30T23:03:21Z\" level=warning msg=\"failed, retrying in 1s ... (2/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-11-30T23:03:58Z\" level=warning msg=\"failed, retrying in 1s ... (3/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi038 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-11-30T23:04:36.502614Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi038.flofui on smithi038: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2023-11-30T23:04:36.503792Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi167.dxieha on smithi167: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.38/16"}, "status": {"created": "2023-11-30T22:58:56.312786Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.38/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2023-11-30T22:54:41.668043Z", "last_refresh": "2023-11-30T23:04:39.558331Z", "running": 2, "size": 2}}, {"events": ["2023-11-30T22:55:50.759225Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi038:172.21.15.38=smithi038", "smithi167:172.21.15.167=smithi167"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2023-11-30T22:55:50.756456Z", "last_refresh": "2023-11-30T23:04:39.558407Z", "running": 2, "size": 2}}, {"events": ["2023-11-30T22:58:56.311581Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2023-11-30T22:58:56.308071Z", "last_refresh": "2023-11-30T23:04:43.743907Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2023-11-30T22:54:46.136630Z", "last_refresh": "2023-11-30T23:04:39.558478Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2023-11-30T22:56:33.258058Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2023-11-30T22:56:33.253117Z", "last_refresh": "2023-11-30T23:04:39.558544Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2023-11-30T22:54:43.949497Z", "last_refresh": "2023-11-30T23:04:43.743520Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2023-11-30T22:58:52.105721Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2023-11-30T22:58:59.793467Z", "last_refresh": "2023-11-30T23:04:39.558809Z", "ports": [8800], "running": 2, "size": 2}}] 2023-11-30T23:06:54.698 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2023-11-30T23:06:55.700 DEBUG:teuthology.orchestra.run.smithi038:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:0dc074ce0b0b3b4f393f56dd32ef36884ebf45a9 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 3faf8b00-8fd3-11ee-95a2-87774f69a715 -- ceph orch ls -f json 2023-11-30T23:06:56.012 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:06:55 smithi167 conmon[87022]: audit 2023-11-30T23:06:54.249493+0000 mgr.smithi038.ldalxq (mgr.14182) 557 : audit [DBG] from='client.15178 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-11-30T23:06:56.013 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:06:55 smithi167 conmon[87022]: 2023-11-30T23:06:56.014 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:06:55 smithi167 conmon[87022]: cluster 2023-11-30T23:06:54.601227+0000 mgr.smithi038.ldalxq (mgr.14182) 558 : cluster [DBG] pgmap v383: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2023-11-30T23:06:56.028 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:06:55 smithi038 conmon[81956]: audit 2023-11-30T23:06:54.249493+0000 mgr.smithi038.ldalxq 2023-11-30T23:06:56.028 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:06:55 smithi038 conmon[81956]: (mgr.14182) 557 : audit [DBG] from='client.15178 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-11-30T23:06:56.028 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:06:55 smithi038 conmon[81956]: cluster 2023-11-30T23:06:54.601227+0000 mgr.smithi038.ldalxq (mgr.14182) 558 : cluster [DBG] pgmap v383: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2023-11-30T23:06:57.462 INFO:teuthology.orchestra.run.smithi038.stdout: 2023-11-30T23:06:57.462 INFO:teuthology.orchestra.run.smithi038.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2023-11-30T22:54:47.122758Z", "last_refresh": "2023-11-30T23:04:43.743252Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2023-11-30T22:54:42.674972Z", "last_refresh": "2023-11-30T23:04:39.558186Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2023-11-30T22:54:45.114633Z", "last_refresh": "2023-11-30T23:04:43.743389Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2023-11-30T22:58:56.317378Z service:ingress.nfs.foo [INFO] \"service was created\"", "2023-11-30T23:02:07.111634Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi167.buykdj on smithi167: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi167-buykdj\n/bin/podman: stderr Error: error inspecting object: no such container ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi167-buykdj\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi167.buykdj\n/bin/podman: stderr Error: error inspecting object: no such container ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi167.buykdj\nDeploy daemon haproxy.nfs.foo.smithi167.buykdj ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi167 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2023-11-30T22:59:44Z\" level=warning msg=\"failed, retrying in 1s ... (1/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-11-30T23:00:21Z\" level=warning msg=\"failed, retrying in 1s ... (2/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-11-30T23:00:59Z\" level=warning msg=\"failed, retrying in 1s ... (3/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: Error determining manifest MIME type for docker://haproxy:2.3: Error reading manifest sha256:058f434330f13dbbc46761f3e9a76af2408e9ec1898c9ac5a8baf00b42e756a9 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi167 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-11-30T23:04:36.497929Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi038.fwcakz on smithi038: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi038-fwcakz\n/bin/podman: stderr Error: error inspecting object: no such container ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi038-fwcakz\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi038.fwcakz\n/bin/podman: stderr Error: error inspecting object: no such container ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi038.fwcakz\nDeploy daemon haproxy.nfs.foo.smithi038.fwcakz ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi038 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2023-11-30T23:02:44Z\" level=warning msg=\"failed, retrying in 1s ... (1/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-11-30T23:03:21Z\" level=warning msg=\"failed, retrying in 1s ... (2/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-11-30T23:03:58Z\" level=warning msg=\"failed, retrying in 1s ... (3/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi038 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-11-30T23:04:36.502614Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi038.flofui on smithi038: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2023-11-30T23:04:36.503792Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi167.dxieha on smithi167: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.38/16"}, "status": {"created": "2023-11-30T22:58:56.312786Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.38/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2023-11-30T22:54:41.668043Z", "last_refresh": "2023-11-30T23:04:39.558331Z", "running": 2, "size": 2}}, {"events": ["2023-11-30T22:55:50.759225Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi038:172.21.15.38=smithi038", "smithi167:172.21.15.167=smithi167"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2023-11-30T22:55:50.756456Z", "last_refresh": "2023-11-30T23:04:39.558407Z", "running": 2, "size": 2}}, {"events": ["2023-11-30T22:58:56.311581Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2023-11-30T22:58:56.308071Z", "last_refresh": "2023-11-30T23:04:43.743907Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2023-11-30T22:54:46.136630Z", "last_refresh": "2023-11-30T23:04:39.558478Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2023-11-30T22:56:33.258058Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2023-11-30T22:56:33.253117Z", "last_refresh": "2023-11-30T23:04:39.558544Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2023-11-30T22:54:43.949497Z", "last_refresh": "2023-11-30T23:04:43.743520Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2023-11-30T22:58:52.105721Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2023-11-30T22:58:59.793467Z", "last_refresh": "2023-11-30T23:04:39.558809Z", "ports": [8800], "running": 2, "size": 2}}] 2023-11-30T23:06:57.774 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:06:57 smithi038 conmon[81956]: cluster 2023-11-30T23:06:56.601868+0000 2023-11-30T23:06:57.774 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:06:57 smithi038 conmon[81956]: mgr.smithi038.ldalxq (mgr.14182) 559 : cluster [DBG] pgmap v384: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2023-11-30T23:06:57.861 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2023-11-30T23:06:58.011 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:06:57 smithi167 conmon[87022]: cluster 2023-11-30T23:06:56.601868+0000 mgr.smithi038.ldalxq (mgr.14182) 559 : cluster [DBG] pgmap v384: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2023-11-30T23:06:58.862 DEBUG:teuthology.orchestra.run.smithi038:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:0dc074ce0b0b3b4f393f56dd32ef36884ebf45a9 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 3faf8b00-8fd3-11ee-95a2-87774f69a715 -- ceph orch ls -f json 2023-11-30T23:06:58.945 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:06:58 smithi038 conmon[81956]: audit 2023-11-30T23:06:57.457879+0000 mgr.smithi038.ldalxq (mgr.14182) 560 : audit [DBG] from='client.15182 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-11-30T23:06:59.012 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:06:58 smithi167 conmon[87022]: audit 2023-11-30T23:06:57.457879+0000 mgr.smithi038.ldalxq (mgr.14182) 560 : audit [DBG] from='client.15182 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-11-30T23:06:59.012 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:06:58 smithi167 conmon[87022]: 2023-11-30T23:07:00.008 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:06:59 smithi038 conmon[81956]: cluster 2023-11-30T23:06:58.602633+0000 mgr.smithi038.ldalxq (mgr.14182) 561 : cluster [DBG] pgmap v385: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2023-11-30T23:07:00.015 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:06:59 smithi167 conmon[87022]: cluster 2023-11-30T23:06:58.602633+0000 mgr.smithi038.ldalxq (mgr.14182) 561 : cluster [DBG] pgmap v385: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2023-11-30T23:07:00.690 INFO:teuthology.orchestra.run.smithi038.stdout: 2023-11-30T23:07:00.690 INFO:teuthology.orchestra.run.smithi038.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2023-11-30T22:54:47.122758Z", "last_refresh": "2023-11-30T23:04:43.743252Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2023-11-30T22:54:42.674972Z", "last_refresh": "2023-11-30T23:04:39.558186Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2023-11-30T22:54:45.114633Z", "last_refresh": "2023-11-30T23:04:43.743389Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2023-11-30T22:58:56.317378Z service:ingress.nfs.foo [INFO] \"service was created\"", "2023-11-30T23:02:07.111634Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi167.buykdj on smithi167: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi167-buykdj\n/bin/podman: stderr Error: error inspecting object: no such container ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi167-buykdj\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi167.buykdj\n/bin/podman: stderr Error: error inspecting object: no such container ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi167.buykdj\nDeploy daemon haproxy.nfs.foo.smithi167.buykdj ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi167 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2023-11-30T22:59:44Z\" level=warning msg=\"failed, retrying in 1s ... (1/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-11-30T23:00:21Z\" level=warning msg=\"failed, retrying in 1s ... (2/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-11-30T23:00:59Z\" level=warning msg=\"failed, retrying in 1s ... (3/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: Error determining manifest MIME type for docker://haproxy:2.3: Error reading manifest sha256:058f434330f13dbbc46761f3e9a76af2408e9ec1898c9ac5a8baf00b42e756a9 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi167 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-11-30T23:04:36.497929Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi038.fwcakz on smithi038: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi038-fwcakz\n/bin/podman: stderr Error: error inspecting object: no such container ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi038-fwcakz\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi038.fwcakz\n/bin/podman: stderr Error: error inspecting object: no such container ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi038.fwcakz\nDeploy daemon haproxy.nfs.foo.smithi038.fwcakz ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi038 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2023-11-30T23:02:44Z\" level=warning msg=\"failed, retrying in 1s ... (1/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-11-30T23:03:21Z\" level=warning msg=\"failed, retrying in 1s ... (2/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-11-30T23:03:58Z\" level=warning msg=\"failed, retrying in 1s ... (3/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi038 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-11-30T23:04:36.502614Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi038.flofui on smithi038: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2023-11-30T23:04:36.503792Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi167.dxieha on smithi167: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.38/16"}, "status": {"created": "2023-11-30T22:58:56.312786Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.38/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2023-11-30T22:54:41.668043Z", "last_refresh": "2023-11-30T23:04:39.558331Z", "running": 2, "size": 2}}, {"events": ["2023-11-30T22:55:50.759225Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi038:172.21.15.38=smithi038", "smithi167:172.21.15.167=smithi167"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2023-11-30T22:55:50.756456Z", "last_refresh": "2023-11-30T23:04:39.558407Z", "running": 2, "size": 2}}, {"events": ["2023-11-30T22:58:56.311581Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2023-11-30T22:58:56.308071Z", "last_refresh": "2023-11-30T23:04:43.743907Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2023-11-30T22:54:46.136630Z", "last_refresh": "2023-11-30T23:04:39.558478Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2023-11-30T22:56:33.258058Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2023-11-30T22:56:33.253117Z", "last_refresh": "2023-11-30T23:04:39.558544Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2023-11-30T22:54:43.949497Z", "last_refresh": "2023-11-30T23:04:43.743520Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2023-11-30T22:58:52.105721Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2023-11-30T22:58:59.793467Z", "last_refresh": "2023-11-30T23:04:39.558809Z", "ports": [8800], "running": 2, "size": 2}}] 2023-11-30T23:07:01.012 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:07:00 smithi167 conmon[87022]: cluster 2023-11-30T23:07:00.603353+0000 mgr.smithi038.ldalxq (mgr.14182) 562 : cluster [DBG] pgmap v386: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2023-11-30T23:07:01.024 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:07:00 smithi038 conmon[81956]: cluster 2023-11-30T23:07: 2023-11-30T23:07:01.024 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:07:00 smithi038 conmon[81956]: 00.603353+0000 mgr.smithi038.ldalxq (mgr.14182) 562 : cluster [DBG] pgmap v386: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2023-11-30T23:07:01.111 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2023-11-30T23:07:02.012 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:07:01 smithi167 conmon[87022]: audit 2023-11-30T23:07:00.684174+0000 mgr.smithi038.ldalxq (mgr.14182) 563 : audit [DBG] 2023-11-30T23:07:02.012 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:07:01 smithi167 conmon[87022]: from='client.15186 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-11-30T23:07:02.024 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:07:01 smithi038 conmon[81956]: audit 2023-11-30T23:07:00.684174+0000 mgr.smithi038.ldalxq (mgr.14182) 563 : audit [DBG] from='client.15186 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-11-30T23:07:02.112 DEBUG:teuthology.orchestra.run.smithi038:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:0dc074ce0b0b3b4f393f56dd32ef36884ebf45a9 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 3faf8b00-8fd3-11ee-95a2-87774f69a715 -- ceph orch ls -f json 2023-11-30T23:07:03.012 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:07:02 smithi167 conmon[87022]: cluster 2023-11-30T23:07:02.604105+0000 mgr.smithi038.ldalxq (mgr.14182) 564 : cluster [DBG] 2023-11-30T23:07:03.012 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:07:02 smithi167 conmon[87022]: pgmap v387: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2023-11-30T23:07:03.024 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:07:02 smithi038 conmon[81956]: cluster 2023-11-30T23:07:02.604105+0000 mgr.smithi038.ldalxq (mgr.14182) 564 : cluster [DBG] pgmap v387: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2023-11-30T23:07:03.898 INFO:teuthology.orchestra.run.smithi038.stdout: 2023-11-30T23:07:03.899 INFO:teuthology.orchestra.run.smithi038.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2023-11-30T22:54:47.122758Z", "last_refresh": "2023-11-30T23:04:43.743252Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2023-11-30T22:54:42.674972Z", "last_refresh": "2023-11-30T23:04:39.558186Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2023-11-30T22:54:45.114633Z", "last_refresh": "2023-11-30T23:04:43.743389Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2023-11-30T22:58:56.317378Z service:ingress.nfs.foo [INFO] \"service was created\"", "2023-11-30T23:02:07.111634Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi167.buykdj on smithi167: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi167-buykdj\n/bin/podman: stderr Error: error inspecting object: no such container ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi167-buykdj\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi167.buykdj\n/bin/podman: stderr Error: error inspecting object: no such container ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi167.buykdj\nDeploy daemon haproxy.nfs.foo.smithi167.buykdj ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi167 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2023-11-30T22:59:44Z\" level=warning msg=\"failed, retrying in 1s ... (1/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-11-30T23:00:21Z\" level=warning msg=\"failed, retrying in 1s ... (2/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-11-30T23:00:59Z\" level=warning msg=\"failed, retrying in 1s ... (3/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: Error determining manifest MIME type for docker://haproxy:2.3: Error reading manifest sha256:058f434330f13dbbc46761f3e9a76af2408e9ec1898c9ac5a8baf00b42e756a9 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi167 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-11-30T23:04:36.497929Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi038.fwcakz on smithi038: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi038-fwcakz\n/bin/podman: stderr Error: error inspecting object: no such container ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi038-fwcakz\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi038.fwcakz\n/bin/podman: stderr Error: error inspecting object: no such container ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi038.fwcakz\nDeploy daemon haproxy.nfs.foo.smithi038.fwcakz ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi038 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2023-11-30T23:02:44Z\" level=warning msg=\"failed, retrying in 1s ... (1/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-11-30T23:03:21Z\" level=warning msg=\"failed, retrying in 1s ... (2/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-11-30T23:03:58Z\" level=warning msg=\"failed, retrying in 1s ... (3/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi038 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-11-30T23:04:36.502614Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi038.flofui on smithi038: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2023-11-30T23:04:36.503792Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi167.dxieha on smithi167: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.38/16"}, "status": {"created": "2023-11-30T22:58:56.312786Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.38/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2023-11-30T22:54:41.668043Z", "last_refresh": "2023-11-30T23:04:39.558331Z", "running": 2, "size": 2}}, {"events": ["2023-11-30T22:55:50.759225Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi038:172.21.15.38=smithi038", "smithi167:172.21.15.167=smithi167"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2023-11-30T22:55:50.756456Z", "last_refresh": "2023-11-30T23:04:39.558407Z", "running": 2, "size": 2}}, {"events": ["2023-11-30T22:58:56.311581Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2023-11-30T22:58:56.308071Z", "last_refresh": "2023-11-30T23:04:43.743907Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2023-11-30T22:54:46.136630Z", "last_refresh": "2023-11-30T23:04:39.558478Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2023-11-30T22:56:33.258058Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2023-11-30T22:56:33.253117Z", "last_refresh": "2023-11-30T23:04:39.558544Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2023-11-30T22:54:43.949497Z", "last_refresh": "2023-11-30T23:04:43.743520Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2023-11-30T22:58:52.105721Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2023-11-30T22:58:59.793467Z", "last_refresh": "2023-11-30T23:04:39.558809Z", "ports": [8800], "running": 2, "size": 2}}] 2023-11-30T23:07:04.362 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2023-11-30T23:07:05.363 DEBUG:teuthology.orchestra.run.smithi038:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:0dc074ce0b0b3b4f393f56dd32ef36884ebf45a9 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 3faf8b00-8fd3-11ee-95a2-87774f69a715 -- ceph orch ls -f json 2023-11-30T23:07:05.937 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:07:05 smithi038 conmon[81956]: audit 2023-11-30T23:07:03.894774+0000 2023-11-30T23:07:05.937 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:07:05 smithi038 conmon[81956]: mgr.smithi038.ldalxq (mgr.14182) 565 : audit [DBG] from='client.15190 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-11-30T23:07:05.938 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:07:05 smithi038 conmon[81956]: cluster 2023-11-30T23:07:04.604923+0000 mgr.smithi038.ldalxq (mgr.14182) 566 : cluster [DBG] pgmap v388: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2023-11-30T23:07:06.012 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:07:05 smithi167 conmon[87022]: audit 2023-11-30T23:07:03.894774+0000 mgr.smithi038.ldalxq (mgr.14182) 565 : audit 2023-11-30T23:07:06.012 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:07:05 smithi167 conmon[87022]: [DBG] from='client.15190 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-11-30T23:07:06.012 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:07:05 smithi167 conmon[87022]: cluster 2023-11-30T23:07:04.604923+0000 mgr.smithi038.ldalxq (mgr.14182) 566 : cluster [DBG] pgmap v388: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2023-11-30T23:07:07.078 INFO:teuthology.orchestra.run.smithi038.stdout: 2023-11-30T23:07:07.078 INFO:teuthology.orchestra.run.smithi038.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2023-11-30T22:54:47.122758Z", "last_refresh": "2023-11-30T23:04:43.743252Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2023-11-30T22:54:42.674972Z", "last_refresh": "2023-11-30T23:04:39.558186Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2023-11-30T22:54:45.114633Z", "last_refresh": "2023-11-30T23:04:43.743389Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2023-11-30T22:58:56.317378Z service:ingress.nfs.foo [INFO] \"service was created\"", "2023-11-30T23:02:07.111634Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi167.buykdj on smithi167: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi167-buykdj\n/bin/podman: stderr Error: error inspecting object: no such container ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi167-buykdj\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi167.buykdj\n/bin/podman: stderr Error: error inspecting object: no such container ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi167.buykdj\nDeploy daemon haproxy.nfs.foo.smithi167.buykdj ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi167 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2023-11-30T22:59:44Z\" level=warning msg=\"failed, retrying in 1s ... (1/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-11-30T23:00:21Z\" level=warning msg=\"failed, retrying in 1s ... (2/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-11-30T23:00:59Z\" level=warning msg=\"failed, retrying in 1s ... (3/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: Error determining manifest MIME type for docker://haproxy:2.3: Error reading manifest sha256:058f434330f13dbbc46761f3e9a76af2408e9ec1898c9ac5a8baf00b42e756a9 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi167 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-11-30T23:04:36.497929Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi038.fwcakz on smithi038: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi038-fwcakz\n/bin/podman: stderr Error: error inspecting object: no such container ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi038-fwcakz\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi038.fwcakz\n/bin/podman: stderr Error: error inspecting object: no such container ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi038.fwcakz\nDeploy daemon haproxy.nfs.foo.smithi038.fwcakz ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi038 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2023-11-30T23:02:44Z\" level=warning msg=\"failed, retrying in 1s ... (1/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-11-30T23:03:21Z\" level=warning msg=\"failed, retrying in 1s ... (2/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-11-30T23:03:58Z\" level=warning msg=\"failed, retrying in 1s ... (3/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi038 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-11-30T23:04:36.502614Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi038.flofui on smithi038: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2023-11-30T23:04:36.503792Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi167.dxieha on smithi167: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.38/16"}, "status": {"created": "2023-11-30T22:58:56.312786Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.38/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2023-11-30T22:54:41.668043Z", "last_refresh": "2023-11-30T23:04:39.558331Z", "running": 2, "size": 2}}, {"events": ["2023-11-30T22:55:50.759225Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi038:172.21.15.38=smithi038", "smithi167:172.21.15.167=smithi167"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2023-11-30T22:55:50.756456Z", "last_refresh": "2023-11-30T23:04:39.558407Z", "running": 2, "size": 2}}, {"events": ["2023-11-30T22:58:56.311581Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2023-11-30T22:58:56.308071Z", "last_refresh": "2023-11-30T23:04:43.743907Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2023-11-30T22:54:46.136630Z", "last_refresh": "2023-11-30T23:04:39.558478Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2023-11-30T22:56:33.258058Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2023-11-30T22:56:33.253117Z", "last_refresh": "2023-11-30T23:04:39.558544Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2023-11-30T22:54:43.949497Z", "last_refresh": "2023-11-30T23:04:43.743520Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2023-11-30T22:58:52.105721Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2023-11-30T22:58:59.793467Z", "last_refresh": "2023-11-30T23:04:39.558809Z", "ports": [8800], "running": 2, "size": 2}}] 2023-11-30T23:07:07.515 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2023-11-30T23:07:07.774 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:07:07 smithi038 conmon[81956]: cluster 2023-11-30T23:07:06.605625+0000 mgr.smithi038.ldalxq (mgr.14182) 567 : cluster [DBG] pgmap v389: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2023-11-30T23:07:08.012 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:07:07 smithi167 conmon[87022]: cluster 2023-11-30T23:07:06.605625+0000 mgr.smithi038.ldalxq (mgr.14182) 567 : cluster [DBG] pgmap v389: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2023-11-30T23:07:08.012 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:07:07 smithi167 conmon[87022]: 2023-11-30T23:07:08.516 DEBUG:teuthology.orchestra.run.smithi038:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:0dc074ce0b0b3b4f393f56dd32ef36884ebf45a9 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 3faf8b00-8fd3-11ee-95a2-87774f69a715 -- ceph orch ls -f json 2023-11-30T23:07:08.944 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:07:08 smithi038 conmon[81956]: audit 2023-11-30T23:07:07.073532+0000 mgr.smithi038.ldalxq (mgr.14182) 568 : audit [DBG] from='client.15194 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-11-30T23:07:09.012 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:07:08 smithi167 conmon[87022]: audit 2023-11-30T23:07:07.073532+0000 mgr.smithi038.ldalxq (mgr.14182) 568 : audit 2023-11-30T23:07:09.012 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:07:08 smithi167 conmon[87022]: [DBG] from='client.15194 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-11-30T23:07:09.976 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:07:09 smithi038 conmon[81956]: cluster 2023-11-30T23:07:08.606148+0000 mgr.smithi038.ldalxq (mgr 2023-11-30T23:07:09.976 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:07:09 smithi038 conmon[81956]: .14182) 569 : cluster [DBG] pgmap v390: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2023-11-30T23:07:10.012 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:07:09 smithi167 conmon[87022]: cluster 2023-11-30T23:07:08.606148+0000 mgr.smithi038.ldalxq (mgr.14182) 569 : cluster [DBG] pgmap v390: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2023-11-30T23:07:10.012 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:07:09 smithi167 conmon[87022]: 2023-11-30T23:07:10.363 INFO:teuthology.orchestra.run.smithi038.stdout: 2023-11-30T23:07:17.460 INFO:teuthology.orchestra.run.smithi038.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2023-11-30T22:54:47.122758Z", "last_refresh": "2023-11-30T23:04:43.743252Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2023-11-30T22:54:42.674972Z", "last_refresh": "2023-11-30T23:04:39.558186Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2023-11-30T22:54:45.114633Z", "last_refresh": "2023-11-30T23:04:43.743389Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2023-11-30T22:58:56.317378Z service:ingress.nfs.foo [INFO] \"service was created\"", "2023-11-30T23:02:07.111634Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi167.buykdj on smithi167: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi167-buykdj\n/bin/podman: stderr Error: error inspecting object: no such container ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi167-buykdj\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi167.buykdj\n/bin/podman: stderr Error: error inspecting object: no such container ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi167.buykdj\nDeploy daemon haproxy.nfs.foo.smithi167.buykdj ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi167 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2023-11-30T22:59:44Z\" level=warning msg=\"failed, retrying in 1s ... (1/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-11-30T23:00:21Z\" level=warning msg=\"failed, retrying in 1s ... (2/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-11-30T23:00:59Z\" level=warning msg=\"failed, retrying in 1s ... (3/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: Error determining manifest MIME type for docker://haproxy:2.3: Error reading manifest sha256:058f434330f13dbbc46761f3e9a76af2408e9ec1898c9ac5a8baf00b42e756a9 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi167 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-11-30T23:04:36.497929Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi038.fwcakz on smithi038: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi038-fwcakz\n/bin/podman: stderr Error: error inspecting object: no such container ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi038-fwcakz\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi038.fwcakz\n/bin/podman: stderr Error: error inspecting object: no such container ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi038.fwcakz\nDeploy daemon haproxy.nfs.foo.smithi038.fwcakz ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi038 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2023-11-30T23:02:44Z\" level=warning msg=\"failed, retrying in 1s ... (1/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-11-30T23:03:21Z\" level=warning msg=\"failed, retrying in 1s ... (2/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-11-30T23:03:58Z\" level=warning msg=\"failed, retrying in 1s ... (3/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi038 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-11-30T23:04:36.502614Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi038.flofui on smithi038: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2023-11-30T23:04:36.503792Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi167.dxieha on smithi167: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.38/16"}, "status": {"created": "2023-11-30T22:58:56.312786Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.38/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2023-11-30T22:54:41.668043Z", "last_refresh": "2023-11-30T23:04:39.558331Z", "running": 2, "size": 2}}, {"events": ["2023-11-30T22:55:50.759225Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi038:172.21.15.38=smithi038", "smithi167:172.21.15.167=smithi167"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2023-11-30T22:55:50.756456Z", "last_refresh": "2023-11-30T23:04:39.558407Z", "running": 2, "size": 2}}, {"events": ["2023-11-30T22:58:56.311581Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2023-11-30T22:58:56.308071Z", "last_refresh": "2023-11-30T23:04:43.743907Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2023-11-30T22:54:46.136630Z", "last_refresh": "2023-11-30T23:04:39.558478Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2023-11-30T22:56:33.258058Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2023-11-30T22:56:33.253117Z", "last_refresh": "2023-11-30T23:04:39.558544Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2023-11-30T22:54:43.949497Z", "last_refresh": "2023-11-30T23:04:43.743520Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2023-11-30T22:58:52.105721Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2023-11-30T22:58:59.793467Z", "last_refresh": "2023-11-30T23:04:39.558809Z", "ports": [8800], "running": 2, "size": 2}}] 2023-11-30T23:07:17.463 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2023-11-30T23:07:17.463 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:07:11 smithi167 conmon[87022]: audit 2023-11-30T23:07:10.359053+0000 mgr.smithi038.ldalxq (mgr.14182) 570 : audit [DBG] from='client.15198 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-11-30T23:07:17.463 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:07:11 smithi167 conmon[87022]: cluster 2023-11-30T23:07:10.606872+0000 mgr.smithi038.ldalxq (mgr.14182) 571 : cluster [DBG] pgmap v391: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2023-11-30T23:07:17.463 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:07:12 smithi167 conmon[87022]: cluster 2023-11-30T23:07:12.607585+0000 mgr.smithi038.ldalxq (mgr.14182) 572 : cluster [DBG] pgmap v392: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2023-11-30T23:07:17.463 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:07:12 smithi167 conmon[87022]: 2023-11-30T23:07:17.463 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:07:15 smithi167 conmon[87022]: cluster 2023-11-30T23:07:14.608504+0000 mgr.smithi038.ldalxq (mgr.14182) 573 : cluster [DBG] 2023-11-30T23:07:17.463 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:07:15 smithi167 conmon[87022]: pgmap v393: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2023-11-30T23:07:17.464 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:07:15 smithi167 conmon[87022]: audit 2023-11-30T23:07:14.864527+0000 mon.smithi038 (mon.0) 687 : audit [INF] from='mgr.14182 172.21.15.38:0/2999689707' entity='mgr.smithi038.ldalxq' cmd=[{"prefix": "auth rm", "entity": "client.ingress.nfs.foo.smithi167.igxkgw"}]: dispatch 2023-11-30T23:07:17.464 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:07:16 smithi167 conmon[87022]: cephadm 2023-11-30T23:07:14.863746+0000 mgr.smithi038.ldalxq (mgr.14182) 574 : cephadm [ERR] cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi167-igxkgw 2023-11-30T23:07:17.464 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:07:16 smithi167 conmon[87022]: /bin/podman: stderr Error: error inspecting object: no such container ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi167-igxkgw 2023-11-30T23:07:17.464 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:07:16 smithi167 conmon[87022]: Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi167.igxkgw 2023-11-30T23:07:17.464 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:07:16 smithi167 conmon[87022]: /bin/podman: stderr Error: error inspecting object: no such container ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi167.igxkgw 2023-11-30T23:07:17.464 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:07:16 smithi167 conmon[87022]: Deploy daemon haproxy.nfs.foo.smithi167.igxkgw ... 2023-11-30T23:07:17.464 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:07:16 smithi167 conmon[87022]: Non-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi167 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2023-11-30T23:07:17.464 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:07:16 smithi167 conmon[87022]: stat: stderr Trying to pull docker.io/library/haproxy:2.3... 2023-11-30T23:07:17.464 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:07:16 smithi167 conmon[87022]: stat: stderr time="2023-11-30T23:05:21Z" level=warning msg="failed, retrying in 1s ... (1/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit" 2023-11-30T23:07:17.464 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:07:16 smithi167 conmon[87022]: stat: stderr time="2023-11-30T23:05:59Z" level=warning msg="failed, retrying in 1s ... (2/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit" 2023-11-30T23:07:17.464 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:07:16 smithi167 conmon[87022]: stat: stderr time="2023-11-30T23:06:37Z" level=warning msg="failed, retrying in 1s ... (3/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit" 2023-11-30T23:07:17.465 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:07:16 smithi167 conmon[87022]: stat: stderr Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get "https://docker-mirror.front.sepia.ceph.com:5000/v2/": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit 2023-11-30T23:07:17.465 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:07:16 smithi167 conmon[87022]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi167 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2023-11-30T23:07:17.465 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:07:16 smithi167 conmon[87022]: Traceback (most recent call last): 2023-11-30T23:07:17.465 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:07:16 smithi167 conmon[87022]: File "/usr/share/ceph/mgr/cephadm/serve.py", line 1538, in _remote_connection 2023-11-30T23:07:17.465 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:07:16 smithi167 conmon[87022]: yield (conn, connr) 2023-11-30T23:07:17.465 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:07:16 smithi167 conmon[87022]: File "/usr/share/ceph/mgr/cephadm/serve.py", line 1426, in _run_cephadm 2023-11-30T23:07:17.465 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:07:16 smithi167 conmon[87022]: code, '\n'.join(err))) 2023-11-30T23:07:17.465 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:07:16 smithi167 conmon[87022]: orchestrator._interface.OrchestratorError: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi167-igxkgw 2023-11-30T23:07:17.465 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:07:16 smithi167 conmon[87022]: /bin/podman: stderr Error: error inspecting object: no such container ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi167-igxkgw 2023-11-30T23:07:17.465 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:07:16 smithi167 conmon[87022]: Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi167.igxkgw 2023-11-30T23:07:17.465 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:07:16 smithi167 conmon[87022]: /bin/podman: stderr Error: error inspecting object: no such container ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi167.igxkgw 2023-11-30T23:07:17.465 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:07:16 smithi167 conmon[87022]: Deploy daemon haproxy.nfs.foo.smithi167.igxkgw ... 2023-11-30T23:07:17.466 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:07:16 smithi167 conmon[87022]: Non-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi167 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2023-11-30T23:07:17.466 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:07:16 smithi167 conmon[87022]: stat: stderr Trying to pull docker.io/library/haproxy:2.3... 2023-11-30T23:07:17.466 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:07:16 smithi167 conmon[87022]: stat: stderr time="2023-11-30T23:05:21Z" level=warning msg="failed, retrying in 1s ... (1/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit" 2023-11-30T23:07:17.466 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:07:16 smithi167 conmon[87022]: stat: stderr time="2023-11-30T23:05:59Z" level=warning msg="failed, retrying in 1s ... (2/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit" 2023-11-30T23:07:17.466 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:07:16 smithi167 conmon[87022]: stat: stderr time="2023-11-30T23:06:37Z" level=warning msg="failed, retrying in 1s ... (3/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit" 2023-11-30T23:07:17.466 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:07:16 smithi167 conmon[87022]: stat: stderr Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get "https://docker-mirror.front.sepia.ceph.com:5000/v2/": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit 2023-11-30T23:07:17.466 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:07:16 smithi167 conmon[87022]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi167 -e CEPH_USE_RANDOM_NONCE=1 docker 2023-11-30T23:07:17.466 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:07:16 smithi167 conmon[87022]: .io/library/haproxy:2.3 -c %u %g /var/lib 2023-11-30T23:07:17.467 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:07:16 smithi167 conmon[87022]: cephadm 2023-11-30T23:07:14.864187+0000 mgr.smithi038.ldalxq (mgr.14182) 575 : cephadm [INF] Removing key for client.ingress.nfs.foo.smithi167.igxkgw 2023-11-30T23:07:17.467 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:07:16 smithi167 conmon[87022]: cephadm 2023-11-30T23:07:14.865336+0000 mgr.smithi038.ldalxq (mgr.14182) 576 : cephadm [ERR] Failed while placing haproxy.nfs.foo.smithi167.igxkgw on smithi167: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi167-igxkgw 2023-11-30T23:07:17.467 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:07:16 smithi167 conmon[87022]: /bin/podman: stderr Error: error inspecting object: no such container ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi167-igxkgw 2023-11-30T23:07:17.467 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:07:16 smithi167 conmon[87022]: Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi167.igxkgw 2023-11-30T23:07:17.467 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:07:16 smithi167 conmon[87022]: /bin/podman: stderr Error: error inspecting object: no such container ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi167.igxkgw 2023-11-30T23:07:17.490 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:07:16 smithi167 conmon[87022]: Deploy daemon haproxy.nfs.foo.smithi167.igxkgw ... 2023-11-30T23:07:17.491 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:07:16 smithi167 conmon[87022]: Non-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi167 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2023-11-30T23:07:17.491 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:07:16 smithi167 conmon[87022]: stat: stderr Trying to pull docker.io/library/haproxy:2.3... 2023-11-30T23:07:17.491 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:07:16 smithi167 conmon[87022]: stat: stderr time="2023-11-30T23:05:21Z" level=warning msg="failed, retrying in 1s ... (1/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit" 2023-11-30T23:07:17.491 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:07:16 smithi167 conmon[87022]: stat: stderr time="2023-11-30T23:05:59Z" level=warning msg="failed, retrying in 1s ... (2/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit" 2023-11-30T23:07:17.491 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:07:16 smithi167 conmon[87022]: stat: stderr time="2023-11-30T23:06:37Z" level=warning msg="failed, retrying in 1s ... (3/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit" 2023-11-30T23:07:17.491 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:07:16 smithi167 conmon[87022]: stat: stderr Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get "https://docker-mirror.front.sepia.ceph.com:5000/v2/": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit 2023-11-30T23:07:17.491 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:07:16 smithi167 conmon[87022]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi167 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2023-11-30T23:07:17.491 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:07:16 smithi167 conmon[87022]: cephadm 2023-11-30T23:07:14.867073+0000 mgr.smithi038.ldalxq (mgr.14182) 577 : cephadm [INF] Deploying daemon haproxy.nfs.foo.smithi038.ubrlmp on smithi038 2023-11-30T23:07:17.492 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:07:11 smithi038 conmon[81956]: audit 2023-11-30T23:07:10.359053+0000 mgr.smithi038.ldalxq (mgr.14182) 570 : audit [DBG] from='client.15198 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-11-30T23:07:17.492 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:07:11 smithi038 conmon[81956]: cluster 2023-11-30T23:07:10.606872+0000 mgr.smithi038.ldalxq (mgr.14182) 571 : cluster [DBG] pgmap v391: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2023-11-30T23:07:17.492 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:07:12 smithi038 conmon[81956]: cluster 2023-11-30T23:07:12.607585+0000 mgr.smithi038.ldalxq (mgr.14182) 572 : cluster [DBG] pgmap v392: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2023-11-30T23:07:17.492 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:07:15 smithi038 conmon[81956]: cluster 2023-11-30T23:07:14.608504+0000 mgr.smithi038.ldalxq (mgr.14182) 573 : cluster [DBG] pgmap v393: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2023-11-30T23:07:17.492 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:07:15 smithi038 conmon[81956]: audit 2023-11-30T23:07:14.864527+0000 mon.smithi038 (mon.0) 687 : audit [INF] from='mgr.14182 172.21.15.38:0/2999689707' entity='mgr.smithi038.ldalxq' cmd=[{"prefix": "auth rm", "entity": "client.ingress.nfs.foo.smithi167.igxkgw"}]: dispatch 2023-11-30T23:07:17.493 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:07:16 smithi038 conmon[81956]: cephadm 2023-11-30T23:07:14.863746+0000 mgr.smithi038.ldalxq (mgr.14182) 2023-11-30T23:07:17.493 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:07:16 smithi038 conmon[81956]: 574 : cephadm [ERR] cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi167-igxkgw 2023-11-30T23:07:17.493 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:07:16 smithi038 conmon[81956]: /bin/podman: stderr Error: error inspecting object: no such container ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi167-igxkgw 2023-11-30T23:07:17.493 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:07:16 smithi038 conmon[81956]: Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi167.igxkgw 2023-11-30T23:07:17.493 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:07:16 smithi038 conmon[81956]: /bin/podman: stderr Error: error inspecting object: no such container ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi167.igxkgw 2023-11-30T23:07:17.493 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:07:16 smithi038 conmon[81956]: Deploy daemon haproxy.nfs.foo.smithi167.igxkgw ... 2023-11-30T23:07:17.493 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:07:16 smithi038 conmon[81956]: Non-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi167 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2023-11-30T23:07:17.493 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:07:16 smithi038 conmon[81956]: stat: stderr Trying to pull docker.io/library/haproxy:2.3... 2023-11-30T23:07:17.493 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:07:16 smithi038 conmon[81956]: stat: stderr time="2023-11-30T23:05:21Z" level=warning msg="failed, retrying in 1s ... (1/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit" 2023-11-30T23:07:17.493 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:07:16 smithi038 conmon[81956]: stat: stderr time="2023-11-30T23:05:59Z" level=warning msg="failed, retrying in 1s ... (2/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit" 2023-11-30T23:07:17.493 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:07:16 smithi038 conmon[81956]: stat: stderr time="2023-11-30T23:06:37Z" level=warning msg="failed, retrying in 1s ... (3/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit" 2023-11-30T23:07:17.494 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:07:16 smithi038 conmon[81956]: stat: stderr Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get "https://docker-mirror.front.sepia.ceph.com:5000/v2/": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit 2023-11-30T23:07:17.494 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:07:16 smithi038 conmon[81956]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi167 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2023-11-30T23:07:17.494 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:07:16 smithi038 conmon[81956]: Traceback (most recent call last): 2023-11-30T23:07:17.514 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:07:16 smithi038 conmon[81956]: File "/usr/share/ceph/mgr/cephadm/serve.py", line 1538, in _remote_connection 2023-11-30T23:07:17.514 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:07:16 smithi038 conmon[81956]: yield (conn, connr) 2023-11-30T23:07:17.514 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:07:16 smithi038 conmon[81956]: File "/usr/share/ceph/mgr/cephadm/serve.py", line 1426, in _run_cephadm 2023-11-30T23:07:17.514 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:07:16 smithi038 conmon[81956]: code, '\n'.join(err))) 2023-11-30T23:07:17.515 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:07:16 smithi038 conmon[81956]: orchestrator._interface.OrchestratorError: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi167-igxkgw 2023-11-30T23:07:17.515 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:07:16 smithi038 conmon[81956]: /bin/podman: stderr Error: error inspecting object: no such container ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi167-igxkgw 2023-11-30T23:07:17.515 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:07:16 smithi038 conmon[81956]: Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi167.igxkgw 2023-11-30T23:07:17.515 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:07:16 smithi038 conmon[81956]: /bin/podman: stderr Error: error inspecting object: no such container ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi167.igxkgw 2023-11-30T23:07:17.515 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:07:16 smithi038 conmon[81956]: Deploy daemon haproxy.nfs.foo.smithi167.igxkgw ... 2023-11-30T23:07:17.515 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:07:16 smithi038 conmon[81956]: Non-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi167 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2023-11-30T23:07:17.515 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:07:16 smithi038 conmon[81956]: stat: stderr Trying to pull docker.io/library/haproxy:2.3... 2023-11-30T23:07:17.515 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:07:16 smithi038 conmon[81956]: stat: stderr time="2023-11-30T23:05:21Z" level=warning msg="failed, retrying in 1s ... (1/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit" 2023-11-30T23:07:17.515 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:07:16 smithi038 conmon[81956]: stat: stderr time="2023-11-30T23:05:59Z" level=warning msg="failed, retrying in 1s ... (2/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit" 2023-11-30T23:07:17.515 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:07:16 smithi038 conmon[81956]: stat: stderr time="2023-11-30T23:06:37Z" level=warning msg="failed, retrying in 1s ... (3/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit" 2023-11-30T23:07:17.515 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:07:16 smithi038 conmon[81956]: stat: stderr Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get "https://docker-mirror.front.sepia.ceph.com:5000/v2/": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit 2023-11-30T23:07:17.515 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:07:16 smithi038 conmon[81956]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi167 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2023-11-30T23:07:17.516 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:07:16 smithi038 conmon[81956]: cephadm 2023-11-30T23:07:14.864 2023-11-30T23:07:17.516 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:07:16 smithi038 conmon[81956]: 187+0000 mgr.smithi038.ldalxq (mgr.14182) 575 : cephadm [INF] Removing key for client.ingress.nfs.foo.smithi167.igxkgw 2023-11-30T23:07:17.516 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:07:16 smithi038 conmon[81956]: cephadm 2023-11-30T23:07:14.865336+0000 mgr.smithi038.ldalxq (mgr.14182) 576 : cephadm [ERR] Failed while placing haproxy.nfs.foo.smithi167.igxkgw on smithi167: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi167-igxkgw 2023-11-30T23:07:17.516 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:07:16 smithi038 conmon[81956]: /bin/podman: stderr Error: error inspecting object: no such container ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi167-igxkgw 2023-11-30T23:07:17.516 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:07:16 smithi038 conmon[81956]: Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi167.igxkgw 2023-11-30T23:07:17.516 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:07:16 smithi038 conmon[81956]: /bin/podman: stderr Error: error inspecting object: no such container ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi167.igxkgw 2023-11-30T23:07:17.516 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:07:16 smithi038 conmon[81956]: Deploy daemon haproxy.nfs.foo.smithi167.igxkgw ... 2023-11-30T23:07:17.516 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:07:16 smithi038 conmon[81956]: Non-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi167 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2023-11-30T23:07:17.516 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:07:16 smithi038 conmon[81956]: stat: stderr Trying to pull docker.io/library/haproxy:2.3... 2023-11-30T23:07:17.516 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:07:16 smithi038 conmon[81956]: stat: stderr time="2023-11-30T23:05:21Z" level=warning msg="failed, retrying in 1s ... (1/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit" 2023-11-30T23:07:17.516 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:07:16 smithi038 conmon[81956]: stat: stderr time="2023-11-30T23:05:59Z" level=warning msg="failed, retrying in 1s ... (2/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit" 2023-11-30T23:07:17.516 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:07:16 smithi038 conmon[81956]: stat: stderr time="2023-11-30T23:06:37Z" level=warning msg="failed, retrying in 1s ... (3/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit" 2023-11-30T23:07:17.516 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:07:16 smithi038 conmon[81956]: stat: stderr Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get "https://docker-mirror.front.sepia.ceph.com:5000/v2/": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit 2023-11-30T23:07:17.516 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:07:16 smithi038 conmon[81956]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi167 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2023-11-30T23:07:17.517 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:07:16 smithi038 conmon[81956]: cephadm 2023-11-30T23:07:14.867073+0000 mgr.smithi038.ldalxq (mgr.14182) 577 : cephadm [INF] Deploying daemon haproxy.nfs.foo.smithi038.ubrlmp on smithi038 2023-11-30T23:07:18.011 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:07:17 smithi167 conmon[87022]: cluster 2023-11-30T23:07:16.609570+0000 mgr.smithi038.ldalxq (mgr.14182) 578 : cluster [DBG] pgmap v394: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2023-11-30T23:07:18.024 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:07:17 smithi038 conmon[81956]: cluster 2023-11-30T23:07:16.609570+0000 mgr.smithi038.ldalxq (mgr.14182) 578 : cluster [DBG] pgmap v394: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2023-11-30T23:07:18.463 DEBUG:teuthology.orchestra.run.smithi038:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:0dc074ce0b0b3b4f393f56dd32ef36884ebf45a9 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 3faf8b00-8fd3-11ee-95a2-87774f69a715 -- ceph orch ls -f json 2023-11-30T23:07:18.774 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:07:18 smithi038 conmon[81956]: cluster 2023-11-30T23:07:18.610107+0000 mgr.smithi038.ldalxq 2023-11-30T23:07:18.774 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:07:18 smithi038 conmon[81956]: (mgr.14182) 579 : cluster [DBG] pgmap v395: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2023-11-30T23:07:19.012 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:07:18 smithi167 conmon[87022]: cluster 2023-11-30T23:07:18.610107+0000 mgr.smithi038.ldalxq (mgr.14182) 579 : cluster [DBG] pgmap v395: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2023-11-30T23:07:20.258 INFO:teuthology.orchestra.run.smithi038.stdout: 2023-11-30T23:07:20.258 INFO:teuthology.orchestra.run.smithi038.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2023-11-30T22:54:47.122758Z", "last_refresh": "2023-11-30T23:04:43.743252Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2023-11-30T22:54:42.674972Z", "last_refresh": "2023-11-30T23:04:39.558186Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2023-11-30T22:54:45.114633Z", "last_refresh": "2023-11-30T23:04:43.743389Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2023-11-30T23:02:07.111634Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi167.buykdj on smithi167: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi167-buykdj\n/bin/podman: stderr Error: error inspecting object: no such container ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi167-buykdj\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi167.buykdj\n/bin/podman: stderr Error: error inspecting object: no such container ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi167.buykdj\nDeploy daemon haproxy.nfs.foo.smithi167.buykdj ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi167 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2023-11-30T22:59:44Z\" level=warning msg=\"failed, retrying in 1s ... (1/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-11-30T23:00:21Z\" level=warning msg=\"failed, retrying in 1s ... (2/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-11-30T23:00:59Z\" level=warning msg=\"failed, retrying in 1s ... (3/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: Error determining manifest MIME type for docker://haproxy:2.3: Error reading manifest sha256:058f434330f13dbbc46761f3e9a76af2408e9ec1898c9ac5a8baf00b42e756a9 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi167 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-11-30T23:04:36.497929Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi038.fwcakz on smithi038: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi038-fwcakz\n/bin/podman: stderr Error: error inspecting object: no such container ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi038-fwcakz\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi038.fwcakz\n/bin/podman: stderr Error: error inspecting object: no such container ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi038.fwcakz\nDeploy daemon haproxy.nfs.foo.smithi038.fwcakz ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi038 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2023-11-30T23:02:44Z\" level=warning msg=\"failed, retrying in 1s ... (1/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-11-30T23:03:21Z\" level=warning msg=\"failed, retrying in 1s ... (2/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-11-30T23:03:58Z\" level=warning msg=\"failed, retrying in 1s ... (3/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi038 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-11-30T23:04:36.502614Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi038.flofui on smithi038: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2023-11-30T23:04:36.503792Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi167.dxieha on smithi167: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2023-11-30T23:07:14.865206Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi167.igxkgw on smithi167: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi167-igxkgw\n/bin/podman: stderr Error: error inspecting object: no such container ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi167-igxkgw\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi167.igxkgw\n/bin/podman: stderr Error: error inspecting object: no such container ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi167.igxkgw\nDeploy daemon haproxy.nfs.foo.smithi167.igxkgw ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi167 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2023-11-30T23:05:21Z\" level=warning msg=\"failed, retrying in 1s ... (1/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-11-30T23:05:59Z\" level=warning msg=\"failed, retrying in 1s ... (2/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-11-30T23:06:37Z\" level=warning msg=\"failed, retrying in 1s ... (3/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi167 -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": 9049, "virtual_ip": "10.0.31.38/16"}, "status": {"created": "2023-11-30T22:58:56.312786Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.38/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2023-11-30T22:54:41.668043Z", "last_refresh": "2023-11-30T23:04:39.558331Z", "running": 2, "size": 2}}, {"events": ["2023-11-30T22:55:50.759225Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi038:172.21.15.38=smithi038", "smithi167:172.21.15.167=smithi167"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2023-11-30T22:55:50.756456Z", "last_refresh": "2023-11-30T23:04:39.558407Z", "running": 2, "size": 2}}, {"events": ["2023-11-30T22:58:56.311581Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2023-11-30T22:58:56.308071Z", "last_refresh": "2023-11-30T23:04:43.743907Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2023-11-30T22:54:46.136630Z", "last_refresh": "2023-11-30T23:04:39.558478Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2023-11-30T22:56:33.258058Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2023-11-30T22:56:33.253117Z", "last_refresh": "2023-11-30T23:04:39.558544Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2023-11-30T22:54:43.949497Z", "last_refresh": "2023-11-30T23:04:43.743520Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2023-11-30T22:58:52.105721Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2023-11-30T22:58:59.793467Z", "last_refresh": "2023-11-30T23:04:39.558809Z", "ports": [8800], "running": 2, "size": 2}}] 2023-11-30T23:07:20.725 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2023-11-30T23:07:21.726 DEBUG:teuthology.orchestra.run.smithi038:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:0dc074ce0b0b3b4f393f56dd32ef36884ebf45a9 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 3faf8b00-8fd3-11ee-95a2-87774f69a715 -- ceph orch ls -f json 2023-11-30T23:07:22.012 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:07:21 smithi167 conmon[87022]: audit 2023-11-30T23:07:20.253714+0000 mgr.smithi038.ldalxq (mgr.14182) 580 : audit [DBG] from='client.15202 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-11-30T23:07:22.012 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:07:21 smithi167 conmon[87022]: cluster 2023-11-30T23:07:20 2023-11-30T23:07:22.012 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:07:21 smithi167 conmon[87022]: .610795+0000 mgr.smithi038.ldalxq (mgr.14182) 581 : cluster [DBG] pgmap v396: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2023-11-30T23:07:22.024 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:07:21 smithi038 conmon[81956]: audit 2023-11-30T23:07:20.253714+0000 mgr.smithi038.ldalxq 2023-11-30T23:07:22.024 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:07:21 smithi038 conmon[81956]: (mgr.14182) 580 : audit [DBG] from='client.15202 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-11-30T23:07:22.024 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:07:21 smithi038 conmon[81956]: cluster 2023-11-30T23:07:20.610795+0000 mgr.smithi038.ldalxq (mgr.14182) 581 : cluster [DBG] pgmap v396: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2023-11-30T23:07:23.012 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:07:22 smithi167 conmon[87022]: cluster 2023-11-30T23:07:22.611369+0000 mgr.smithi038.ldalxq (mgr.14182) 582 : cluster [DBG] 2023-11-30T23:07:23.012 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:07:22 smithi167 conmon[87022]: pgmap v397: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2023-11-30T23:07:23.023 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:07:22 smithi038 conmon[81956]: cluster 2023-11-30T23:07:22.611369+0000 mgr.smithi038.ldalxq (mgr.14182) 582 2023-11-30T23:07:23.024 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:07:22 smithi038 conmon[81956]: : cluster [DBG] pgmap v397: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2023-11-30T23:07:23.495 INFO:teuthology.orchestra.run.smithi038.stdout: 2023-11-30T23:07:23.495 INFO:teuthology.orchestra.run.smithi038.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2023-11-30T22:54:47.122758Z", "last_refresh": "2023-11-30T23:04:43.743252Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2023-11-30T22:54:42.674972Z", "last_refresh": "2023-11-30T23:04:39.558186Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2023-11-30T22:54:45.114633Z", "last_refresh": "2023-11-30T23:04:43.743389Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2023-11-30T23:02:07.111634Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi167.buykdj on smithi167: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi167-buykdj\n/bin/podman: stderr Error: error inspecting object: no such container ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi167-buykdj\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi167.buykdj\n/bin/podman: stderr Error: error inspecting object: no such container ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi167.buykdj\nDeploy daemon haproxy.nfs.foo.smithi167.buykdj ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi167 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2023-11-30T22:59:44Z\" level=warning msg=\"failed, retrying in 1s ... (1/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-11-30T23:00:21Z\" level=warning msg=\"failed, retrying in 1s ... (2/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-11-30T23:00:59Z\" level=warning msg=\"failed, retrying in 1s ... (3/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: Error determining manifest MIME type for docker://haproxy:2.3: Error reading manifest sha256:058f434330f13dbbc46761f3e9a76af2408e9ec1898c9ac5a8baf00b42e756a9 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi167 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-11-30T23:04:36.497929Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi038.fwcakz on smithi038: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi038-fwcakz\n/bin/podman: stderr Error: error inspecting object: no such container ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi038-fwcakz\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi038.fwcakz\n/bin/podman: stderr Error: error inspecting object: no such container ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi038.fwcakz\nDeploy daemon haproxy.nfs.foo.smithi038.fwcakz ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi038 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2023-11-30T23:02:44Z\" level=warning msg=\"failed, retrying in 1s ... (1/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-11-30T23:03:21Z\" level=warning msg=\"failed, retrying in 1s ... (2/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-11-30T23:03:58Z\" level=warning msg=\"failed, retrying in 1s ... (3/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi038 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-11-30T23:04:36.502614Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi038.flofui on smithi038: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2023-11-30T23:04:36.503792Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi167.dxieha on smithi167: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2023-11-30T23:07:14.865206Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi167.igxkgw on smithi167: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi167-igxkgw\n/bin/podman: stderr Error: error inspecting object: no such container ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi167-igxkgw\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi167.igxkgw\n/bin/podman: stderr Error: error inspecting object: no such container ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi167.igxkgw\nDeploy daemon haproxy.nfs.foo.smithi167.igxkgw ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi167 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2023-11-30T23:05:21Z\" level=warning msg=\"failed, retrying in 1s ... (1/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-11-30T23:05:59Z\" level=warning msg=\"failed, retrying in 1s ... (2/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-11-30T23:06:37Z\" level=warning msg=\"failed, retrying in 1s ... (3/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi167 -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": 9049, "virtual_ip": "10.0.31.38/16"}, "status": {"created": "2023-11-30T22:58:56.312786Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.38/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2023-11-30T22:54:41.668043Z", "last_refresh": "2023-11-30T23:04:39.558331Z", "running": 2, "size": 2}}, {"events": ["2023-11-30T22:55:50.759225Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi038:172.21.15.38=smithi038", "smithi167:172.21.15.167=smithi167"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2023-11-30T22:55:50.756456Z", "last_refresh": "2023-11-30T23:04:39.558407Z", "running": 2, "size": 2}}, {"events": ["2023-11-30T22:58:56.311581Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2023-11-30T22:58:56.308071Z", "last_refresh": "2023-11-30T23:04:43.743907Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2023-11-30T22:54:46.136630Z", "last_refresh": "2023-11-30T23:04:39.558478Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2023-11-30T22:56:33.258058Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2023-11-30T22:56:33.253117Z", "last_refresh": "2023-11-30T23:04:39.558544Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2023-11-30T22:54:43.949497Z", "last_refresh": "2023-11-30T23:04:43.743520Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2023-11-30T22:58:52.105721Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2023-11-30T22:58:59.793467Z", "last_refresh": "2023-11-30T23:04:39.558809Z", "ports": [8800], "running": 2, "size": 2}}] 2023-11-30T23:07:23.774 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:07:23 smithi038 conmon[81956]: audit 2023-11-30T23:07:23.490950+0000 mgr.smithi038.ldalxq (mgr.14182) 583 : audit [DBG] from='client.15206 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-11-30T23:07:23.889 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2023-11-30T23:07:24.011 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:07:23 smithi167 conmon[87022]: audit 2023-11-30T23:07:23.490950+0000 mgr.smithi038.ldalxq (mgr.14182) 583 : audit [DBG] from='client.15206 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-11-30T23:07:24.890 DEBUG:teuthology.orchestra.run.smithi038:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:0dc074ce0b0b3b4f393f56dd32ef36884ebf45a9 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 3faf8b00-8fd3-11ee-95a2-87774f69a715 -- ceph orch ls -f json 2023-11-30T23:07:25.023 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:07:24 smithi038 conmon[81956]: cluster 2023-11-30T23:07:24.612108+0000 mgr.smithi038.ldalxq ( 2023-11-30T23:07:25.024 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:07:24 smithi038 conmon[81956]: mgr.14182) 584 : cluster [DBG] pgmap v398: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2023-11-30T23:07:25.261 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:07:24 smithi167 conmon[87022]: cluster 2023-11-30T23:07:24.612108+0000 mgr.smithi038.ldalxq (mgr.14182) 584 : cluster [DBG] pgmap v398: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2023-11-30T23:07:26.609 INFO:teuthology.orchestra.run.smithi038.stdout: 2023-11-30T23:07:26.609 INFO:teuthology.orchestra.run.smithi038.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2023-11-30T22:54:47.122758Z", "last_refresh": "2023-11-30T23:04:43.743252Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2023-11-30T22:54:42.674972Z", "last_refresh": "2023-11-30T23:04:39.558186Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2023-11-30T22:54:45.114633Z", "last_refresh": "2023-11-30T23:04:43.743389Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2023-11-30T23:02:07.111634Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi167.buykdj on smithi167: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi167-buykdj\n/bin/podman: stderr Error: error inspecting object: no such container ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi167-buykdj\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi167.buykdj\n/bin/podman: stderr Error: error inspecting object: no such container ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi167.buykdj\nDeploy daemon haproxy.nfs.foo.smithi167.buykdj ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi167 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2023-11-30T22:59:44Z\" level=warning msg=\"failed, retrying in 1s ... (1/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-11-30T23:00:21Z\" level=warning msg=\"failed, retrying in 1s ... (2/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-11-30T23:00:59Z\" level=warning msg=\"failed, retrying in 1s ... (3/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: Error determining manifest MIME type for docker://haproxy:2.3: Error reading manifest sha256:058f434330f13dbbc46761f3e9a76af2408e9ec1898c9ac5a8baf00b42e756a9 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi167 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-11-30T23:04:36.497929Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi038.fwcakz on smithi038: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi038-fwcakz\n/bin/podman: stderr Error: error inspecting object: no such container ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi038-fwcakz\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi038.fwcakz\n/bin/podman: stderr Error: error inspecting object: no such container ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi038.fwcakz\nDeploy daemon haproxy.nfs.foo.smithi038.fwcakz ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi038 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2023-11-30T23:02:44Z\" level=warning msg=\"failed, retrying in 1s ... (1/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-11-30T23:03:21Z\" level=warning msg=\"failed, retrying in 1s ... (2/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-11-30T23:03:58Z\" level=warning msg=\"failed, retrying in 1s ... (3/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi038 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-11-30T23:04:36.502614Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi038.flofui on smithi038: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2023-11-30T23:04:36.503792Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi167.dxieha on smithi167: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2023-11-30T23:07:14.865206Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi167.igxkgw on smithi167: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi167-igxkgw\n/bin/podman: stderr Error: error inspecting object: no such container ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi167-igxkgw\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi167.igxkgw\n/bin/podman: stderr Error: error inspecting object: no such container ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi167.igxkgw\nDeploy daemon haproxy.nfs.foo.smithi167.igxkgw ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi167 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2023-11-30T23:05:21Z\" level=warning msg=\"failed, retrying in 1s ... (1/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-11-30T23:05:59Z\" level=warning msg=\"failed, retrying in 1s ... (2/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-11-30T23:06:37Z\" level=warning msg=\"failed, retrying in 1s ... (3/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi167 -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": 9049, "virtual_ip": "10.0.31.38/16"}, "status": {"created": "2023-11-30T22:58:56.312786Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.38/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2023-11-30T22:54:41.668043Z", "last_refresh": "2023-11-30T23:04:39.558331Z", "running": 2, "size": 2}}, {"events": ["2023-11-30T22:55:50.759225Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi038:172.21.15.38=smithi038", "smithi167:172.21.15.167=smithi167"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2023-11-30T22:55:50.756456Z", "last_refresh": "2023-11-30T23:04:39.558407Z", "running": 2, "size": 2}}, {"events": ["2023-11-30T22:58:56.311581Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2023-11-30T22:58:56.308071Z", "last_refresh": "2023-11-30T23:04:43.743907Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2023-11-30T22:54:46.136630Z", "last_refresh": "2023-11-30T23:04:39.558478Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2023-11-30T22:56:33.258058Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2023-11-30T22:56:33.253117Z", "last_refresh": "2023-11-30T23:04:39.558544Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2023-11-30T22:54:43.949497Z", "last_refresh": "2023-11-30T23:04:43.743520Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2023-11-30T22:58:52.105721Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2023-11-30T22:58:59.793467Z", "last_refresh": "2023-11-30T23:04:39.558809Z", "ports": [8800], "running": 2, "size": 2}}] 2023-11-30T23:07:27.042 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2023-11-30T23:07:28.012 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:07:27 smithi167 conmon[87022]: audit 2023-11-30T23:07:26.604768+0000 mgr.smithi038.ldalxq (mgr.14182) 585 : audit [DBG] from='client.15210 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-11-30T23:07:28.012 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:07:27 smithi167 conmon[87022]: cluster 2023-11-30T23:07:26.612925+0000 mgr.smithi038.ldalxq (mgr.14182) 586 : cluster [DBG] pgmap v399: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2023-11-30T23:07:28.024 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:07:27 smithi038 conmon[81956]: audit 2023-11-30T23:07:26.604768+0000 mgr.smithi038.ldalxq (mgr.14182) 585 : audit [DBG] from='client.15210 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-11-30T23:07:28.024 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:07:27 smithi038 conmon[81956]: cluster 2023-11-30T23:07:26.612925+0000 mgr.smithi038.ldalxq (mgr.14182) 586 : cluster [DBG] pgmap v399: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2023-11-30T23:07:28.043 DEBUG:teuthology.orchestra.run.smithi038:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:0dc074ce0b0b3b4f393f56dd32ef36884ebf45a9 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 3faf8b00-8fd3-11ee-95a2-87774f69a715 -- ceph orch ls -f json 2023-11-30T23:07:29.838 INFO:teuthology.orchestra.run.smithi038.stdout: 2023-11-30T23:07:29.839 INFO:teuthology.orchestra.run.smithi038.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2023-11-30T22:54:47.122758Z", "last_refresh": "2023-11-30T23:04:43.743252Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2023-11-30T22:54:42.674972Z", "last_refresh": "2023-11-30T23:04:39.558186Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2023-11-30T22:54:45.114633Z", "last_refresh": "2023-11-30T23:04:43.743389Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2023-11-30T23:02:07.111634Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi167.buykdj on smithi167: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi167-buykdj\n/bin/podman: stderr Error: error inspecting object: no such container ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi167-buykdj\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi167.buykdj\n/bin/podman: stderr Error: error inspecting object: no such container ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi167.buykdj\nDeploy daemon haproxy.nfs.foo.smithi167.buykdj ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi167 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2023-11-30T22:59:44Z\" level=warning msg=\"failed, retrying in 1s ... (1/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-11-30T23:00:21Z\" level=warning msg=\"failed, retrying in 1s ... (2/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-11-30T23:00:59Z\" level=warning msg=\"failed, retrying in 1s ... (3/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: Error determining manifest MIME type for docker://haproxy:2.3: Error reading manifest sha256:058f434330f13dbbc46761f3e9a76af2408e9ec1898c9ac5a8baf00b42e756a9 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi167 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-11-30T23:04:36.497929Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi038.fwcakz on smithi038: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi038-fwcakz\n/bin/podman: stderr Error: error inspecting object: no such container ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi038-fwcakz\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi038.fwcakz\n/bin/podman: stderr Error: error inspecting object: no such container ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi038.fwcakz\nDeploy daemon haproxy.nfs.foo.smithi038.fwcakz ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi038 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2023-11-30T23:02:44Z\" level=warning msg=\"failed, retrying in 1s ... (1/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-11-30T23:03:21Z\" level=warning msg=\"failed, retrying in 1s ... (2/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-11-30T23:03:58Z\" level=warning msg=\"failed, retrying in 1s ... (3/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi038 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-11-30T23:04:36.502614Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi038.flofui on smithi038: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2023-11-30T23:04:36.503792Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi167.dxieha on smithi167: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2023-11-30T23:07:14.865206Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi167.igxkgw on smithi167: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi167-igxkgw\n/bin/podman: stderr Error: error inspecting object: no such container ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi167-igxkgw\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi167.igxkgw\n/bin/podman: stderr Error: error inspecting object: no such container ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi167.igxkgw\nDeploy daemon haproxy.nfs.foo.smithi167.igxkgw ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi167 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2023-11-30T23:05:21Z\" level=warning msg=\"failed, retrying in 1s ... (1/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-11-30T23:05:59Z\" level=warning msg=\"failed, retrying in 1s ... (2/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-11-30T23:06:37Z\" level=warning msg=\"failed, retrying in 1s ... (3/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi167 -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": 9049, "virtual_ip": "10.0.31.38/16"}, "status": {"created": "2023-11-30T22:58:56.312786Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.38/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2023-11-30T22:54:41.668043Z", "last_refresh": "2023-11-30T23:04:39.558331Z", "running": 2, "size": 2}}, {"events": ["2023-11-30T22:55:50.759225Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi038:172.21.15.38=smithi038", "smithi167:172.21.15.167=smithi167"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2023-11-30T22:55:50.756456Z", "last_refresh": "2023-11-30T23:04:39.558407Z", "running": 2, "size": 2}}, {"events": ["2023-11-30T22:58:56.311581Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2023-11-30T22:58:56.308071Z", "last_refresh": "2023-11-30T23:04:43.743907Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2023-11-30T22:54:46.136630Z", "last_refresh": "2023-11-30T23:04:39.558478Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2023-11-30T22:56:33.258058Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2023-11-30T22:56:33.253117Z", "last_refresh": "2023-11-30T23:04:39.558544Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2023-11-30T22:54:43.949497Z", "last_refresh": "2023-11-30T23:04:43.743520Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2023-11-30T22:58:52.105721Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2023-11-30T22:58:59.793467Z", "last_refresh": "2023-11-30T23:04:39.558809Z", "ports": [8800], "running": 2, "size": 2}}] 2023-11-30T23:07:30.011 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:07:29 smithi167 conmon[87022]: cluster 2023-11-30T23:07:28.613431+0000 mgr.smithi038.ldalxq (mgr.14182) 587 : cluster [DBG] pgmap v400: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2023-11-30T23:07:30.023 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:07:29 smithi038 conmon[81956]: cluster 2023-11-30T23:07:28.613431+0000 mgr.smithi038.ldalxq ( 2023-11-30T23:07:30.024 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:07:29 smithi038 conmon[81956]: mgr.14182) 587 : cluster [DBG] pgmap v400: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2023-11-30T23:07:30.310 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2023-11-30T23:07:31.310 DEBUG:teuthology.orchestra.run.smithi038:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:0dc074ce0b0b3b4f393f56dd32ef36884ebf45a9 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 3faf8b00-8fd3-11ee-95a2-87774f69a715 -- ceph orch ls -f json 2023-11-30T23:07:32.012 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:07:31 smithi167 conmon[87022]: audit 2023-11-30T23:07:29.834503+0000 mgr.smithi038.ldalxq (mgr.14182) 588 : audit [DBG] from='client.15214 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-11-30T23:07:32.012 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:07:31 smithi167 conmon[87022]: cluster 2023-11-30T23:07:30.614125+0000 mgr.smithi038.ldalxq (mgr.14182) 589 : cluster [DBG] pgmap v401: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2023-11-30T23:07:32.021 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:07:31 smithi038 conmon[81956]: audit 2023-11-30T23:07:29.834503+0000 mgr.smithi038.ldalxq (mgr.14182) 588 : audit [DBG] from='client.15214 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-11-30T23:07:32.021 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:07:31 smithi038 conmon[81956]: cluster 2023-11-30T23:07:30.614125+0000 mgr.smithi038.ldalxq (mgr.14182) 589 : cluster [DBG] pgmap v401: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2023-11-30T23:07:33.013 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:07:32 smithi167 conmon[87022]: cluster 2023-11-30T23:07:32.614652+0000 mgr.smithi038.ldalxq (mgr.14182) 590 : cluster [DBG] pgmap v402: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2023-11-30T23:07:33.024 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:07:32 smithi038 conmon[81956]: cluster 2023-11-30T23:07:32.614652+0000 2023-11-30T23:07:33.024 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:07:32 smithi038 conmon[81956]: mgr.smithi038.ldalxq (mgr.14182) 590 : cluster [DBG] pgmap v402: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2023-11-30T23:07:33.218 INFO:teuthology.orchestra.run.smithi038.stdout: 2023-11-30T23:07:33.218 INFO:teuthology.orchestra.run.smithi038.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2023-11-30T22:54:47.122758Z", "last_refresh": "2023-11-30T23:04:43.743252Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2023-11-30T22:54:42.674972Z", "last_refresh": "2023-11-30T23:04:39.558186Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2023-11-30T22:54:45.114633Z", "last_refresh": "2023-11-30T23:04:43.743389Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2023-11-30T23:02:07.111634Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi167.buykdj on smithi167: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi167-buykdj\n/bin/podman: stderr Error: error inspecting object: no such container ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi167-buykdj\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi167.buykdj\n/bin/podman: stderr Error: error inspecting object: no such container ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi167.buykdj\nDeploy daemon haproxy.nfs.foo.smithi167.buykdj ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi167 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2023-11-30T22:59:44Z\" level=warning msg=\"failed, retrying in 1s ... (1/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-11-30T23:00:21Z\" level=warning msg=\"failed, retrying in 1s ... (2/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-11-30T23:00:59Z\" level=warning msg=\"failed, retrying in 1s ... (3/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: Error determining manifest MIME type for docker://haproxy:2.3: Error reading manifest sha256:058f434330f13dbbc46761f3e9a76af2408e9ec1898c9ac5a8baf00b42e756a9 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi167 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-11-30T23:04:36.497929Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi038.fwcakz on smithi038: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi038-fwcakz\n/bin/podman: stderr Error: error inspecting object: no such container ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi038-fwcakz\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi038.fwcakz\n/bin/podman: stderr Error: error inspecting object: no such container ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi038.fwcakz\nDeploy daemon haproxy.nfs.foo.smithi038.fwcakz ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi038 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2023-11-30T23:02:44Z\" level=warning msg=\"failed, retrying in 1s ... (1/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-11-30T23:03:21Z\" level=warning msg=\"failed, retrying in 1s ... (2/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-11-30T23:03:58Z\" level=warning msg=\"failed, retrying in 1s ... (3/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi038 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-11-30T23:04:36.502614Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi038.flofui on smithi038: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2023-11-30T23:04:36.503792Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi167.dxieha on smithi167: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2023-11-30T23:07:14.865206Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi167.igxkgw on smithi167: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi167-igxkgw\n/bin/podman: stderr Error: error inspecting object: no such container ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi167-igxkgw\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi167.igxkgw\n/bin/podman: stderr Error: error inspecting object: no such container ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi167.igxkgw\nDeploy daemon haproxy.nfs.foo.smithi167.igxkgw ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi167 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2023-11-30T23:05:21Z\" level=warning msg=\"failed, retrying in 1s ... (1/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-11-30T23:05:59Z\" level=warning msg=\"failed, retrying in 1s ... (2/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-11-30T23:06:37Z\" level=warning msg=\"failed, retrying in 1s ... (3/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi167 -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": 9049, "virtual_ip": "10.0.31.38/16"}, "status": {"created": "2023-11-30T22:58:56.312786Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.38/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2023-11-30T22:54:41.668043Z", "last_refresh": "2023-11-30T23:04:39.558331Z", "running": 2, "size": 2}}, {"events": ["2023-11-30T22:55:50.759225Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi038:172.21.15.38=smithi038", "smithi167:172.21.15.167=smithi167"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2023-11-30T22:55:50.756456Z", "last_refresh": "2023-11-30T23:04:39.558407Z", "running": 2, "size": 2}}, {"events": ["2023-11-30T22:58:56.311581Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2023-11-30T22:58:56.308071Z", "last_refresh": "2023-11-30T23:04:43.743907Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2023-11-30T22:54:46.136630Z", "last_refresh": "2023-11-30T23:04:39.558478Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2023-11-30T22:56:33.258058Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2023-11-30T22:56:33.253117Z", "last_refresh": "2023-11-30T23:04:39.558544Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2023-11-30T22:54:43.949497Z", "last_refresh": "2023-11-30T23:04:43.743520Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2023-11-30T22:58:52.105721Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2023-11-30T22:58:59.793467Z", "last_refresh": "2023-11-30T23:04:39.558809Z", "ports": [8800], "running": 2, "size": 2}}] 2023-11-30T23:07:33.662 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2023-11-30T23:07:34.011 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:07:33 smithi167 conmon[87022]: audit 2023-11-30T23:07:33.213989+0000 mgr.smithi038.ldalxq (mgr.14182) 591 : audit [DBG] from='client.15218 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-11-30T23:07:34.024 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:07:33 smithi038 conmon[81956]: audit 2023-11-30T23:07:33.213989+0000 mgr.smithi038.ldalxq (mgr.14182) 591 : 2023-11-30T23:07:34.024 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:07:33 smithi038 conmon[81956]: audit [DBG] from='client.15218 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-11-30T23:07:34.663 DEBUG:teuthology.orchestra.run.smithi038:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:0dc074ce0b0b3b4f393f56dd32ef36884ebf45a9 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 3faf8b00-8fd3-11ee-95a2-87774f69a715 -- ceph orch ls -f json 2023-11-30T23:07:35.023 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:07:34 smithi038 conmon[81956]: cluster 2023-11-30T23:07:34.615570+0000 mgr.smithi038.ldalxq (mgr.14182) 592 : cluster 2023-11-30T23:07:35.024 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:07:34 smithi038 conmon[81956]: [DBG] pgmap v403: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2023-11-30T23:07:35.262 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:07:34 smithi167 conmon[87022]: cluster 2023-11-30T23:07:34.615570+0000 mgr.smithi038.ldalxq (mgr.14182) 592 : cluster [DBG] pgmap v403: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2023-11-30T23:07:36.375 INFO:teuthology.orchestra.run.smithi038.stdout: 2023-11-30T23:07:36.376 INFO:teuthology.orchestra.run.smithi038.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2023-11-30T22:54:47.122758Z", "last_refresh": "2023-11-30T23:04:43.743252Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2023-11-30T22:54:42.674972Z", "last_refresh": "2023-11-30T23:04:39.558186Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2023-11-30T22:54:45.114633Z", "last_refresh": "2023-11-30T23:04:43.743389Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2023-11-30T23:02:07.111634Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi167.buykdj on smithi167: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi167-buykdj\n/bin/podman: stderr Error: error inspecting object: no such container ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi167-buykdj\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi167.buykdj\n/bin/podman: stderr Error: error inspecting object: no such container ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi167.buykdj\nDeploy daemon haproxy.nfs.foo.smithi167.buykdj ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi167 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2023-11-30T22:59:44Z\" level=warning msg=\"failed, retrying in 1s ... (1/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-11-30T23:00:21Z\" level=warning msg=\"failed, retrying in 1s ... (2/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-11-30T23:00:59Z\" level=warning msg=\"failed, retrying in 1s ... (3/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: Error determining manifest MIME type for docker://haproxy:2.3: Error reading manifest sha256:058f434330f13dbbc46761f3e9a76af2408e9ec1898c9ac5a8baf00b42e756a9 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi167 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-11-30T23:04:36.497929Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi038.fwcakz on smithi038: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi038-fwcakz\n/bin/podman: stderr Error: error inspecting object: no such container ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi038-fwcakz\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi038.fwcakz\n/bin/podman: stderr Error: error inspecting object: no such container ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi038.fwcakz\nDeploy daemon haproxy.nfs.foo.smithi038.fwcakz ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi038 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2023-11-30T23:02:44Z\" level=warning msg=\"failed, retrying in 1s ... (1/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-11-30T23:03:21Z\" level=warning msg=\"failed, retrying in 1s ... (2/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-11-30T23:03:58Z\" level=warning msg=\"failed, retrying in 1s ... (3/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi038 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-11-30T23:04:36.502614Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi038.flofui on smithi038: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2023-11-30T23:04:36.503792Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi167.dxieha on smithi167: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2023-11-30T23:07:14.865206Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi167.igxkgw on smithi167: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi167-igxkgw\n/bin/podman: stderr Error: error inspecting object: no such container ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi167-igxkgw\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi167.igxkgw\n/bin/podman: stderr Error: error inspecting object: no such container ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi167.igxkgw\nDeploy daemon haproxy.nfs.foo.smithi167.igxkgw ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi167 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2023-11-30T23:05:21Z\" level=warning msg=\"failed, retrying in 1s ... (1/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-11-30T23:05:59Z\" level=warning msg=\"failed, retrying in 1s ... (2/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-11-30T23:06:37Z\" level=warning msg=\"failed, retrying in 1s ... (3/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi167 -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": 9049, "virtual_ip": "10.0.31.38/16"}, "status": {"created": "2023-11-30T22:58:56.312786Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.38/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2023-11-30T22:54:41.668043Z", "last_refresh": "2023-11-30T23:04:39.558331Z", "running": 2, "size": 2}}, {"events": ["2023-11-30T22:55:50.759225Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi038:172.21.15.38=smithi038", "smithi167:172.21.15.167=smithi167"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2023-11-30T22:55:50.756456Z", "last_refresh": "2023-11-30T23:04:39.558407Z", "running": 2, "size": 2}}, {"events": ["2023-11-30T22:58:56.311581Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2023-11-30T22:58:56.308071Z", "last_refresh": "2023-11-30T23:04:43.743907Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2023-11-30T22:54:46.136630Z", "last_refresh": "2023-11-30T23:04:39.558478Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2023-11-30T22:56:33.258058Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2023-11-30T22:56:33.253117Z", "last_refresh": "2023-11-30T23:04:39.558544Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2023-11-30T22:54:43.949497Z", "last_refresh": "2023-11-30T23:04:43.743520Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2023-11-30T22:58:52.105721Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2023-11-30T22:58:59.793467Z", "last_refresh": "2023-11-30T23:04:39.558809Z", "ports": [8800], "running": 2, "size": 2}}] 2023-11-30T23:07:36.823 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2023-11-30T23:07:37.823 DEBUG:teuthology.orchestra.run.smithi038:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:0dc074ce0b0b3b4f393f56dd32ef36884ebf45a9 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 3faf8b00-8fd3-11ee-95a2-87774f69a715 -- ceph orch ls -f json 2023-11-30T23:07:38.012 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:07:37 smithi167 conmon[87022]: audit 2023-11-30T23:07:36.371447+0000 mgr.smithi038.ldalxq (mgr.14182) 593 : audit [DBG] from='client.15222 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-11-30T23:07:38.012 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:07:37 smithi167 conmon[87022]: cluster 2023-11-30T23:07:38.012 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:07:37 smithi167 conmon[87022]: 2023-11-30T23:07:36.616522+0000 mgr.smithi038.ldalxq (mgr.14182) 594 : cluster [DBG] pgmap v404: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2023-11-30T23:07:38.024 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:07:37 smithi038 conmon[81956]: audit 2023-11-30T23:07:36.371447+0000 mgr.smithi038.ldalxq (mgr.14182) 593 : audit [DBG] from='client.15222 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-11-30T23:07:38.024 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:07:37 smithi038 conmon[81956]: cluster 2023-11-30T23:07:36.616522+0000 mgr.smithi038.ldalxq (mgr.14182) 594 : cluster [DBG] pgmap v404: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2023-11-30T23:07:39.578 INFO:teuthology.orchestra.run.smithi038.stdout: 2023-11-30T23:07:39.579 INFO:teuthology.orchestra.run.smithi038.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2023-11-30T22:54:47.122758Z", "last_refresh": "2023-11-30T23:04:43.743252Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2023-11-30T22:54:42.674972Z", "last_refresh": "2023-11-30T23:04:39.558186Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2023-11-30T22:54:45.114633Z", "last_refresh": "2023-11-30T23:04:43.743389Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2023-11-30T23:02:07.111634Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi167.buykdj on smithi167: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi167-buykdj\n/bin/podman: stderr Error: error inspecting object: no such container ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi167-buykdj\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi167.buykdj\n/bin/podman: stderr Error: error inspecting object: no such container ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi167.buykdj\nDeploy daemon haproxy.nfs.foo.smithi167.buykdj ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi167 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2023-11-30T22:59:44Z\" level=warning msg=\"failed, retrying in 1s ... (1/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-11-30T23:00:21Z\" level=warning msg=\"failed, retrying in 1s ... (2/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-11-30T23:00:59Z\" level=warning msg=\"failed, retrying in 1s ... (3/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: Error determining manifest MIME type for docker://haproxy:2.3: Error reading manifest sha256:058f434330f13dbbc46761f3e9a76af2408e9ec1898c9ac5a8baf00b42e756a9 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi167 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-11-30T23:04:36.497929Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi038.fwcakz on smithi038: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi038-fwcakz\n/bin/podman: stderr Error: error inspecting object: no such container ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi038-fwcakz\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi038.fwcakz\n/bin/podman: stderr Error: error inspecting object: no such container ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi038.fwcakz\nDeploy daemon haproxy.nfs.foo.smithi038.fwcakz ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi038 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2023-11-30T23:02:44Z\" level=warning msg=\"failed, retrying in 1s ... (1/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-11-30T23:03:21Z\" level=warning msg=\"failed, retrying in 1s ... (2/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-11-30T23:03:58Z\" level=warning msg=\"failed, retrying in 1s ... (3/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi038 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-11-30T23:04:36.502614Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi038.flofui on smithi038: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2023-11-30T23:04:36.503792Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi167.dxieha on smithi167: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2023-11-30T23:07:14.865206Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi167.igxkgw on smithi167: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi167-igxkgw\n/bin/podman: stderr Error: error inspecting object: no such container ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi167-igxkgw\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi167.igxkgw\n/bin/podman: stderr Error: error inspecting object: no such container ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi167.igxkgw\nDeploy daemon haproxy.nfs.foo.smithi167.igxkgw ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi167 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2023-11-30T23:05:21Z\" level=warning msg=\"failed, retrying in 1s ... (1/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-11-30T23:05:59Z\" level=warning msg=\"failed, retrying in 1s ... (2/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-11-30T23:06:37Z\" level=warning msg=\"failed, retrying in 1s ... (3/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi167 -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": 9049, "virtual_ip": "10.0.31.38/16"}, "status": {"created": "2023-11-30T22:58:56.312786Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.38/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2023-11-30T22:54:41.668043Z", "last_refresh": "2023-11-30T23:04:39.558331Z", "running": 2, "size": 2}}, {"events": ["2023-11-30T22:55:50.759225Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi038:172.21.15.38=smithi038", "smithi167:172.21.15.167=smithi167"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2023-11-30T22:55:50.756456Z", "last_refresh": "2023-11-30T23:04:39.558407Z", "running": 2, "size": 2}}, {"events": ["2023-11-30T22:58:56.311581Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2023-11-30T22:58:56.308071Z", "last_refresh": "2023-11-30T23:04:43.743907Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2023-11-30T22:54:46.136630Z", "last_refresh": "2023-11-30T23:04:39.558478Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2023-11-30T22:56:33.258058Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2023-11-30T22:56:33.253117Z", "last_refresh": "2023-11-30T23:04:39.558544Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2023-11-30T22:54:43.949497Z", "last_refresh": "2023-11-30T23:04:43.743520Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2023-11-30T22:58:52.105721Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2023-11-30T22:58:59.793467Z", "last_refresh": "2023-11-30T23:04:39.558809Z", "ports": [8800], "running": 2, "size": 2}}] 2023-11-30T23:07:39.978 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:07:39 smithi038 conmon[81956]: cluster 2023-11-30T23:07:38.617196 2023-11-30T23:07:39.978 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:07:39 smithi038 conmon[81956]: +0000 mgr.smithi038.ldalxq (mgr.14182) 595 : cluster [DBG] pgmap v405: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2023-11-30T23:07:40.012 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:07:39 smithi167 conmon[87022]: cluster 2023-11-30T23:07:38.617196+0000 mgr.smithi038.ldalxq (mgr.14182) 595 : cluster [DBG] pgmap v405: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2023-11-30T23:07:40.083 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2023-11-30T23:07:41.012 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:07:40 smithi167 conmon[87022]: audit 2023-11-30T23:07:39.574247+0000 mgr.smithi038.ldalxq (mgr.14182) 596 : audit [DBG] from='client.15226 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-11-30T23:07:41.026 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:07:40 smithi038 conmon[81956]: audit 2023-11-30T23:07:39.574247+0000 mgr.smithi038.ldalxq (mgr.14182) 596 : audit [DBG] from='client.15226 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-11-30T23:07:41.084 DEBUG:teuthology.orchestra.run.smithi038:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:0dc074ce0b0b3b4f393f56dd32ef36884ebf45a9 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 3faf8b00-8fd3-11ee-95a2-87774f69a715 -- ceph orch ls -f json 2023-11-30T23:07:41.968 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:07:41 smithi038 conmon[81956]: cluster 2023-11-30T23:07:40.618291+0000 mgr.smithi038.ldalxq 2023-11-30T23:07:41.968 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:07:41 smithi038 conmon[81956]: (mgr.14182) 597 : cluster [DBG] pgmap v406: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2023-11-30T23:07:42.011 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:07:41 smithi167 conmon[87022]: cluster 2023-11-30T23:07:40.618291+0000 mgr.smithi038.ldalxq (mgr.14182) 597 : cluster [DBG] pgmap v406: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2023-11-30T23:07:42.903 INFO:teuthology.orchestra.run.smithi038.stdout: 2023-11-30T23:07:42.903 INFO:teuthology.orchestra.run.smithi038.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2023-11-30T22:54:47.122758Z", "last_refresh": "2023-11-30T23:04:43.743252Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2023-11-30T22:54:42.674972Z", "last_refresh": "2023-11-30T23:04:39.558186Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2023-11-30T22:54:45.114633Z", "last_refresh": "2023-11-30T23:04:43.743389Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2023-11-30T23:02:07.111634Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi167.buykdj on smithi167: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi167-buykdj\n/bin/podman: stderr Error: error inspecting object: no such container ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi167-buykdj\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi167.buykdj\n/bin/podman: stderr Error: error inspecting object: no such container ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi167.buykdj\nDeploy daemon haproxy.nfs.foo.smithi167.buykdj ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi167 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2023-11-30T22:59:44Z\" level=warning msg=\"failed, retrying in 1s ... (1/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-11-30T23:00:21Z\" level=warning msg=\"failed, retrying in 1s ... (2/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-11-30T23:00:59Z\" level=warning msg=\"failed, retrying in 1s ... (3/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: Error determining manifest MIME type for docker://haproxy:2.3: Error reading manifest sha256:058f434330f13dbbc46761f3e9a76af2408e9ec1898c9ac5a8baf00b42e756a9 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi167 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-11-30T23:04:36.497929Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi038.fwcakz on smithi038: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi038-fwcakz\n/bin/podman: stderr Error: error inspecting object: no such container ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi038-fwcakz\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi038.fwcakz\n/bin/podman: stderr Error: error inspecting object: no such container ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi038.fwcakz\nDeploy daemon haproxy.nfs.foo.smithi038.fwcakz ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi038 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2023-11-30T23:02:44Z\" level=warning msg=\"failed, retrying in 1s ... (1/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-11-30T23:03:21Z\" level=warning msg=\"failed, retrying in 1s ... (2/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-11-30T23:03:58Z\" level=warning msg=\"failed, retrying in 1s ... (3/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi038 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-11-30T23:04:36.502614Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi038.flofui on smithi038: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2023-11-30T23:04:36.503792Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi167.dxieha on smithi167: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2023-11-30T23:07:14.865206Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi167.igxkgw on smithi167: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi167-igxkgw\n/bin/podman: stderr Error: error inspecting object: no such container ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi167-igxkgw\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi167.igxkgw\n/bin/podman: stderr Error: error inspecting object: no such container ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi167.igxkgw\nDeploy daemon haproxy.nfs.foo.smithi167.igxkgw ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi167 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2023-11-30T23:05:21Z\" level=warning msg=\"failed, retrying in 1s ... (1/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-11-30T23:05:59Z\" level=warning msg=\"failed, retrying in 1s ... (2/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-11-30T23:06:37Z\" level=warning msg=\"failed, retrying in 1s ... (3/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi167 -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": 9049, "virtual_ip": "10.0.31.38/16"}, "status": {"created": "2023-11-30T22:58:56.312786Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.38/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2023-11-30T22:54:41.668043Z", "last_refresh": "2023-11-30T23:04:39.558331Z", "running": 2, "size": 2}}, {"events": ["2023-11-30T22:55:50.759225Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi038:172.21.15.38=smithi038", "smithi167:172.21.15.167=smithi167"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2023-11-30T22:55:50.756456Z", "last_refresh": "2023-11-30T23:04:39.558407Z", "running": 2, "size": 2}}, {"events": ["2023-11-30T22:58:56.311581Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2023-11-30T22:58:56.308071Z", "last_refresh": "2023-11-30T23:04:43.743907Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2023-11-30T22:54:46.136630Z", "last_refresh": "2023-11-30T23:04:39.558478Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2023-11-30T22:56:33.258058Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2023-11-30T22:56:33.253117Z", "last_refresh": "2023-11-30T23:04:39.558544Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2023-11-30T22:54:43.949497Z", "last_refresh": "2023-11-30T23:04:43.743520Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2023-11-30T22:58:52.105721Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2023-11-30T22:58:59.793467Z", "last_refresh": "2023-11-30T23:04:39.558809Z", "ports": [8800], "running": 2, "size": 2}}] 2023-11-30T23:07:43.012 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:07:42 smithi167 conmon[87022]: cluster 2023-11-30T23:07:42.618777+0000 mgr.smithi038.ldalxq (mgr.14182) 598 : cluster [DBG] pgmap v407: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2023-11-30T23:07:43.024 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:07:42 smithi038 conmon[81956]: cluster 2023-11-30T23:07:42. 2023-11-30T23:07:43.024 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:07:42 smithi038 conmon[81956]: 618777+0000 mgr.smithi038.ldalxq (mgr.14182) 598 : cluster [DBG] pgmap v407: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2023-11-30T23:07:43.346 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2023-11-30T23:07:44.012 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:07:43 smithi167 conmon[87022]: audit 2023-11-30T23:07:42.899072+0000 mgr.smithi038.ldalxq (mgr.14182) 599 : audit [DBG] from='client.15230 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-11-30T23:07:44.024 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:07:43 smithi038 conmon[81956]: audit 2023-11-30T23:07:42.899072+0000 mgr.smithi038.ldalxq (mgr.14182) 599 : audit [DBG] from='client.15230 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-11-30T23:07:44.024 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:07:43 smithi038 conmon[81956]: 2023-11-30T23:07:44.347 DEBUG:teuthology.orchestra.run.smithi038:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:0dc074ce0b0b3b4f393f56dd32ef36884ebf45a9 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 3faf8b00-8fd3-11ee-95a2-87774f69a715 -- ceph orch ls -f json 2023-11-30T23:07:45.011 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:07:44 smithi167 conmon[87022]: cluster 2023-11-30T23:07:44.619525+0000 mgr.smithi038.ldalxq (mgr.14182) 600 : cluster [DBG] pgmap v408: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2023-11-30T23:07:45.023 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:07:44 smithi038 conmon[81956]: cluster 2023-11-30T23:07:44.619525+0000 mgr.smithi038.ldalxq (mgr.14182) 600 : cluster [DBG] pgmap v408: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2023-11-30T23:07:46.193 INFO:teuthology.orchestra.run.smithi038.stdout: 2023-11-30T23:07:46.193 INFO:teuthology.orchestra.run.smithi038.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2023-11-30T22:54:47.122758Z", "last_refresh": "2023-11-30T23:04:43.743252Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2023-11-30T22:54:42.674972Z", "last_refresh": "2023-11-30T23:04:39.558186Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2023-11-30T22:54:45.114633Z", "last_refresh": "2023-11-30T23:04:43.743389Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2023-11-30T23:02:07.111634Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi167.buykdj on smithi167: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi167-buykdj\n/bin/podman: stderr Error: error inspecting object: no such container ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi167-buykdj\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi167.buykdj\n/bin/podman: stderr Error: error inspecting object: no such container ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi167.buykdj\nDeploy daemon haproxy.nfs.foo.smithi167.buykdj ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi167 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2023-11-30T22:59:44Z\" level=warning msg=\"failed, retrying in 1s ... (1/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-11-30T23:00:21Z\" level=warning msg=\"failed, retrying in 1s ... (2/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-11-30T23:00:59Z\" level=warning msg=\"failed, retrying in 1s ... (3/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: Error determining manifest MIME type for docker://haproxy:2.3: Error reading manifest sha256:058f434330f13dbbc46761f3e9a76af2408e9ec1898c9ac5a8baf00b42e756a9 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi167 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-11-30T23:04:36.497929Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi038.fwcakz on smithi038: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi038-fwcakz\n/bin/podman: stderr Error: error inspecting object: no such container ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi038-fwcakz\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi038.fwcakz\n/bin/podman: stderr Error: error inspecting object: no such container ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi038.fwcakz\nDeploy daemon haproxy.nfs.foo.smithi038.fwcakz ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi038 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2023-11-30T23:02:44Z\" level=warning msg=\"failed, retrying in 1s ... (1/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-11-30T23:03:21Z\" level=warning msg=\"failed, retrying in 1s ... (2/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-11-30T23:03:58Z\" level=warning msg=\"failed, retrying in 1s ... (3/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi038 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-11-30T23:04:36.502614Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi038.flofui on smithi038: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2023-11-30T23:04:36.503792Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi167.dxieha on smithi167: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2023-11-30T23:07:14.865206Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi167.igxkgw on smithi167: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi167-igxkgw\n/bin/podman: stderr Error: error inspecting object: no such container ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi167-igxkgw\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi167.igxkgw\n/bin/podman: stderr Error: error inspecting object: no such container ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi167.igxkgw\nDeploy daemon haproxy.nfs.foo.smithi167.igxkgw ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi167 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2023-11-30T23:05:21Z\" level=warning msg=\"failed, retrying in 1s ... (1/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-11-30T23:05:59Z\" level=warning msg=\"failed, retrying in 1s ... (2/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-11-30T23:06:37Z\" level=warning msg=\"failed, retrying in 1s ... (3/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi167 -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": 9049, "virtual_ip": "10.0.31.38/16"}, "status": {"created": "2023-11-30T22:58:56.312786Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.38/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2023-11-30T22:54:41.668043Z", "last_refresh": "2023-11-30T23:04:39.558331Z", "running": 2, "size": 2}}, {"events": ["2023-11-30T22:55:50.759225Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi038:172.21.15.38=smithi038", "smithi167:172.21.15.167=smithi167"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2023-11-30T22:55:50.756456Z", "last_refresh": "2023-11-30T23:04:39.558407Z", "running": 2, "size": 2}}, {"events": ["2023-11-30T22:58:56.311581Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2023-11-30T22:58:56.308071Z", "last_refresh": "2023-11-30T23:04:43.743907Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2023-11-30T22:54:46.136630Z", "last_refresh": "2023-11-30T23:04:39.558478Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2023-11-30T22:56:33.258058Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2023-11-30T22:56:33.253117Z", "last_refresh": "2023-11-30T23:04:39.558544Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2023-11-30T22:54:43.949497Z", "last_refresh": "2023-11-30T23:04:43.743520Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2023-11-30T22:58:52.105721Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2023-11-30T22:58:59.793467Z", "last_refresh": "2023-11-30T23:04:39.558809Z", "ports": [8800], "running": 2, "size": 2}}] 2023-11-30T23:07:46.596 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2023-11-30T23:07:47.597 DEBUG:teuthology.orchestra.run.smithi038:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:0dc074ce0b0b3b4f393f56dd32ef36884ebf45a9 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 3faf8b00-8fd3-11ee-95a2-87774f69a715 -- ceph orch ls -f json 2023-11-30T23:07:48.013 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:07:47 smithi167 conmon[87022]: audit 2023-11-30T23:07:46.188594+0000 mgr.smithi038.ldalxq (mgr.14182) 601 : audit [DBG] from='client.15234 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-11-30T23:07:48.013 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:07:47 smithi167 conmon[87022]: cluster 2023-11-30T23:07:46.620217+0000 mgr.smithi038.ldalxq (mgr.14182) 602 : cluster [DBG] pgmap v409: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2023-11-30T23:07:48.024 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:07:47 smithi038 conmon[81956]: audit 2023-11-30T23:07:46.188594+0000 mgr.smithi038.ldalxq (mgr.14182) 601 : audit [DBG] from='client.15234 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-11-30T23:07:48.024 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:07:47 smithi038 conmon[81956]: cluster 2023-11-30T23:07:46.620217+0000 mgr.smithi038.ldalxq (mgr.14182) 602 : cluster [DBG] pgmap v409: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2023-11-30T23:07:49.401 INFO:teuthology.orchestra.run.smithi038.stdout: 2023-11-30T23:07:49.402 INFO:teuthology.orchestra.run.smithi038.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2023-11-30T22:54:47.122758Z", "last_refresh": "2023-11-30T23:04:43.743252Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2023-11-30T22:54:42.674972Z", "last_refresh": "2023-11-30T23:04:39.558186Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2023-11-30T22:54:45.114633Z", "last_refresh": "2023-11-30T23:04:43.743389Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2023-11-30T23:02:07.111634Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi167.buykdj on smithi167: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi167-buykdj\n/bin/podman: stderr Error: error inspecting object: no such container ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi167-buykdj\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi167.buykdj\n/bin/podman: stderr Error: error inspecting object: no such container ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi167.buykdj\nDeploy daemon haproxy.nfs.foo.smithi167.buykdj ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi167 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2023-11-30T22:59:44Z\" level=warning msg=\"failed, retrying in 1s ... (1/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-11-30T23:00:21Z\" level=warning msg=\"failed, retrying in 1s ... (2/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-11-30T23:00:59Z\" level=warning msg=\"failed, retrying in 1s ... (3/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: Error determining manifest MIME type for docker://haproxy:2.3: Error reading manifest sha256:058f434330f13dbbc46761f3e9a76af2408e9ec1898c9ac5a8baf00b42e756a9 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi167 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-11-30T23:04:36.497929Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi038.fwcakz on smithi038: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi038-fwcakz\n/bin/podman: stderr Error: error inspecting object: no such container ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi038-fwcakz\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi038.fwcakz\n/bin/podman: stderr Error: error inspecting object: no such container ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi038.fwcakz\nDeploy daemon haproxy.nfs.foo.smithi038.fwcakz ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi038 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2023-11-30T23:02:44Z\" level=warning msg=\"failed, retrying in 1s ... (1/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-11-30T23:03:21Z\" level=warning msg=\"failed, retrying in 1s ... (2/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-11-30T23:03:58Z\" level=warning msg=\"failed, retrying in 1s ... (3/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi038 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-11-30T23:04:36.502614Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi038.flofui on smithi038: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2023-11-30T23:04:36.503792Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi167.dxieha on smithi167: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2023-11-30T23:07:14.865206Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi167.igxkgw on smithi167: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi167-igxkgw\n/bin/podman: stderr Error: error inspecting object: no such container ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi167-igxkgw\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi167.igxkgw\n/bin/podman: stderr Error: error inspecting object: no such container ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi167.igxkgw\nDeploy daemon haproxy.nfs.foo.smithi167.igxkgw ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi167 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2023-11-30T23:05:21Z\" level=warning msg=\"failed, retrying in 1s ... (1/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-11-30T23:05:59Z\" level=warning msg=\"failed, retrying in 1s ... (2/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-11-30T23:06:37Z\" level=warning msg=\"failed, retrying in 1s ... (3/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi167 -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": 9049, "virtual_ip": "10.0.31.38/16"}, "status": {"created": "2023-11-30T22:58:56.312786Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.38/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2023-11-30T22:54:41.668043Z", "last_refresh": "2023-11-30T23:04:39.558331Z", "running": 2, "size": 2}}, {"events": ["2023-11-30T22:55:50.759225Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi038:172.21.15.38=smithi038", "smithi167:172.21.15.167=smithi167"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2023-11-30T22:55:50.756456Z", "last_refresh": "2023-11-30T23:04:39.558407Z", "running": 2, "size": 2}}, {"events": ["2023-11-30T22:58:56.311581Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2023-11-30T22:58:56.308071Z", "last_refresh": "2023-11-30T23:04:43.743907Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2023-11-30T22:54:46.136630Z", "last_refresh": "2023-11-30T23:04:39.558478Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2023-11-30T22:56:33.258058Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2023-11-30T22:56:33.253117Z", "last_refresh": "2023-11-30T23:04:39.558544Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2023-11-30T22:54:43.949497Z", "last_refresh": "2023-11-30T23:04:43.743520Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2023-11-30T22:58:52.105721Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2023-11-30T22:58:59.793467Z", "last_refresh": "2023-11-30T23:04:39.558809Z", "ports": [8800], "running": 2, "size": 2}}] 2023-11-30T23:07:49.859 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2023-11-30T23:07:50.012 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:07:49 smithi167 conmon[87022]: cluster 2023-11-30T23:07:48.620924+0000 mgr.smithi038.ldalxq (mgr.14182) 603 : cluster [DBG] pgmap v410: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2023-11-30T23:07:50.024 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:07:49 smithi038 conmon[81956]: cluster 2023-11-30T23:07:48.620924+0000 mgr.smithi038.ldalxq (mgr.14182) 603 : cluster [DBG] pgmap v410: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2023-11-30T23:07:50.860 DEBUG:teuthology.orchestra.run.smithi038:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:0dc074ce0b0b3b4f393f56dd32ef36884ebf45a9 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 3faf8b00-8fd3-11ee-95a2-87774f69a715 -- ceph orch ls -f json 2023-11-30T23:07:51.012 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:07:50 smithi167 conmon[87022]: audit 2023-11-30T23:07:49.397659+0000 mgr.smithi038.ldalxq (mgr.14182) 604 : audit [DBG] from='client.15238 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-11-30T23:07:51.023 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:07:50 smithi038 conmon[81956]: audit 2023-11-30T23:07:49.397659+0000 mgr.smithi038.ldalxq (mgr.14182) 604 : 2023-11-30T23:07:51.024 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:07:50 smithi038 conmon[81956]: audit [DBG] from='client.15238 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-11-30T23:07:51.774 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:07:51 smithi038 conmon[81956]: cluster 2023-11-30T23:07:50.621827+0000 mgr.smithi038.ldalxq 2023-11-30T23:07:51.774 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:07:51 smithi038 conmon[81956]: (mgr.14182) 605 : cluster [DBG] pgmap v411: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2023-11-30T23:07:52.011 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:07:51 smithi167 conmon[87022]: cluster 2023-11-30T23:07:50.621827+0000 mgr.smithi038.ldalxq (mgr.14182) 605 : cluster [DBG] pgmap v411: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2023-11-30T23:07:52.687 INFO:teuthology.orchestra.run.smithi038.stdout: 2023-11-30T23:07:52.688 INFO:teuthology.orchestra.run.smithi038.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2023-11-30T22:54:47.122758Z", "last_refresh": "2023-11-30T23:04:43.743252Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2023-11-30T22:54:42.674972Z", "last_refresh": "2023-11-30T23:04:39.558186Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2023-11-30T22:54:45.114633Z", "last_refresh": "2023-11-30T23:04:43.743389Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2023-11-30T23:02:07.111634Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi167.buykdj on smithi167: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi167-buykdj\n/bin/podman: stderr Error: error inspecting object: no such container ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi167-buykdj\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi167.buykdj\n/bin/podman: stderr Error: error inspecting object: no such container ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi167.buykdj\nDeploy daemon haproxy.nfs.foo.smithi167.buykdj ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi167 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2023-11-30T22:59:44Z\" level=warning msg=\"failed, retrying in 1s ... (1/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-11-30T23:00:21Z\" level=warning msg=\"failed, retrying in 1s ... (2/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-11-30T23:00:59Z\" level=warning msg=\"failed, retrying in 1s ... (3/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: Error determining manifest MIME type for docker://haproxy:2.3: Error reading manifest sha256:058f434330f13dbbc46761f3e9a76af2408e9ec1898c9ac5a8baf00b42e756a9 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi167 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-11-30T23:04:36.497929Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi038.fwcakz on smithi038: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi038-fwcakz\n/bin/podman: stderr Error: error inspecting object: no such container ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi038-fwcakz\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi038.fwcakz\n/bin/podman: stderr Error: error inspecting object: no such container ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi038.fwcakz\nDeploy daemon haproxy.nfs.foo.smithi038.fwcakz ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi038 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2023-11-30T23:02:44Z\" level=warning msg=\"failed, retrying in 1s ... (1/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-11-30T23:03:21Z\" level=warning msg=\"failed, retrying in 1s ... (2/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-11-30T23:03:58Z\" level=warning msg=\"failed, retrying in 1s ... (3/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi038 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-11-30T23:04:36.502614Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi038.flofui on smithi038: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2023-11-30T23:04:36.503792Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi167.dxieha on smithi167: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2023-11-30T23:07:14.865206Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi167.igxkgw on smithi167: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi167-igxkgw\n/bin/podman: stderr Error: error inspecting object: no such container ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi167-igxkgw\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi167.igxkgw\n/bin/podman: stderr Error: error inspecting object: no such container ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi167.igxkgw\nDeploy daemon haproxy.nfs.foo.smithi167.igxkgw ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi167 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2023-11-30T23:05:21Z\" level=warning msg=\"failed, retrying in 1s ... (1/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-11-30T23:05:59Z\" level=warning msg=\"failed, retrying in 1s ... (2/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-11-30T23:06:37Z\" level=warning msg=\"failed, retrying in 1s ... (3/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi167 -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": 9049, "virtual_ip": "10.0.31.38/16"}, "status": {"created": "2023-11-30T22:58:56.312786Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.38/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2023-11-30T22:54:41.668043Z", "last_refresh": "2023-11-30T23:04:39.558331Z", "running": 2, "size": 2}}, {"events": ["2023-11-30T22:55:50.759225Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi038:172.21.15.38=smithi038", "smithi167:172.21.15.167=smithi167"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2023-11-30T22:55:50.756456Z", "last_refresh": "2023-11-30T23:04:39.558407Z", "running": 2, "size": 2}}, {"events": ["2023-11-30T22:58:56.311581Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2023-11-30T22:58:56.308071Z", "last_refresh": "2023-11-30T23:04:43.743907Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2023-11-30T22:54:46.136630Z", "last_refresh": "2023-11-30T23:04:39.558478Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2023-11-30T22:56:33.258058Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2023-11-30T22:56:33.253117Z", "last_refresh": "2023-11-30T23:04:39.558544Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2023-11-30T22:54:43.949497Z", "last_refresh": "2023-11-30T23:04:43.743520Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2023-11-30T22:58:52.105721Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2023-11-30T22:58:59.793467Z", "last_refresh": "2023-11-30T23:04:39.558809Z", "ports": [8800], "running": 2, "size": 2}}] 2023-11-30T23:07:53.012 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:07:52 smithi167 conmon[87022]: cluster 2023-11-30T23:07:52.622333+0000 mgr.smithi038.ldalxq (mgr.14182) 606 : cluster [DBG] pgmap v412: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2023-11-30T23:07:53.012 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:07:52 smithi167 conmon[87022]: audit 2023-11-30T23:07:52.683414+0000 mgr.smithi038.ldalxq (mgr.14182) 607 : audit [DBG] from='client.15242 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-11-30T23:07:53.024 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:07:52 smithi038 conmon[81956]: cluster 2023-11-30T23:07:52.622333+0000 mgr.smithi038.ldalxq (mgr.14182) 606 : cluster [DBG] pgmap v412: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2023-11-30T23:07:53.025 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:07:52 smithi038 conmon[81956]: audit 2023-11-30T23:07:52.683414+0000 mgr.smithi038.ldalxq (mgr.14182) 607 : audit [DBG] from='client.15242 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-11-30T23:07:53.109 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2023-11-30T23:07:54.110 DEBUG:teuthology.orchestra.run.smithi038:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:0dc074ce0b0b3b4f393f56dd32ef36884ebf45a9 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 3faf8b00-8fd3-11ee-95a2-87774f69a715 -- ceph orch ls -f json 2023-11-30T23:07:55.789 INFO:teuthology.orchestra.run.smithi038.stdout: 2023-11-30T23:07:55.789 INFO:teuthology.orchestra.run.smithi038.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2023-11-30T22:54:47.122758Z", "last_refresh": "2023-11-30T23:04:43.743252Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2023-11-30T22:54:42.674972Z", "last_refresh": "2023-11-30T23:04:39.558186Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2023-11-30T22:54:45.114633Z", "last_refresh": "2023-11-30T23:04:43.743389Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2023-11-30T23:02:07.111634Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi167.buykdj on smithi167: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi167-buykdj\n/bin/podman: stderr Error: error inspecting object: no such container ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi167-buykdj\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi167.buykdj\n/bin/podman: stderr Error: error inspecting object: no such container ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi167.buykdj\nDeploy daemon haproxy.nfs.foo.smithi167.buykdj ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi167 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2023-11-30T22:59:44Z\" level=warning msg=\"failed, retrying in 1s ... (1/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-11-30T23:00:21Z\" level=warning msg=\"failed, retrying in 1s ... (2/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-11-30T23:00:59Z\" level=warning msg=\"failed, retrying in 1s ... (3/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: Error determining manifest MIME type for docker://haproxy:2.3: Error reading manifest sha256:058f434330f13dbbc46761f3e9a76af2408e9ec1898c9ac5a8baf00b42e756a9 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi167 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-11-30T23:04:36.497929Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi038.fwcakz on smithi038: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi038-fwcakz\n/bin/podman: stderr Error: error inspecting object: no such container ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi038-fwcakz\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi038.fwcakz\n/bin/podman: stderr Error: error inspecting object: no such container ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi038.fwcakz\nDeploy daemon haproxy.nfs.foo.smithi038.fwcakz ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi038 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2023-11-30T23:02:44Z\" level=warning msg=\"failed, retrying in 1s ... (1/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-11-30T23:03:21Z\" level=warning msg=\"failed, retrying in 1s ... (2/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-11-30T23:03:58Z\" level=warning msg=\"failed, retrying in 1s ... (3/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi038 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-11-30T23:04:36.502614Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi038.flofui on smithi038: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2023-11-30T23:04:36.503792Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi167.dxieha on smithi167: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2023-11-30T23:07:14.865206Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi167.igxkgw on smithi167: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi167-igxkgw\n/bin/podman: stderr Error: error inspecting object: no such container ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi167-igxkgw\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi167.igxkgw\n/bin/podman: stderr Error: error inspecting object: no such container ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi167.igxkgw\nDeploy daemon haproxy.nfs.foo.smithi167.igxkgw ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi167 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2023-11-30T23:05:21Z\" level=warning msg=\"failed, retrying in 1s ... (1/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-11-30T23:05:59Z\" level=warning msg=\"failed, retrying in 1s ... (2/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-11-30T23:06:37Z\" level=warning msg=\"failed, retrying in 1s ... (3/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi167 -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": 9049, "virtual_ip": "10.0.31.38/16"}, "status": {"created": "2023-11-30T22:58:56.312786Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.38/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2023-11-30T22:54:41.668043Z", "last_refresh": "2023-11-30T23:04:39.558331Z", "running": 2, "size": 2}}, {"events": ["2023-11-30T22:55:50.759225Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi038:172.21.15.38=smithi038", "smithi167:172.21.15.167=smithi167"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2023-11-30T22:55:50.756456Z", "last_refresh": "2023-11-30T23:04:39.558407Z", "running": 2, "size": 2}}, {"events": ["2023-11-30T22:58:56.311581Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2023-11-30T22:58:56.308071Z", "last_refresh": "2023-11-30T23:04:43.743907Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2023-11-30T22:54:46.136630Z", "last_refresh": "2023-11-30T23:04:39.558478Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2023-11-30T22:56:33.258058Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2023-11-30T22:56:33.253117Z", "last_refresh": "2023-11-30T23:04:39.558544Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2023-11-30T22:54:43.949497Z", "last_refresh": "2023-11-30T23:04:43.743520Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2023-11-30T22:58:52.105721Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2023-11-30T22:58:59.793467Z", "last_refresh": "2023-11-30T23:04:39.558809Z", "ports": [8800], "running": 2, "size": 2}}] 2023-11-30T23:07:55.983 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:07:55 smithi038 conmon[81956]: cluster 2023-11-30T23:07:54.622921+0000 mgr.smithi038.ldalxq (mgr 2023-11-30T23:07:55.983 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:07:55 smithi038 conmon[81956]: .14182) 608 : cluster [DBG] pgmap v413: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2023-11-30T23:07:56.012 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:07:55 smithi167 conmon[87022]: cluster 2023-11-30T23:07:54.622921+0000 mgr.smithi038.ldalxq (mgr.14182) 608 : cluster [DBG] pgmap v413: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2023-11-30T23:07:56.012 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:07:55 smithi167 conmon[87022]: 2023-11-30T23:07:56.272 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2023-11-30T23:07:57.273 DEBUG:teuthology.orchestra.run.smithi038:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:0dc074ce0b0b3b4f393f56dd32ef36884ebf45a9 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 3faf8b00-8fd3-11ee-95a2-87774f69a715 -- ceph orch ls -f json 2023-11-30T23:07:58.003 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:07:57 smithi038 conmon[81956]: audit 2023-11-30T23:07:55.784837+0000 mgr.smithi038.ldalxq (mgr.14182) 609 : audit [DBG] from='client.15246 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-11-30T23:07:58.003 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:07:57 smithi038 conmon[81956]: cluster 2023-11-30T23:07:56.623903+0000 mgr.smithi038.ldalxq (mgr.14182) 610 : cluster [DBG] pgmap v414: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2023-11-30T23:07:58.011 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:07:57 smithi167 conmon[87022]: audit 2023-11-30T23:07:55.784837+0000 mgr.smithi038.ldalxq (mgr.14182) 609 : audit [DBG] from='client.15246 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-11-30T23:07:58.012 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:07:57 smithi167 conmon[87022]: cluster 2023-11-30T23:07:56.623903+0000 mgr.smithi038.ldalxq (mgr.14182) 610 : cluster [DBG] pgmap v414: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2023-11-30T23:07:59.088 INFO:teuthology.orchestra.run.smithi038.stdout: 2023-11-30T23:07:59.090 INFO:teuthology.orchestra.run.smithi038.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2023-11-30T22:54:47.122758Z", "last_refresh": "2023-11-30T23:04:43.743252Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2023-11-30T22:54:42.674972Z", "last_refresh": "2023-11-30T23:04:39.558186Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2023-11-30T22:54:45.114633Z", "last_refresh": "2023-11-30T23:04:43.743389Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2023-11-30T23:02:07.111634Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi167.buykdj on smithi167: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi167-buykdj\n/bin/podman: stderr Error: error inspecting object: no such container ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi167-buykdj\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi167.buykdj\n/bin/podman: stderr Error: error inspecting object: no such container ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi167.buykdj\nDeploy daemon haproxy.nfs.foo.smithi167.buykdj ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi167 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2023-11-30T22:59:44Z\" level=warning msg=\"failed, retrying in 1s ... (1/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-11-30T23:00:21Z\" level=warning msg=\"failed, retrying in 1s ... (2/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-11-30T23:00:59Z\" level=warning msg=\"failed, retrying in 1s ... (3/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: Error determining manifest MIME type for docker://haproxy:2.3: Error reading manifest sha256:058f434330f13dbbc46761f3e9a76af2408e9ec1898c9ac5a8baf00b42e756a9 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi167 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-11-30T23:04:36.497929Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi038.fwcakz on smithi038: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi038-fwcakz\n/bin/podman: stderr Error: error inspecting object: no such container ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi038-fwcakz\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi038.fwcakz\n/bin/podman: stderr Error: error inspecting object: no such container ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi038.fwcakz\nDeploy daemon haproxy.nfs.foo.smithi038.fwcakz ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi038 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2023-11-30T23:02:44Z\" level=warning msg=\"failed, retrying in 1s ... (1/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-11-30T23:03:21Z\" level=warning msg=\"failed, retrying in 1s ... (2/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-11-30T23:03:58Z\" level=warning msg=\"failed, retrying in 1s ... (3/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi038 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-11-30T23:04:36.502614Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi038.flofui on smithi038: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2023-11-30T23:04:36.503792Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi167.dxieha on smithi167: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2023-11-30T23:07:14.865206Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi167.igxkgw on smithi167: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi167-igxkgw\n/bin/podman: stderr Error: error inspecting object: no such container ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi167-igxkgw\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi167.igxkgw\n/bin/podman: stderr Error: error inspecting object: no such container ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi167.igxkgw\nDeploy daemon haproxy.nfs.foo.smithi167.igxkgw ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi167 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2023-11-30T23:05:21Z\" level=warning msg=\"failed, retrying in 1s ... (1/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-11-30T23:05:59Z\" level=warning msg=\"failed, retrying in 1s ... (2/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-11-30T23:06:37Z\" level=warning msg=\"failed, retrying in 1s ... (3/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi167 -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": 9049, "virtual_ip": "10.0.31.38/16"}, "status": {"created": "2023-11-30T22:58:56.312786Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.38/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2023-11-30T22:54:41.668043Z", "last_refresh": "2023-11-30T23:04:39.558331Z", "running": 2, "size": 2}}, {"events": ["2023-11-30T22:55:50.759225Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi038:172.21.15.38=smithi038", "smithi167:172.21.15.167=smithi167"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2023-11-30T22:55:50.756456Z", "last_refresh": "2023-11-30T23:04:39.558407Z", "running": 2, "size": 2}}, {"events": ["2023-11-30T22:58:56.311581Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2023-11-30T22:58:56.308071Z", "last_refresh": "2023-11-30T23:04:43.743907Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2023-11-30T22:54:46.136630Z", "last_refresh": "2023-11-30T23:04:39.558478Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2023-11-30T22:56:33.258058Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2023-11-30T22:56:33.253117Z", "last_refresh": "2023-11-30T23:04:39.558544Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2023-11-30T22:54:43.949497Z", "last_refresh": "2023-11-30T23:04:43.743520Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2023-11-30T22:58:52.105721Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2023-11-30T22:58:59.793467Z", "last_refresh": "2023-11-30T23:04:39.558809Z", "ports": [8800], "running": 2, "size": 2}}] 2023-11-30T23:07:59.524 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2023-11-30T23:08:00.012 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:07:59 smithi167 conmon[87022]: cluster 2023-11-30T23:07:58.624627+0000 mgr.smithi038.ldalxq (mgr.14182) 611 : cluster [DBG] pgmap v415: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2023-11-30T23:08:00.024 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:07:59 smithi038 conmon[81956]: cluster 2023-11-30T23:07:58.624627+0000 mgr.smithi038.ldalxq (mgr 2023-11-30T23:08:00.024 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:07:59 smithi038 conmon[81956]: .14182) 611 : cluster [DBG] pgmap v415: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2023-11-30T23:08:00.525 DEBUG:teuthology.orchestra.run.smithi038:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:0dc074ce0b0b3b4f393f56dd32ef36884ebf45a9 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 3faf8b00-8fd3-11ee-95a2-87774f69a715 -- ceph orch ls -f json 2023-11-30T23:08:01.012 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:08:00 smithi167 conmon[87022]: audit 2023-11-30T23:07:59.082167+0000 mgr.smithi038.ldalxq (mgr.14182) 612 : audit [DBG] from='client.15250 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-11-30T23:08:01.023 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:08:00 smithi038 conmon[81956]: audit 2023-11-30T23:07: 2023-11-30T23:08:01.024 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:08:00 smithi038 conmon[81956]: 59.082167+0000 mgr.smithi038.ldalxq (mgr.14182) 612 : audit [DBG] from='client.15250 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-11-30T23:08:02.012 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:08:01 smithi167 conmon[87022]: cluster 2023-11-30T23:08:00.625406+0000 mgr.smithi038.ldalxq (mgr 2023-11-30T23:08:02.012 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:08:01 smithi167 conmon[87022]: .14182) 613 : cluster [DBG] pgmap v416: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2023-11-30T23:08:02.024 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:08:01 smithi038 conmon[81956]: cluster 2023-11-30T23:08:00. 2023-11-30T23:08:02.024 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:08:01 smithi038 conmon[81956]: 625406+0000 mgr.smithi038.ldalxq (mgr.14182) 613 : cluster [DBG] pgmap v416: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2023-11-30T23:08:02.257 INFO:teuthology.orchestra.run.smithi038.stdout: 2023-11-30T23:08:02.258 INFO:teuthology.orchestra.run.smithi038.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2023-11-30T22:54:47.122758Z", "last_refresh": "2023-11-30T23:04:43.743252Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2023-11-30T22:54:42.674972Z", "last_refresh": "2023-11-30T23:04:39.558186Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2023-11-30T22:54:45.114633Z", "last_refresh": "2023-11-30T23:04:43.743389Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2023-11-30T23:02:07.111634Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi167.buykdj on smithi167: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi167-buykdj\n/bin/podman: stderr Error: error inspecting object: no such container ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi167-buykdj\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi167.buykdj\n/bin/podman: stderr Error: error inspecting object: no such container ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi167.buykdj\nDeploy daemon haproxy.nfs.foo.smithi167.buykdj ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi167 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2023-11-30T22:59:44Z\" level=warning msg=\"failed, retrying in 1s ... (1/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-11-30T23:00:21Z\" level=warning msg=\"failed, retrying in 1s ... (2/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-11-30T23:00:59Z\" level=warning msg=\"failed, retrying in 1s ... (3/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: Error determining manifest MIME type for docker://haproxy:2.3: Error reading manifest sha256:058f434330f13dbbc46761f3e9a76af2408e9ec1898c9ac5a8baf00b42e756a9 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi167 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-11-30T23:04:36.497929Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi038.fwcakz on smithi038: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi038-fwcakz\n/bin/podman: stderr Error: error inspecting object: no such container ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi038-fwcakz\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi038.fwcakz\n/bin/podman: stderr Error: error inspecting object: no such container ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi038.fwcakz\nDeploy daemon haproxy.nfs.foo.smithi038.fwcakz ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi038 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2023-11-30T23:02:44Z\" level=warning msg=\"failed, retrying in 1s ... (1/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-11-30T23:03:21Z\" level=warning msg=\"failed, retrying in 1s ... (2/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-11-30T23:03:58Z\" level=warning msg=\"failed, retrying in 1s ... (3/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi038 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-11-30T23:04:36.502614Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi038.flofui on smithi038: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2023-11-30T23:04:36.503792Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi167.dxieha on smithi167: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2023-11-30T23:07:14.865206Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi167.igxkgw on smithi167: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi167-igxkgw\n/bin/podman: stderr Error: error inspecting object: no such container ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi167-igxkgw\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi167.igxkgw\n/bin/podman: stderr Error: error inspecting object: no such container ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi167.igxkgw\nDeploy daemon haproxy.nfs.foo.smithi167.igxkgw ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi167 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2023-11-30T23:05:21Z\" level=warning msg=\"failed, retrying in 1s ... (1/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-11-30T23:05:59Z\" level=warning msg=\"failed, retrying in 1s ... (2/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-11-30T23:06:37Z\" level=warning msg=\"failed, retrying in 1s ... (3/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi167 -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": 9049, "virtual_ip": "10.0.31.38/16"}, "status": {"created": "2023-11-30T22:58:56.312786Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.38/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2023-11-30T22:54:41.668043Z", "last_refresh": "2023-11-30T23:04:39.558331Z", "running": 2, "size": 2}}, {"events": ["2023-11-30T22:55:50.759225Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi038:172.21.15.38=smithi038", "smithi167:172.21.15.167=smithi167"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2023-11-30T22:55:50.756456Z", "last_refresh": "2023-11-30T23:04:39.558407Z", "running": 2, "size": 2}}, {"events": ["2023-11-30T22:58:56.311581Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2023-11-30T22:58:56.308071Z", "last_refresh": "2023-11-30T23:04:43.743907Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2023-11-30T22:54:46.136630Z", "last_refresh": "2023-11-30T23:04:39.558478Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2023-11-30T22:56:33.258058Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2023-11-30T22:56:33.253117Z", "last_refresh": "2023-11-30T23:04:39.558544Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2023-11-30T22:54:43.949497Z", "last_refresh": "2023-11-30T23:04:43.743520Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2023-11-30T22:58:52.105721Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2023-11-30T22:58:59.793467Z", "last_refresh": "2023-11-30T23:04:39.558809Z", "ports": [8800], "running": 2, "size": 2}}] 2023-11-30T23:08:02.680 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2023-11-30T23:08:03.012 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:08:02 smithi167 conmon[87022]: audit 2023-11-30T23:08:02.253583+0000 mgr.smithi038.ldalxq (mgr.14182) 614 : audit [DBG] from='client.15254 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-11-30T23:08:03.013 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:08:02 smithi167 conmon[87022]: cluster 2023-11-30T23:08:02.625894+0000 mgr.smithi038.ldalxq (mgr.14182) 615 : cluster [DBG] pgmap v417: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2023-11-30T23:08:03.024 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:08:02 smithi038 conmon[81956]: audit 2023-11-30T23:08:02.253583+0000 mgr.smithi038.ldalxq (mgr 2023-11-30T23:08:03.024 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:08:02 smithi038 conmon[81956]: .14182) 614 : audit [DBG] from='client.15254 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-11-30T23:08:03.024 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:08:02 smithi038 conmon[81956]: cluster 2023-11-30T23:08:02.625894+0000 mgr.smithi038.ldalxq (mgr.14182) 615 : cluster [DBG] pgmap v417: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2023-11-30T23:08:03.681 DEBUG:teuthology.orchestra.run.smithi038:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:0dc074ce0b0b3b4f393f56dd32ef36884ebf45a9 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 3faf8b00-8fd3-11ee-95a2-87774f69a715 -- ceph orch ls -f json 2023-11-30T23:08:05.419 INFO:teuthology.orchestra.run.smithi038.stdout: 2023-11-30T23:08:05.419 INFO:teuthology.orchestra.run.smithi038.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2023-11-30T22:54:47.122758Z", "last_refresh": "2023-11-30T23:04:43.743252Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2023-11-30T22:54:42.674972Z", "last_refresh": "2023-11-30T23:04:39.558186Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2023-11-30T22:54:45.114633Z", "last_refresh": "2023-11-30T23:04:43.743389Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2023-11-30T23:02:07.111634Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi167.buykdj on smithi167: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi167-buykdj\n/bin/podman: stderr Error: error inspecting object: no such container ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi167-buykdj\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi167.buykdj\n/bin/podman: stderr Error: error inspecting object: no such container ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi167.buykdj\nDeploy daemon haproxy.nfs.foo.smithi167.buykdj ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi167 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2023-11-30T22:59:44Z\" level=warning msg=\"failed, retrying in 1s ... (1/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-11-30T23:00:21Z\" level=warning msg=\"failed, retrying in 1s ... (2/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-11-30T23:00:59Z\" level=warning msg=\"failed, retrying in 1s ... (3/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: Error determining manifest MIME type for docker://haproxy:2.3: Error reading manifest sha256:058f434330f13dbbc46761f3e9a76af2408e9ec1898c9ac5a8baf00b42e756a9 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi167 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-11-30T23:04:36.497929Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi038.fwcakz on smithi038: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi038-fwcakz\n/bin/podman: stderr Error: error inspecting object: no such container ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi038-fwcakz\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi038.fwcakz\n/bin/podman: stderr Error: error inspecting object: no such container ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi038.fwcakz\nDeploy daemon haproxy.nfs.foo.smithi038.fwcakz ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi038 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2023-11-30T23:02:44Z\" level=warning msg=\"failed, retrying in 1s ... (1/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-11-30T23:03:21Z\" level=warning msg=\"failed, retrying in 1s ... (2/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-11-30T23:03:58Z\" level=warning msg=\"failed, retrying in 1s ... (3/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi038 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-11-30T23:04:36.502614Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi038.flofui on smithi038: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2023-11-30T23:04:36.503792Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi167.dxieha on smithi167: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2023-11-30T23:07:14.865206Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi167.igxkgw on smithi167: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi167-igxkgw\n/bin/podman: stderr Error: error inspecting object: no such container ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi167-igxkgw\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi167.igxkgw\n/bin/podman: stderr Error: error inspecting object: no such container ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi167.igxkgw\nDeploy daemon haproxy.nfs.foo.smithi167.igxkgw ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi167 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2023-11-30T23:05:21Z\" level=warning msg=\"failed, retrying in 1s ... (1/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-11-30T23:05:59Z\" level=warning msg=\"failed, retrying in 1s ... (2/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-11-30T23:06:37Z\" level=warning msg=\"failed, retrying in 1s ... (3/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi167 -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": 9049, "virtual_ip": "10.0.31.38/16"}, "status": {"created": "2023-11-30T22:58:56.312786Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.38/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2023-11-30T22:54:41.668043Z", "last_refresh": "2023-11-30T23:04:39.558331Z", "running": 2, "size": 2}}, {"events": ["2023-11-30T22:55:50.759225Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi038:172.21.15.38=smithi038", "smithi167:172.21.15.167=smithi167"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2023-11-30T22:55:50.756456Z", "last_refresh": "2023-11-30T23:04:39.558407Z", "running": 2, "size": 2}}, {"events": ["2023-11-30T22:58:56.311581Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2023-11-30T22:58:56.308071Z", "last_refresh": "2023-11-30T23:04:43.743907Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2023-11-30T22:54:46.136630Z", "last_refresh": "2023-11-30T23:04:39.558478Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2023-11-30T22:56:33.258058Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2023-11-30T22:56:33.253117Z", "last_refresh": "2023-11-30T23:04:39.558544Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2023-11-30T22:54:43.949497Z", "last_refresh": "2023-11-30T23:04:43.743520Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2023-11-30T22:58:52.105721Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2023-11-30T22:58:59.793467Z", "last_refresh": "2023-11-30T23:04:39.558809Z", "ports": [8800], "running": 2, "size": 2}}] 2023-11-30T23:08:05.774 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:08:05 smithi038 conmon[81956]: cluster 2023-11-30T23:08:04.626696+0000 2023-11-30T23:08:05.774 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:08:05 smithi038 conmon[81956]: mgr.smithi038.ldalxq (mgr.14182) 616 : cluster [DBG] pgmap v418: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2023-11-30T23:08:05.843 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2023-11-30T23:08:06.012 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:08:05 smithi167 conmon[87022]: cluster 2023-11-30T23:08:04.626696+0000 mgr.smithi038.ldalxq (mgr.14182) 616 : cluster [DBG] pgmap v418: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2023-11-30T23:08:06.844 DEBUG:teuthology.orchestra.run.smithi038:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:0dc074ce0b0b3b4f393f56dd32ef36884ebf45a9 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 3faf8b00-8fd3-11ee-95a2-87774f69a715 -- ceph orch ls -f json 2023-11-30T23:08:07.012 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:08:06 smithi167 conmon[87022]: audit 2023-11-30T23:08:05.415069+0000 mgr.smithi038.ldalxq (mgr.14182) 617 : audit [DBG] from='client.15258 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-11-30T23:08:07.024 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:08:06 smithi038 conmon[81956]: audit 2023-11-30T23:08:05.415069+0000 mgr.smithi038.ldalxq (mgr.14182) 617 : 2023-11-30T23:08:07.024 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:08:06 smithi038 conmon[81956]: audit [DBG] from='client.15258 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-11-30T23:08:08.012 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:08:07 smithi167 conmon[87022]: cluster 2023-11-30T23:08:06.627575+0000 mgr.smithi038.ldalxq (mgr.14182) 618 : cluster [DBG] pgmap v419: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2023-11-30T23:08:08.024 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:08:07 smithi038 conmon[81956]: cluster 2023-11-30T23:08:06. 2023-11-30T23:08:08.024 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:08:07 smithi038 conmon[81956]: 627575+0000 mgr.smithi038.ldalxq (mgr.14182) 618 : cluster [DBG] pgmap v419: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2023-11-30T23:08:08.558 INFO:teuthology.orchestra.run.smithi038.stdout: 2023-11-30T23:08:08.558 INFO:teuthology.orchestra.run.smithi038.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2023-11-30T22:54:47.122758Z", "last_refresh": "2023-11-30T23:04:43.743252Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2023-11-30T22:54:42.674972Z", "last_refresh": "2023-11-30T23:04:39.558186Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2023-11-30T22:54:45.114633Z", "last_refresh": "2023-11-30T23:04:43.743389Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2023-11-30T23:02:07.111634Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi167.buykdj on smithi167: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi167-buykdj\n/bin/podman: stderr Error: error inspecting object: no such container ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi167-buykdj\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi167.buykdj\n/bin/podman: stderr Error: error inspecting object: no such container ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi167.buykdj\nDeploy daemon haproxy.nfs.foo.smithi167.buykdj ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi167 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2023-11-30T22:59:44Z\" level=warning msg=\"failed, retrying in 1s ... (1/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-11-30T23:00:21Z\" level=warning msg=\"failed, retrying in 1s ... (2/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-11-30T23:00:59Z\" level=warning msg=\"failed, retrying in 1s ... (3/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: Error determining manifest MIME type for docker://haproxy:2.3: Error reading manifest sha256:058f434330f13dbbc46761f3e9a76af2408e9ec1898c9ac5a8baf00b42e756a9 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi167 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-11-30T23:04:36.497929Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi038.fwcakz on smithi038: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi038-fwcakz\n/bin/podman: stderr Error: error inspecting object: no such container ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi038-fwcakz\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi038.fwcakz\n/bin/podman: stderr Error: error inspecting object: no such container ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi038.fwcakz\nDeploy daemon haproxy.nfs.foo.smithi038.fwcakz ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi038 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2023-11-30T23:02:44Z\" level=warning msg=\"failed, retrying in 1s ... (1/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-11-30T23:03:21Z\" level=warning msg=\"failed, retrying in 1s ... (2/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-11-30T23:03:58Z\" level=warning msg=\"failed, retrying in 1s ... (3/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi038 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-11-30T23:04:36.502614Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi038.flofui on smithi038: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2023-11-30T23:04:36.503792Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi167.dxieha on smithi167: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2023-11-30T23:07:14.865206Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi167.igxkgw on smithi167: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi167-igxkgw\n/bin/podman: stderr Error: error inspecting object: no such container ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi167-igxkgw\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi167.igxkgw\n/bin/podman: stderr Error: error inspecting object: no such container ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi167.igxkgw\nDeploy daemon haproxy.nfs.foo.smithi167.igxkgw ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi167 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2023-11-30T23:05:21Z\" level=warning msg=\"failed, retrying in 1s ... (1/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-11-30T23:05:59Z\" level=warning msg=\"failed, retrying in 1s ... (2/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-11-30T23:06:37Z\" level=warning msg=\"failed, retrying in 1s ... (3/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi167 -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": 9049, "virtual_ip": "10.0.31.38/16"}, "status": {"created": "2023-11-30T22:58:56.312786Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.38/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2023-11-30T22:54:41.668043Z", "last_refresh": "2023-11-30T23:04:39.558331Z", "running": 2, "size": 2}}, {"events": ["2023-11-30T22:55:50.759225Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi038:172.21.15.38=smithi038", "smithi167:172.21.15.167=smithi167"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2023-11-30T22:55:50.756456Z", "last_refresh": "2023-11-30T23:04:39.558407Z", "running": 2, "size": 2}}, {"events": ["2023-11-30T22:58:56.311581Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2023-11-30T22:58:56.308071Z", "last_refresh": "2023-11-30T23:04:43.743907Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2023-11-30T22:54:46.136630Z", "last_refresh": "2023-11-30T23:04:39.558478Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2023-11-30T22:56:33.258058Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2023-11-30T22:56:33.253117Z", "last_refresh": "2023-11-30T23:04:39.558544Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2023-11-30T22:54:43.949497Z", "last_refresh": "2023-11-30T23:04:43.743520Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2023-11-30T22:58:52.105721Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2023-11-30T22:58:59.793467Z", "last_refresh": "2023-11-30T23:04:39.558809Z", "ports": [8800], "running": 2, "size": 2}}] 2023-11-30T23:08:08.946 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:08:08 smithi038 conmon[81956]: audit 2023-11-30T23:08:08.554345+0000 mgr.smithi038.ldalxq (mgr.14182) 619 : audit [DBG] from='client.15262 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-11-30T23:08:08.946 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:08:08 smithi038 conmon[81956]: cluster 2023-11-30T23:08:08.628109+0000 mgr.smithi038.ldalxq (mgr.14182) 620 : cluster [DBG] pgmap v420: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2023-11-30T23:08:09.002 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2023-11-30T23:08:09.011 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:08:08 smithi167 conmon[87022]: audit 2023-11-30T23:08:08.554345+0000 mgr.smithi038.ldalxq (mgr.14182) 619 : audit [DBG] from='client.15262 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-11-30T23:08:09.012 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:08:08 smithi167 conmon[87022]: cluster 2023-11-30T23:08:08.628109+0000 mgr.smithi038.ldalxq (mgr.14182) 620 : cluster [DBG] pgmap v420: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2023-11-30T23:08:10.003 DEBUG:teuthology.orchestra.run.smithi038:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:0dc074ce0b0b3b4f393f56dd32ef36884ebf45a9 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 3faf8b00-8fd3-11ee-95a2-87774f69a715 -- ceph orch ls -f json 2023-11-30T23:08:11.734 INFO:teuthology.orchestra.run.smithi038.stdout: 2023-11-30T23:08:11.735 INFO:teuthology.orchestra.run.smithi038.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2023-11-30T22:54:47.122758Z", "last_refresh": "2023-11-30T23:04:43.743252Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2023-11-30T22:54:42.674972Z", "last_refresh": "2023-11-30T23:04:39.558186Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2023-11-30T22:54:45.114633Z", "last_refresh": "2023-11-30T23:04:43.743389Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2023-11-30T23:02:07.111634Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi167.buykdj on smithi167: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi167-buykdj\n/bin/podman: stderr Error: error inspecting object: no such container ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi167-buykdj\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi167.buykdj\n/bin/podman: stderr Error: error inspecting object: no such container ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi167.buykdj\nDeploy daemon haproxy.nfs.foo.smithi167.buykdj ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi167 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2023-11-30T22:59:44Z\" level=warning msg=\"failed, retrying in 1s ... (1/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-11-30T23:00:21Z\" level=warning msg=\"failed, retrying in 1s ... (2/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-11-30T23:00:59Z\" level=warning msg=\"failed, retrying in 1s ... (3/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: Error determining manifest MIME type for docker://haproxy:2.3: Error reading manifest sha256:058f434330f13dbbc46761f3e9a76af2408e9ec1898c9ac5a8baf00b42e756a9 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi167 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-11-30T23:04:36.497929Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi038.fwcakz on smithi038: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi038-fwcakz\n/bin/podman: stderr Error: error inspecting object: no such container ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi038-fwcakz\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi038.fwcakz\n/bin/podman: stderr Error: error inspecting object: no such container ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi038.fwcakz\nDeploy daemon haproxy.nfs.foo.smithi038.fwcakz ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi038 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2023-11-30T23:02:44Z\" level=warning msg=\"failed, retrying in 1s ... (1/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-11-30T23:03:21Z\" level=warning msg=\"failed, retrying in 1s ... (2/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-11-30T23:03:58Z\" level=warning msg=\"failed, retrying in 1s ... (3/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi038 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-11-30T23:04:36.502614Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi038.flofui on smithi038: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2023-11-30T23:04:36.503792Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi167.dxieha on smithi167: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2023-11-30T23:07:14.865206Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi167.igxkgw on smithi167: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi167-igxkgw\n/bin/podman: stderr Error: error inspecting object: no such container ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi167-igxkgw\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi167.igxkgw\n/bin/podman: stderr Error: error inspecting object: no such container ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi167.igxkgw\nDeploy daemon haproxy.nfs.foo.smithi167.igxkgw ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi167 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2023-11-30T23:05:21Z\" level=warning msg=\"failed, retrying in 1s ... (1/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-11-30T23:05:59Z\" level=warning msg=\"failed, retrying in 1s ... (2/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-11-30T23:06:37Z\" level=warning msg=\"failed, retrying in 1s ... (3/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi167 -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": 9049, "virtual_ip": "10.0.31.38/16"}, "status": {"created": "2023-11-30T22:58:56.312786Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.38/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2023-11-30T22:54:41.668043Z", "last_refresh": "2023-11-30T23:04:39.558331Z", "running": 2, "size": 2}}, {"events": ["2023-11-30T22:55:50.759225Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi038:172.21.15.38=smithi038", "smithi167:172.21.15.167=smithi167"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2023-11-30T22:55:50.756456Z", "last_refresh": "2023-11-30T23:04:39.558407Z", "running": 2, "size": 2}}, {"events": ["2023-11-30T22:58:56.311581Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2023-11-30T22:58:56.308071Z", "last_refresh": "2023-11-30T23:04:43.743907Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2023-11-30T22:54:46.136630Z", "last_refresh": "2023-11-30T23:04:39.558478Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2023-11-30T22:56:33.258058Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2023-11-30T22:56:33.253117Z", "last_refresh": "2023-11-30T23:04:39.558544Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2023-11-30T22:54:43.949497Z", "last_refresh": "2023-11-30T23:04:43.743520Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2023-11-30T22:58:52.105721Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2023-11-30T22:58:59.793467Z", "last_refresh": "2023-11-30T23:04:39.558809Z", "ports": [8800], "running": 2, "size": 2}}] 2023-11-30T23:08:11.955 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:08:11 smithi038 conmon[81956]: cluster 2023-11-30T23:08:10.628953+0000 mgr.smithi038.ldalxq (mgr.14182) 621 : cluster [DBG] pgmap v421: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2023-11-30T23:08:12.012 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:08:11 smithi167 conmon[87022]: cluster 2023-11-30T23:08:10.628953+0000 mgr.smithi038.ldalxq (mgr.14182) 621 : cluster [DBG] pgmap v421: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2023-11-30T23:08:12.162 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2023-11-30T23:08:13.016 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:08:12 smithi167 conmon[87022]: audit 2023-11-30T23:08:11.730405+0000 mgr.smithi038.ldalxq (mgr.14182) 622 : audit [DBG] from='client.15266 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-11-30T23:08:13.463 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:08:12 smithi167 conmon[87022]: cluster 2023-11-30T23:08:12.629499+0000 mgr.smithi038.ldalxq (mgr.14182) 623 : cluster [DBG] pgmap v422: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2023-11-30T23:08:13.463 DEBUG:teuthology.orchestra.run.smithi038:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:0dc074ce0b0b3b4f393f56dd32ef36884ebf45a9 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 3faf8b00-8fd3-11ee-95a2-87774f69a715 -- ceph orch ls -f json 2023-11-30T23:08:13.465 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:08:12 smithi038 conmon[81956]: audit 2023-11-30T23:08:11.730405+0000 2023-11-30T23:08:13.465 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:08:12 smithi038 conmon[81956]: mgr.smithi038.ldalxq (mgr.14182) 622 : audit [DBG] from='client.15266 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-11-30T23:08:13.465 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:08:12 smithi038 conmon[81956]: cluster 2023-11-30T23:08:12.629499+0000 mgr.smithi038.ldalxq (mgr.14182) 623 : cluster [DBG] pgmap v422: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2023-11-30T23:08:15.272 INFO:teuthology.orchestra.run.smithi038.stdout: 2023-11-30T23:08:15.273 INFO:teuthology.orchestra.run.smithi038.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2023-11-30T22:54:47.122758Z", "last_refresh": "2023-11-30T23:04:43.743252Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2023-11-30T22:54:42.674972Z", "last_refresh": "2023-11-30T23:04:39.558186Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2023-11-30T22:54:45.114633Z", "last_refresh": "2023-11-30T23:04:43.743389Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2023-11-30T23:02:07.111634Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi167.buykdj on smithi167: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi167-buykdj\n/bin/podman: stderr Error: error inspecting object: no such container ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi167-buykdj\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi167.buykdj\n/bin/podman: stderr Error: error inspecting object: no such container ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi167.buykdj\nDeploy daemon haproxy.nfs.foo.smithi167.buykdj ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi167 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2023-11-30T22:59:44Z\" level=warning msg=\"failed, retrying in 1s ... (1/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-11-30T23:00:21Z\" level=warning msg=\"failed, retrying in 1s ... (2/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-11-30T23:00:59Z\" level=warning msg=\"failed, retrying in 1s ... (3/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: Error determining manifest MIME type for docker://haproxy:2.3: Error reading manifest sha256:058f434330f13dbbc46761f3e9a76af2408e9ec1898c9ac5a8baf00b42e756a9 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi167 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-11-30T23:04:36.497929Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi038.fwcakz on smithi038: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi038-fwcakz\n/bin/podman: stderr Error: error inspecting object: no such container ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi038-fwcakz\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi038.fwcakz\n/bin/podman: stderr Error: error inspecting object: no such container ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi038.fwcakz\nDeploy daemon haproxy.nfs.foo.smithi038.fwcakz ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi038 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2023-11-30T23:02:44Z\" level=warning msg=\"failed, retrying in 1s ... (1/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-11-30T23:03:21Z\" level=warning msg=\"failed, retrying in 1s ... (2/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-11-30T23:03:58Z\" level=warning msg=\"failed, retrying in 1s ... (3/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi038 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-11-30T23:04:36.502614Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi038.flofui on smithi038: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2023-11-30T23:04:36.503792Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi167.dxieha on smithi167: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2023-11-30T23:07:14.865206Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi167.igxkgw on smithi167: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi167-igxkgw\n/bin/podman: stderr Error: error inspecting object: no such container ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi167-igxkgw\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi167.igxkgw\n/bin/podman: stderr Error: error inspecting object: no such container ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi167.igxkgw\nDeploy daemon haproxy.nfs.foo.smithi167.igxkgw ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi167 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2023-11-30T23:05:21Z\" level=warning msg=\"failed, retrying in 1s ... (1/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-11-30T23:05:59Z\" level=warning msg=\"failed, retrying in 1s ... (2/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-11-30T23:06:37Z\" level=warning msg=\"failed, retrying in 1s ... (3/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi167 -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": 9049, "virtual_ip": "10.0.31.38/16"}, "status": {"created": "2023-11-30T22:58:56.312786Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.38/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2023-11-30T22:54:41.668043Z", "last_refresh": "2023-11-30T23:04:39.558331Z", "running": 2, "size": 2}}, {"events": ["2023-11-30T22:55:50.759225Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi038:172.21.15.38=smithi038", "smithi167:172.21.15.167=smithi167"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2023-11-30T22:55:50.756456Z", "last_refresh": "2023-11-30T23:04:39.558407Z", "running": 2, "size": 2}}, {"events": ["2023-11-30T22:58:56.311581Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2023-11-30T22:58:56.308071Z", "last_refresh": "2023-11-30T23:04:43.743907Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2023-11-30T22:54:46.136630Z", "last_refresh": "2023-11-30T23:04:39.558478Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2023-11-30T22:56:33.258058Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2023-11-30T22:56:33.253117Z", "last_refresh": "2023-11-30T23:04:39.558544Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2023-11-30T22:54:43.949497Z", "last_refresh": "2023-11-30T23:04:43.743520Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2023-11-30T22:58:52.105721Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2023-11-30T22:58:59.793467Z", "last_refresh": "2023-11-30T23:04:39.558809Z", "ports": [8800], "running": 2, "size": 2}}] 2023-11-30T23:08:15.728 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2023-11-30T23:08:16.012 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:08:15 smithi167 conmon[87022]: cluster 2023-11-30T23:08:14.630324+0000 mgr.smithi038.ldalxq (mgr.14182) 624 : cluster [DBG] pgmap v423: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2023-11-30T23:08:16.024 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:08:15 smithi038 conmon[81956]: cluster 2023-11-30T23:08:14.630324+0000 mgr.smithi038.ldalxq 2023-11-30T23:08:16.024 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:08:15 smithi038 conmon[81956]: (mgr.14182) 624 : cluster [DBG] pgmap v423: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2023-11-30T23:08:16.729 DEBUG:teuthology.orchestra.run.smithi038:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:0dc074ce0b0b3b4f393f56dd32ef36884ebf45a9 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 3faf8b00-8fd3-11ee-95a2-87774f69a715 -- ceph orch ls -f json 2023-11-30T23:08:17.011 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:08:16 smithi167 conmon[87022]: audit 2023-11-30T23:08:15.267986+0000 mgr.smithi038.ldalxq (mgr.14182) 625 : audit [DBG] from='client.15270 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-11-30T23:08:17.024 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:08:16 smithi038 conmon[81956]: audit 2023-11-30T23:08:15.267986+0000 mgr.smithi038.ldalxq (mgr.14182) 625 : audit [DBG] 2023-11-30T23:08:17.024 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:08:16 smithi038 conmon[81956]: from='client.15270 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-11-30T23:08:18.012 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:08:17 smithi167 conmon[87022]: cluster 2023-11-30T23:08:16.631078+0000 mgr.smithi038.ldalxq (mgr.14182) 626 : cluster [DBG] pgmap v424: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2023-11-30T23:08:18.025 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:08:17 smithi038 conmon[81956]: cluster 2023-11-30T23:08:16.631078+0000 mgr.smithi038.ldalxq (mgr.14182) 626 : cluster [DBG] pgmap v424: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2023-11-30T23:08:18.522 INFO:teuthology.orchestra.run.smithi038.stdout: 2023-11-30T23:08:18.522 INFO:teuthology.orchestra.run.smithi038.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2023-11-30T22:54:47.122758Z", "last_refresh": "2023-11-30T23:04:43.743252Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2023-11-30T22:54:42.674972Z", "last_refresh": "2023-11-30T23:04:39.558186Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2023-11-30T22:54:45.114633Z", "last_refresh": "2023-11-30T23:04:43.743389Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2023-11-30T23:02:07.111634Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi167.buykdj on smithi167: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi167-buykdj\n/bin/podman: stderr Error: error inspecting object: no such container ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi167-buykdj\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi167.buykdj\n/bin/podman: stderr Error: error inspecting object: no such container ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi167.buykdj\nDeploy daemon haproxy.nfs.foo.smithi167.buykdj ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi167 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2023-11-30T22:59:44Z\" level=warning msg=\"failed, retrying in 1s ... (1/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-11-30T23:00:21Z\" level=warning msg=\"failed, retrying in 1s ... (2/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-11-30T23:00:59Z\" level=warning msg=\"failed, retrying in 1s ... (3/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: Error determining manifest MIME type for docker://haproxy:2.3: Error reading manifest sha256:058f434330f13dbbc46761f3e9a76af2408e9ec1898c9ac5a8baf00b42e756a9 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi167 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-11-30T23:04:36.497929Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi038.fwcakz on smithi038: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi038-fwcakz\n/bin/podman: stderr Error: error inspecting object: no such container ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi038-fwcakz\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi038.fwcakz\n/bin/podman: stderr Error: error inspecting object: no such container ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi038.fwcakz\nDeploy daemon haproxy.nfs.foo.smithi038.fwcakz ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi038 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2023-11-30T23:02:44Z\" level=warning msg=\"failed, retrying in 1s ... (1/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-11-30T23:03:21Z\" level=warning msg=\"failed, retrying in 1s ... (2/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-11-30T23:03:58Z\" level=warning msg=\"failed, retrying in 1s ... (3/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi038 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-11-30T23:04:36.502614Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi038.flofui on smithi038: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2023-11-30T23:04:36.503792Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi167.dxieha on smithi167: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2023-11-30T23:07:14.865206Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi167.igxkgw on smithi167: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi167-igxkgw\n/bin/podman: stderr Error: error inspecting object: no such container ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi167-igxkgw\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi167.igxkgw\n/bin/podman: stderr Error: error inspecting object: no such container ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi167.igxkgw\nDeploy daemon haproxy.nfs.foo.smithi167.igxkgw ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi167 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2023-11-30T23:05:21Z\" level=warning msg=\"failed, retrying in 1s ... (1/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-11-30T23:05:59Z\" level=warning msg=\"failed, retrying in 1s ... (2/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-11-30T23:06:37Z\" level=warning msg=\"failed, retrying in 1s ... (3/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi167 -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": 9049, "virtual_ip": "10.0.31.38/16"}, "status": {"created": "2023-11-30T22:58:56.312786Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.38/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2023-11-30T22:54:41.668043Z", "last_refresh": "2023-11-30T23:04:39.558331Z", "running": 2, "size": 2}}, {"events": ["2023-11-30T22:55:50.759225Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi038:172.21.15.38=smithi038", "smithi167:172.21.15.167=smithi167"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2023-11-30T22:55:50.756456Z", "last_refresh": "2023-11-30T23:04:39.558407Z", "running": 2, "size": 2}}, {"events": ["2023-11-30T22:58:56.311581Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2023-11-30T22:58:56.308071Z", "last_refresh": "2023-11-30T23:04:43.743907Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2023-11-30T22:54:46.136630Z", "last_refresh": "2023-11-30T23:04:39.558478Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2023-11-30T22:56:33.258058Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2023-11-30T22:56:33.253117Z", "last_refresh": "2023-11-30T23:04:39.558544Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2023-11-30T22:54:43.949497Z", "last_refresh": "2023-11-30T23:04:43.743520Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2023-11-30T22:58:52.105721Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2023-11-30T22:58:59.793467Z", "last_refresh": "2023-11-30T23:04:39.558809Z", "ports": [8800], "running": 2, "size": 2}}] 2023-11-30T23:08:18.944 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:08:18 smithi038 conmon[81956]: audit 2023-11-30T23:08:18.518062+0000 mgr.smithi038.ldalxq (mgr. 2023-11-30T23:08:18.945 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:08:18 smithi038 conmon[81956]: 14182) 627 : audit [DBG] from='client.15274 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-11-30T23:08:18.945 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:08:18 smithi038 conmon[81956]: cluster 2023-11-30T23:08:18.631601+0000 mgr.smithi038.ldalxq (mgr.14182) 628 : cluster [DBG] pgmap v425: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2023-11-30T23:08:18.986 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2023-11-30T23:08:19.012 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:08:18 smithi167 conmon[87022]: audit 2023-11-30T23:08:18.518062+0000 mgr.smithi038.ldalxq (mgr.14182) 627 : audit [DBG] from='client.15274 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-11-30T23:08:19.012 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:08:18 smithi167 conmon[87022]: cluster 2023-11-30T23:08:18. 2023-11-30T23:08:19.012 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:08:18 smithi167 conmon[87022]: 631601+0000 mgr.smithi038.ldalxq (mgr.14182) 628 : cluster [DBG] pgmap v425: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2023-11-30T23:08:19.987 DEBUG:teuthology.orchestra.run.smithi038:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:0dc074ce0b0b3b4f393f56dd32ef36884ebf45a9 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 3faf8b00-8fd3-11ee-95a2-87774f69a715 -- ceph orch ls -f json 2023-11-30T23:08:21.804 INFO:teuthology.orchestra.run.smithi038.stdout: 2023-11-30T23:08:21.805 INFO:teuthology.orchestra.run.smithi038.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2023-11-30T22:54:47.122758Z", "last_refresh": "2023-11-30T23:04:43.743252Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2023-11-30T22:54:42.674972Z", "last_refresh": "2023-11-30T23:04:39.558186Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2023-11-30T22:54:45.114633Z", "last_refresh": "2023-11-30T23:04:43.743389Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2023-11-30T23:02:07.111634Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi167.buykdj on smithi167: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi167-buykdj\n/bin/podman: stderr Error: error inspecting object: no such container ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi167-buykdj\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi167.buykdj\n/bin/podman: stderr Error: error inspecting object: no such container ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi167.buykdj\nDeploy daemon haproxy.nfs.foo.smithi167.buykdj ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi167 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2023-11-30T22:59:44Z\" level=warning msg=\"failed, retrying in 1s ... (1/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-11-30T23:00:21Z\" level=warning msg=\"failed, retrying in 1s ... (2/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-11-30T23:00:59Z\" level=warning msg=\"failed, retrying in 1s ... (3/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: Error determining manifest MIME type for docker://haproxy:2.3: Error reading manifest sha256:058f434330f13dbbc46761f3e9a76af2408e9ec1898c9ac5a8baf00b42e756a9 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi167 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-11-30T23:04:36.497929Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi038.fwcakz on smithi038: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi038-fwcakz\n/bin/podman: stderr Error: error inspecting object: no such container ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi038-fwcakz\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi038.fwcakz\n/bin/podman: stderr Error: error inspecting object: no such container ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi038.fwcakz\nDeploy daemon haproxy.nfs.foo.smithi038.fwcakz ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi038 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2023-11-30T23:02:44Z\" level=warning msg=\"failed, retrying in 1s ... (1/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-11-30T23:03:21Z\" level=warning msg=\"failed, retrying in 1s ... (2/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-11-30T23:03:58Z\" level=warning msg=\"failed, retrying in 1s ... (3/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi038 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-11-30T23:04:36.502614Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi038.flofui on smithi038: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2023-11-30T23:04:36.503792Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi167.dxieha on smithi167: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2023-11-30T23:07:14.865206Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi167.igxkgw on smithi167: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi167-igxkgw\n/bin/podman: stderr Error: error inspecting object: no such container ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi167-igxkgw\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi167.igxkgw\n/bin/podman: stderr Error: error inspecting object: no such container ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi167.igxkgw\nDeploy daemon haproxy.nfs.foo.smithi167.igxkgw ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi167 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2023-11-30T23:05:21Z\" level=warning msg=\"failed, retrying in 1s ... (1/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-11-30T23:05:59Z\" level=warning msg=\"failed, retrying in 1s ... (2/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-11-30T23:06:37Z\" level=warning msg=\"failed, retrying in 1s ... (3/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi167 -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": 9049, "virtual_ip": "10.0.31.38/16"}, "status": {"created": "2023-11-30T22:58:56.312786Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.38/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2023-11-30T22:54:41.668043Z", "last_refresh": "2023-11-30T23:04:39.558331Z", "running": 2, "size": 2}}, {"events": ["2023-11-30T22:55:50.759225Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi038:172.21.15.38=smithi038", "smithi167:172.21.15.167=smithi167"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2023-11-30T22:55:50.756456Z", "last_refresh": "2023-11-30T23:04:39.558407Z", "running": 2, "size": 2}}, {"events": ["2023-11-30T22:58:56.311581Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2023-11-30T22:58:56.308071Z", "last_refresh": "2023-11-30T23:04:43.743907Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2023-11-30T22:54:46.136630Z", "last_refresh": "2023-11-30T23:04:39.558478Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2023-11-30T22:56:33.258058Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2023-11-30T22:56:33.253117Z", "last_refresh": "2023-11-30T23:04:39.558544Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2023-11-30T22:54:43.949497Z", "last_refresh": "2023-11-30T23:04:43.743520Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2023-11-30T22:58:52.105721Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2023-11-30T22:58:59.793467Z", "last_refresh": "2023-11-30T23:04:39.558809Z", "ports": [8800], "running": 2, "size": 2}}] 2023-11-30T23:08:22.012 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:08:21 smithi167 conmon[87022]: cluster 2023-11-30T23:08:20.632315+0000 mgr.smithi038.ldalxq (mgr.14182) 629 : cluster [DBG] pgmap v426: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2023-11-30T23:08:22.012 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:08:21 smithi167 conmon[87022]: 2023-11-30T23:08:22.024 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:08:21 smithi038 conmon[81956]: cluster 2023-11-30T23:08:20.632315+0000 mgr.smithi038.ldalxq (mgr.14182) 629 : cluster [DBG] pgmap v426: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2023-11-30T23:08:22.245 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2023-11-30T23:08:23.013 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:08:22 smithi167 conmon[87022]: audit 2023-11-30T23:08:21.800332+0000 mgr.smithi038.ldalxq (mgr.14182) 630 : 2023-11-30T23:08:23.014 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:08:22 smithi167 conmon[87022]: audit [DBG] from='client.15278 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-11-30T23:08:23.014 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:08:22 smithi167 conmon[87022]: cluster 2023-11-30T23:08:22.632979+0000 mgr.smithi038.ldalxq (mgr.14182) 631 : cluster [DBG] pgmap v427: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2023-11-30T23:08:23.023 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:08:22 smithi038 conmon[81956]: audit 2023-11-30T23:08:21.800332+0000 mgr.smithi038.ldalxq (mgr. 2023-11-30T23:08:23.024 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:08:22 smithi038 conmon[81956]: 14182) 630 : audit [DBG] from='client.15278 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-11-30T23:08:23.024 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:08:22 smithi038 conmon[81956]: cluster 2023-11-30T23:08:22.632979+0000 mgr.smithi038.ldalxq (mgr.14182) 631 : cluster [DBG] pgmap v427: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2023-11-30T23:08:23.247 DEBUG:teuthology.orchestra.run.smithi038:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:0dc074ce0b0b3b4f393f56dd32ef36884ebf45a9 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 3faf8b00-8fd3-11ee-95a2-87774f69a715 -- ceph orch ls -f json 2023-11-30T23:08:24.988 INFO:teuthology.orchestra.run.smithi038.stdout: 2023-11-30T23:08:24.988 INFO:teuthology.orchestra.run.smithi038.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2023-11-30T22:54:47.122758Z", "last_refresh": "2023-11-30T23:04:43.743252Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2023-11-30T22:54:42.674972Z", "last_refresh": "2023-11-30T23:04:39.558186Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2023-11-30T22:54:45.114633Z", "last_refresh": "2023-11-30T23:04:43.743389Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2023-11-30T23:02:07.111634Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi167.buykdj on smithi167: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi167-buykdj\n/bin/podman: stderr Error: error inspecting object: no such container ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi167-buykdj\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi167.buykdj\n/bin/podman: stderr Error: error inspecting object: no such container ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi167.buykdj\nDeploy daemon haproxy.nfs.foo.smithi167.buykdj ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi167 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2023-11-30T22:59:44Z\" level=warning msg=\"failed, retrying in 1s ... (1/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-11-30T23:00:21Z\" level=warning msg=\"failed, retrying in 1s ... (2/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-11-30T23:00:59Z\" level=warning msg=\"failed, retrying in 1s ... (3/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: Error determining manifest MIME type for docker://haproxy:2.3: Error reading manifest sha256:058f434330f13dbbc46761f3e9a76af2408e9ec1898c9ac5a8baf00b42e756a9 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi167 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-11-30T23:04:36.497929Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi038.fwcakz on smithi038: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi038-fwcakz\n/bin/podman: stderr Error: error inspecting object: no such container ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi038-fwcakz\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi038.fwcakz\n/bin/podman: stderr Error: error inspecting object: no such container ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi038.fwcakz\nDeploy daemon haproxy.nfs.foo.smithi038.fwcakz ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi038 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2023-11-30T23:02:44Z\" level=warning msg=\"failed, retrying in 1s ... (1/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-11-30T23:03:21Z\" level=warning msg=\"failed, retrying in 1s ... (2/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-11-30T23:03:58Z\" level=warning msg=\"failed, retrying in 1s ... (3/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi038 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-11-30T23:04:36.502614Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi038.flofui on smithi038: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2023-11-30T23:04:36.503792Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi167.dxieha on smithi167: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2023-11-30T23:07:14.865206Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi167.igxkgw on smithi167: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi167-igxkgw\n/bin/podman: stderr Error: error inspecting object: no such container ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi167-igxkgw\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi167.igxkgw\n/bin/podman: stderr Error: error inspecting object: no such container ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi167.igxkgw\nDeploy daemon haproxy.nfs.foo.smithi167.igxkgw ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi167 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2023-11-30T23:05:21Z\" level=warning msg=\"failed, retrying in 1s ... (1/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-11-30T23:05:59Z\" level=warning msg=\"failed, retrying in 1s ... (2/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-11-30T23:06:37Z\" level=warning msg=\"failed, retrying in 1s ... (3/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi167 -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": 9049, "virtual_ip": "10.0.31.38/16"}, "status": {"created": "2023-11-30T22:58:56.312786Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.38/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2023-11-30T22:54:41.668043Z", "last_refresh": "2023-11-30T23:04:39.558331Z", "running": 2, "size": 2}}, {"events": ["2023-11-30T22:55:50.759225Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi038:172.21.15.38=smithi038", "smithi167:172.21.15.167=smithi167"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2023-11-30T22:55:50.756456Z", "last_refresh": "2023-11-30T23:04:39.558407Z", "running": 2, "size": 2}}, {"events": ["2023-11-30T22:58:56.311581Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2023-11-30T22:58:56.308071Z", "last_refresh": "2023-11-30T23:04:43.743907Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2023-11-30T22:54:46.136630Z", "last_refresh": "2023-11-30T23:04:39.558478Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2023-11-30T22:56:33.258058Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2023-11-30T22:56:33.253117Z", "last_refresh": "2023-11-30T23:04:39.558544Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2023-11-30T22:54:43.949497Z", "last_refresh": "2023-11-30T23:04:43.743520Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2023-11-30T22:58:52.105721Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2023-11-30T22:58:59.793467Z", "last_refresh": "2023-11-30T23:04:39.558809Z", "ports": [8800], "running": 2, "size": 2}}] 2023-11-30T23:08:25.398 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2023-11-30T23:08:26.016 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:08:25 smithi167 conmon[87022]: cluster 2023-11-30T23:08:24.633707+0000 mgr.smithi038.ldalxq (mgr.14182) 632 : cluster [DBG] 2023-11-30T23:08:26.016 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:08:25 smithi167 conmon[87022]: pgmap v428: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2023-11-30T23:08:26.023 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:08:25 smithi038 conmon[81956]: cluster 2023-11-30T23:08:24.633707+0000 mgr.smithi038.ldalxq (mgr.14182) 632 : cluster [DBG] pgmap v428: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2023-11-30T23:08:26.024 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:08:25 smithi038 conmon[81956]: 2023-11-30T23:08:26.400 DEBUG:teuthology.orchestra.run.smithi038:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:0dc074ce0b0b3b4f393f56dd32ef36884ebf45a9 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 3faf8b00-8fd3-11ee-95a2-87774f69a715 -- ceph orch ls -f json 2023-11-30T23:08:26.962 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:08:26 smithi038 conmon[81956]: audit 2023-11-30T23 2023-11-30T23:08:26.962 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:08:26 smithi038 conmon[81956]: :08:24.983386+0000 mgr.smithi038.ldalxq (mgr.14182) 633 : audit [DBG] from='client.15282 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-11-30T23:08:27.012 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:08:26 smithi167 conmon[87022]: audit 2023-11-30T23:08:24.983386+0000 mgr.smithi038.ldalxq (mgr.14182) 633 : audit 2023-11-30T23:08:27.012 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:08:26 smithi167 conmon[87022]: [DBG] from='client.15282 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-11-30T23:08:28.011 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:08:27 smithi167 conmon[87022]: cluster 2023-11-30T23:08:26.634374+0000 mgr.smithi038.ldalxq (mgr.14182) 634 : cluster 2023-11-30T23:08:28.012 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:08:27 smithi167 conmon[87022]: [DBG] pgmap v429: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2023-11-30T23:08:28.024 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:08:27 smithi038 conmon[81956]: cluster 2023-11-30T23:08:26.634374+0000 mgr.smithi038.ldalxq 2023-11-30T23:08:28.024 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:08:27 smithi038 conmon[81956]: (mgr.14182) 634 : cluster [DBG] pgmap v429: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2023-11-30T23:08:28.151 INFO:teuthology.orchestra.run.smithi038.stdout: 2023-11-30T23:08:28.151 INFO:teuthology.orchestra.run.smithi038.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2023-11-30T22:54:47.122758Z", "last_refresh": "2023-11-30T23:04:43.743252Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2023-11-30T22:54:42.674972Z", "last_refresh": "2023-11-30T23:04:39.558186Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2023-11-30T22:54:45.114633Z", "last_refresh": "2023-11-30T23:04:43.743389Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2023-11-30T23:02:07.111634Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi167.buykdj on smithi167: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi167-buykdj\n/bin/podman: stderr Error: error inspecting object: no such container ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi167-buykdj\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi167.buykdj\n/bin/podman: stderr Error: error inspecting object: no such container ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi167.buykdj\nDeploy daemon haproxy.nfs.foo.smithi167.buykdj ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi167 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2023-11-30T22:59:44Z\" level=warning msg=\"failed, retrying in 1s ... (1/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-11-30T23:00:21Z\" level=warning msg=\"failed, retrying in 1s ... (2/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-11-30T23:00:59Z\" level=warning msg=\"failed, retrying in 1s ... (3/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: Error determining manifest MIME type for docker://haproxy:2.3: Error reading manifest sha256:058f434330f13dbbc46761f3e9a76af2408e9ec1898c9ac5a8baf00b42e756a9 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi167 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-11-30T23:04:36.497929Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi038.fwcakz on smithi038: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi038-fwcakz\n/bin/podman: stderr Error: error inspecting object: no such container ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi038-fwcakz\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi038.fwcakz\n/bin/podman: stderr Error: error inspecting object: no such container ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi038.fwcakz\nDeploy daemon haproxy.nfs.foo.smithi038.fwcakz ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi038 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2023-11-30T23:02:44Z\" level=warning msg=\"failed, retrying in 1s ... (1/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-11-30T23:03:21Z\" level=warning msg=\"failed, retrying in 1s ... (2/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-11-30T23:03:58Z\" level=warning msg=\"failed, retrying in 1s ... (3/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi038 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-11-30T23:04:36.502614Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi038.flofui on smithi038: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2023-11-30T23:04:36.503792Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi167.dxieha on smithi167: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2023-11-30T23:07:14.865206Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi167.igxkgw on smithi167: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi167-igxkgw\n/bin/podman: stderr Error: error inspecting object: no such container ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi167-igxkgw\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi167.igxkgw\n/bin/podman: stderr Error: error inspecting object: no such container ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi167.igxkgw\nDeploy daemon haproxy.nfs.foo.smithi167.igxkgw ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi167 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2023-11-30T23:05:21Z\" level=warning msg=\"failed, retrying in 1s ... (1/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-11-30T23:05:59Z\" level=warning msg=\"failed, retrying in 1s ... (2/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-11-30T23:06:37Z\" level=warning msg=\"failed, retrying in 1s ... (3/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi167 -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": 9049, "virtual_ip": "10.0.31.38/16"}, "status": {"created": "2023-11-30T22:58:56.312786Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.38/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2023-11-30T22:54:41.668043Z", "last_refresh": "2023-11-30T23:04:39.558331Z", "running": 2, "size": 2}}, {"events": ["2023-11-30T22:55:50.759225Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi038:172.21.15.38=smithi038", "smithi167:172.21.15.167=smithi167"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2023-11-30T22:55:50.756456Z", "last_refresh": "2023-11-30T23:04:39.558407Z", "running": 2, "size": 2}}, {"events": ["2023-11-30T22:58:56.311581Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2023-11-30T22:58:56.308071Z", "last_refresh": "2023-11-30T23:04:43.743907Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2023-11-30T22:54:46.136630Z", "last_refresh": "2023-11-30T23:04:39.558478Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2023-11-30T22:56:33.258058Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2023-11-30T22:56:33.253117Z", "last_refresh": "2023-11-30T23:04:39.558544Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2023-11-30T22:54:43.949497Z", "last_refresh": "2023-11-30T23:04:43.743520Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2023-11-30T22:58:52.105721Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2023-11-30T22:58:59.793467Z", "last_refresh": "2023-11-30T23:04:39.558809Z", "ports": [8800], "running": 2, "size": 2}}] 2023-11-30T23:08:28.558 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2023-11-30T23:08:28.944 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:08:28 smithi038 conmon[81956]: audit 2023-11-30T23:08:28.147163+0000 mgr.smithi038.ldalxq (mgr.14182) 635 : audit [DBG] from='client.15286 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-11-30T23:08:28.944 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:08:28 smithi038 conmon[81956]: cluster 2023-11-30T23:08:28.634897+0000 mgr.smithi038.ldalxq (mgr.14182) 636 : cluster [DBG] pgmap v430: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2023-11-30T23:08:29.012 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:08:28 smithi167 conmon[87022]: audit 2023-11-30T23:08:28.147163+0000 mgr.smithi038.ldalxq (mgr.14182) 635 : 2023-11-30T23:08:29.013 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:08:28 smithi167 conmon[87022]: audit [DBG] from='client.15286 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-11-30T23:08:29.013 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:08:28 smithi167 conmon[87022]: cluster 2023-11-30T23:08:28.634897+0000 mgr.smithi038.ldalxq (mgr.14182) 636 : cluster [DBG] pgmap v430: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2023-11-30T23:08:29.558 DEBUG:teuthology.orchestra.run.smithi038:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:0dc074ce0b0b3b4f393f56dd32ef36884ebf45a9 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 3faf8b00-8fd3-11ee-95a2-87774f69a715 -- ceph orch ls -f json 2023-11-30T23:08:31.350 INFO:teuthology.orchestra.run.smithi038.stdout: 2023-11-30T23:08:31.350 INFO:teuthology.orchestra.run.smithi038.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2023-11-30T22:54:47.122758Z", "last_refresh": "2023-11-30T23:04:43.743252Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2023-11-30T22:54:42.674972Z", "last_refresh": "2023-11-30T23:04:39.558186Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2023-11-30T22:54:45.114633Z", "last_refresh": "2023-11-30T23:04:43.743389Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2023-11-30T23:02:07.111634Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi167.buykdj on smithi167: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi167-buykdj\n/bin/podman: stderr Error: error inspecting object: no such container ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi167-buykdj\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi167.buykdj\n/bin/podman: stderr Error: error inspecting object: no such container ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi167.buykdj\nDeploy daemon haproxy.nfs.foo.smithi167.buykdj ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi167 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2023-11-30T22:59:44Z\" level=warning msg=\"failed, retrying in 1s ... (1/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-11-30T23:00:21Z\" level=warning msg=\"failed, retrying in 1s ... (2/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-11-30T23:00:59Z\" level=warning msg=\"failed, retrying in 1s ... (3/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: Error determining manifest MIME type for docker://haproxy:2.3: Error reading manifest sha256:058f434330f13dbbc46761f3e9a76af2408e9ec1898c9ac5a8baf00b42e756a9 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi167 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-11-30T23:04:36.497929Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi038.fwcakz on smithi038: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi038-fwcakz\n/bin/podman: stderr Error: error inspecting object: no such container ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi038-fwcakz\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi038.fwcakz\n/bin/podman: stderr Error: error inspecting object: no such container ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi038.fwcakz\nDeploy daemon haproxy.nfs.foo.smithi038.fwcakz ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi038 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2023-11-30T23:02:44Z\" level=warning msg=\"failed, retrying in 1s ... (1/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-11-30T23:03:21Z\" level=warning msg=\"failed, retrying in 1s ... (2/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-11-30T23:03:58Z\" level=warning msg=\"failed, retrying in 1s ... (3/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi038 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-11-30T23:04:36.502614Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi038.flofui on smithi038: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2023-11-30T23:04:36.503792Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi167.dxieha on smithi167: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2023-11-30T23:07:14.865206Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi167.igxkgw on smithi167: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi167-igxkgw\n/bin/podman: stderr Error: error inspecting object: no such container ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi167-igxkgw\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi167.igxkgw\n/bin/podman: stderr Error: error inspecting object: no such container ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi167.igxkgw\nDeploy daemon haproxy.nfs.foo.smithi167.igxkgw ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi167 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2023-11-30T23:05:21Z\" level=warning msg=\"failed, retrying in 1s ... (1/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-11-30T23:05:59Z\" level=warning msg=\"failed, retrying in 1s ... (2/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-11-30T23:06:37Z\" level=warning msg=\"failed, retrying in 1s ... (3/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi167 -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": 9049, "virtual_ip": "10.0.31.38/16"}, "status": {"created": "2023-11-30T22:58:56.312786Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.38/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2023-11-30T22:54:41.668043Z", "last_refresh": "2023-11-30T23:04:39.558331Z", "running": 2, "size": 2}}, {"events": ["2023-11-30T22:55:50.759225Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi038:172.21.15.38=smithi038", "smithi167:172.21.15.167=smithi167"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2023-11-30T22:55:50.756456Z", "last_refresh": "2023-11-30T23:04:39.558407Z", "running": 2, "size": 2}}, {"events": ["2023-11-30T22:58:56.311581Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2023-11-30T22:58:56.308071Z", "last_refresh": "2023-11-30T23:04:43.743907Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2023-11-30T22:54:46.136630Z", "last_refresh": "2023-11-30T23:04:39.558478Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2023-11-30T22:56:33.258058Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2023-11-30T22:56:33.253117Z", "last_refresh": "2023-11-30T23:04:39.558544Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2023-11-30T22:54:43.949497Z", "last_refresh": "2023-11-30T23:04:43.743520Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2023-11-30T22:58:52.105721Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2023-11-30T22:58:59.793467Z", "last_refresh": "2023-11-30T23:04:39.558809Z", "ports": [8800], "running": 2, "size": 2}}] 2023-11-30T23:08:31.819 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2023-11-30T23:08:32.012 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:08:31 smithi167 conmon[87022]: cluster 2023-11-30T23:08:30.635616+0000 mgr.smithi038.ldalxq (mgr.14182) 637 : cluster [DBG] pgmap v431: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2023-11-30T23:08:32.012 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:08:31 smithi167 conmon[87022]: 2023-11-30T23:08:32.023 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:08:31 smithi038 conmon[81956]: cluster 2023-11-30T23:08:30.635616+0000 mgr.smithi038.ldalxq (mgr.14182) 637 : cluster [DBG] pgmap v431: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2023-11-30T23:08:32.820 DEBUG:teuthology.orchestra.run.smithi038:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:0dc074ce0b0b3b4f393f56dd32ef36884ebf45a9 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 3faf8b00-8fd3-11ee-95a2-87774f69a715 -- ceph orch ls -f json 2023-11-30T23:08:33.012 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:08:32 smithi167 conmon[87022]: audit 2023-11-30T23:08:31.346577+0000 mgr.smithi038.ldalxq (mgr.14182) 638 : audit 2023-11-30T23:08:33.012 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:08:32 smithi167 conmon[87022]: [DBG] from='client.15290 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-11-30T23:08:33.024 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:08:32 smithi038 conmon[81956]: audit 2023-11-30T23:08:31.346577+0000 mgr.smithi038.ldalxq (mgr.14182 2023-11-30T23:08:33.024 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:08:32 smithi038 conmon[81956]: ) 638 : audit [DBG] from='client.15290 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-11-30T23:08:34.012 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:08:33 smithi167 conmon[87022]: cluster 2023-11-30T23:08:32.636272+0000 mgr.smithi038.ldalxq (mgr.14182) 639 : cluster [DBG] 2023-11-30T23:08:34.012 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:08:33 smithi167 conmon[87022]: pgmap v432: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2023-11-30T23:08:34.024 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:08:33 smithi038 conmon[81956]: cluster 2023-11-30T23:08:32.636272+0000 mgr.smithi038.ldalxq (mgr.14182) 2023-11-30T23:08:34.025 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:08:33 smithi038 conmon[81956]: 639 : cluster [DBG] pgmap v432: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2023-11-30T23:08:34.643 INFO:teuthology.orchestra.run.smithi038.stdout: 2023-11-30T23:08:34.644 INFO:teuthology.orchestra.run.smithi038.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2023-11-30T22:54:47.122758Z", "last_refresh": "2023-11-30T23:04:43.743252Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2023-11-30T22:54:42.674972Z", "last_refresh": "2023-11-30T23:04:39.558186Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2023-11-30T22:54:45.114633Z", "last_refresh": "2023-11-30T23:04:43.743389Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2023-11-30T23:02:07.111634Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi167.buykdj on smithi167: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi167-buykdj\n/bin/podman: stderr Error: error inspecting object: no such container ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi167-buykdj\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi167.buykdj\n/bin/podman: stderr Error: error inspecting object: no such container ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi167.buykdj\nDeploy daemon haproxy.nfs.foo.smithi167.buykdj ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi167 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2023-11-30T22:59:44Z\" level=warning msg=\"failed, retrying in 1s ... (1/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-11-30T23:00:21Z\" level=warning msg=\"failed, retrying in 1s ... (2/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-11-30T23:00:59Z\" level=warning msg=\"failed, retrying in 1s ... (3/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: Error determining manifest MIME type for docker://haproxy:2.3: Error reading manifest sha256:058f434330f13dbbc46761f3e9a76af2408e9ec1898c9ac5a8baf00b42e756a9 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi167 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-11-30T23:04:36.497929Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi038.fwcakz on smithi038: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi038-fwcakz\n/bin/podman: stderr Error: error inspecting object: no such container ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi038-fwcakz\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi038.fwcakz\n/bin/podman: stderr Error: error inspecting object: no such container ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi038.fwcakz\nDeploy daemon haproxy.nfs.foo.smithi038.fwcakz ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi038 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2023-11-30T23:02:44Z\" level=warning msg=\"failed, retrying in 1s ... (1/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-11-30T23:03:21Z\" level=warning msg=\"failed, retrying in 1s ... (2/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-11-30T23:03:58Z\" level=warning msg=\"failed, retrying in 1s ... (3/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi038 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-11-30T23:04:36.502614Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi038.flofui on smithi038: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2023-11-30T23:04:36.503792Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi167.dxieha on smithi167: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2023-11-30T23:07:14.865206Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi167.igxkgw on smithi167: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi167-igxkgw\n/bin/podman: stderr Error: error inspecting object: no such container ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi167-igxkgw\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi167.igxkgw\n/bin/podman: stderr Error: error inspecting object: no such container ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi167.igxkgw\nDeploy daemon haproxy.nfs.foo.smithi167.igxkgw ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi167 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2023-11-30T23:05:21Z\" level=warning msg=\"failed, retrying in 1s ... (1/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-11-30T23:05:59Z\" level=warning msg=\"failed, retrying in 1s ... (2/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-11-30T23:06:37Z\" level=warning msg=\"failed, retrying in 1s ... (3/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi167 -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": 9049, "virtual_ip": "10.0.31.38/16"}, "status": {"created": "2023-11-30T22:58:56.312786Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.38/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2023-11-30T22:54:41.668043Z", "last_refresh": "2023-11-30T23:04:39.558331Z", "running": 2, "size": 2}}, {"events": ["2023-11-30T22:55:50.759225Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi038:172.21.15.38=smithi038", "smithi167:172.21.15.167=smithi167"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2023-11-30T22:55:50.756456Z", "last_refresh": "2023-11-30T23:04:39.558407Z", "running": 2, "size": 2}}, {"events": ["2023-11-30T22:58:56.311581Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2023-11-30T22:58:56.308071Z", "last_refresh": "2023-11-30T23:04:43.743907Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2023-11-30T22:54:46.136630Z", "last_refresh": "2023-11-30T23:04:39.558478Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2023-11-30T22:56:33.258058Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2023-11-30T22:56:33.253117Z", "last_refresh": "2023-11-30T23:04:39.558544Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2023-11-30T22:54:43.949497Z", "last_refresh": "2023-11-30T23:04:43.743520Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2023-11-30T22:58:52.105721Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2023-11-30T22:58:59.793467Z", "last_refresh": "2023-11-30T23:04:39.558809Z", "ports": [8800], "running": 2, "size": 2}}] 2023-11-30T23:08:35.012 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:08:34 smithi167 conmon[87022]: cluster 2023-11-30T23:08:34.636911+0000 mgr.smithi038.ldalxq (mgr.14182) 640 : cluster 2023-11-30T23:08:35.012 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:08:34 smithi167 conmon[87022]: [DBG] pgmap v433: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2023-11-30T23:08:35.012 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:08:34 smithi167 conmon[87022]: audit 2023-11-30T23:08:34.639922+0000 mgr.smithi038.ldalxq (mgr.14182) 641 : audit [DBG] from='client.15294 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-11-30T23:08:35.024 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:08:34 smithi038 conmon[81956]: cluster 2023-11-30T23:08:34.636911+0000 mgr.smithi038.ldalxq ( 2023-11-30T23:08:35.024 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:08:34 smithi038 conmon[81956]: mgr.14182) 640 : cluster [DBG] pgmap v433: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2023-11-30T23:08:35.024 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:08:34 smithi038 conmon[81956]: audit 2023-11-30T23:08:34.639922+0000 mgr.smithi038.ldalxq (mgr.14182) 641 : audit [DBG] from='client.15294 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-11-30T23:08:35.068 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2023-11-30T23:08:36.069 DEBUG:teuthology.orchestra.run.smithi038:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:0dc074ce0b0b3b4f393f56dd32ef36884ebf45a9 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 3faf8b00-8fd3-11ee-95a2-87774f69a715 -- ceph orch ls -f json 2023-11-30T23:08:36.978 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:08:36 smithi038 conmon[81956]: cluster 2023-11-30T23:08:36.637737+0000 mgr.smithi038.ldalxq (mgr.14182) 642 : cluster [DBG] pgmap v434: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2023-11-30T23:08:37.012 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:08:36 smithi167 conmon[87022]: cluster 2023-11-30T23:08:36.637737+0000 mgr.smithi038.ldalxq (mgr.14182) 642 : cluster [DBG] pgmap v434: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2023-11-30T23:08:37.012 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:08:36 smithi167 conmon[87022]: 2023-11-30T23:08:37.767 INFO:teuthology.orchestra.run.smithi038.stdout: 2023-11-30T23:08:37.767 INFO:teuthology.orchestra.run.smithi038.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2023-11-30T22:54:47.122758Z", "last_refresh": "2023-11-30T23:04:43.743252Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2023-11-30T22:54:42.674972Z", "last_refresh": "2023-11-30T23:04:39.558186Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2023-11-30T22:54:45.114633Z", "last_refresh": "2023-11-30T23:04:43.743389Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2023-11-30T23:02:07.111634Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi167.buykdj on smithi167: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi167-buykdj\n/bin/podman: stderr Error: error inspecting object: no such container ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi167-buykdj\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi167.buykdj\n/bin/podman: stderr Error: error inspecting object: no such container ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi167.buykdj\nDeploy daemon haproxy.nfs.foo.smithi167.buykdj ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi167 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2023-11-30T22:59:44Z\" level=warning msg=\"failed, retrying in 1s ... (1/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-11-30T23:00:21Z\" level=warning msg=\"failed, retrying in 1s ... (2/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-11-30T23:00:59Z\" level=warning msg=\"failed, retrying in 1s ... (3/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: Error determining manifest MIME type for docker://haproxy:2.3: Error reading manifest sha256:058f434330f13dbbc46761f3e9a76af2408e9ec1898c9ac5a8baf00b42e756a9 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi167 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-11-30T23:04:36.497929Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi038.fwcakz on smithi038: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi038-fwcakz\n/bin/podman: stderr Error: error inspecting object: no such container ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi038-fwcakz\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi038.fwcakz\n/bin/podman: stderr Error: error inspecting object: no such container ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi038.fwcakz\nDeploy daemon haproxy.nfs.foo.smithi038.fwcakz ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi038 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2023-11-30T23:02:44Z\" level=warning msg=\"failed, retrying in 1s ... (1/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-11-30T23:03:21Z\" level=warning msg=\"failed, retrying in 1s ... (2/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-11-30T23:03:58Z\" level=warning msg=\"failed, retrying in 1s ... (3/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi038 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-11-30T23:04:36.502614Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi038.flofui on smithi038: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2023-11-30T23:04:36.503792Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi167.dxieha on smithi167: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2023-11-30T23:07:14.865206Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi167.igxkgw on smithi167: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi167-igxkgw\n/bin/podman: stderr Error: error inspecting object: no such container ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi167-igxkgw\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi167.igxkgw\n/bin/podman: stderr Error: error inspecting object: no such container ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi167.igxkgw\nDeploy daemon haproxy.nfs.foo.smithi167.igxkgw ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi167 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2023-11-30T23:05:21Z\" level=warning msg=\"failed, retrying in 1s ... (1/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-11-30T23:05:59Z\" level=warning msg=\"failed, retrying in 1s ... (2/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-11-30T23:06:37Z\" level=warning msg=\"failed, retrying in 1s ... (3/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi167 -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": 9049, "virtual_ip": "10.0.31.38/16"}, "status": {"created": "2023-11-30T22:58:56.312786Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.38/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2023-11-30T22:54:41.668043Z", "last_refresh": "2023-11-30T23:04:39.558331Z", "running": 2, "size": 2}}, {"events": ["2023-11-30T22:55:50.759225Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi038:172.21.15.38=smithi038", "smithi167:172.21.15.167=smithi167"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2023-11-30T22:55:50.756456Z", "last_refresh": "2023-11-30T23:04:39.558407Z", "running": 2, "size": 2}}, {"events": ["2023-11-30T22:58:56.311581Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2023-11-30T22:58:56.308071Z", "last_refresh": "2023-11-30T23:04:43.743907Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2023-11-30T22:54:46.136630Z", "last_refresh": "2023-11-30T23:04:39.558478Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2023-11-30T22:56:33.258058Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2023-11-30T22:56:33.253117Z", "last_refresh": "2023-11-30T23:04:39.558544Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2023-11-30T22:54:43.949497Z", "last_refresh": "2023-11-30T23:04:43.743520Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2023-11-30T22:58:52.105721Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2023-11-30T22:58:59.793467Z", "last_refresh": "2023-11-30T23:04:39.558809Z", "ports": [8800], "running": 2, "size": 2}}] 2023-11-30T23:08:38.217 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2023-11-30T23:08:39.012 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:08:38 smithi167 conmon[87022]: audit 2023-11-30T23:08:37.763038+0000 mgr.smithi038.ldalxq (mgr.14182) 643 : audit [DBG] from='client.15298 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-11-30T23:08:39.012 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:08:38 smithi167 conmon[87022]: 2023-11-30T23:08:39.012 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:08:38 smithi167 conmon[87022]: cluster 2023-11-30T23:08:38.638453+0000 mgr.smithi038.ldalxq (mgr.14182) 644 : cluster [DBG] pgmap v435: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2023-11-30T23:08:39.024 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:08:38 smithi038 conmon[81956]: audit 2023-11-30T23:08:37.763038+0000 mgr.smithi038.ldalxq (mgr.14182) 643 : audit [DBG] from='client.15298 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-11-30T23:08:39.024 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:08:38 smithi038 conmon[81956]: cluster 2023-11-30T23:08:38.638453+0000 mgr.smithi038.ldalxq (mgr.14182) 644 : cluster [DBG] pgmap v435: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2023-11-30T23:08:39.218 DEBUG:teuthology.orchestra.run.smithi038:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:0dc074ce0b0b3b4f393f56dd32ef36884ebf45a9 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 3faf8b00-8fd3-11ee-95a2-87774f69a715 -- ceph orch ls -f json 2023-11-30T23:08:40.774 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:08:40 smithi038 conmon[81956]: cluster 2023-11-30T23:08:40.639183+0000 mgr.smithi038.ldalxq (mgr.14182) 645 : cluster [DBG] pgmap v436: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2023-11-30T23:08:40.911 INFO:teuthology.orchestra.run.smithi038.stdout: 2023-11-30T23:08:40.911 INFO:teuthology.orchestra.run.smithi038.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2023-11-30T22:54:47.122758Z", "last_refresh": "2023-11-30T23:04:43.743252Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2023-11-30T22:54:42.674972Z", "last_refresh": "2023-11-30T23:04:39.558186Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2023-11-30T22:54:45.114633Z", "last_refresh": "2023-11-30T23:04:43.743389Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2023-11-30T23:02:07.111634Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi167.buykdj on smithi167: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi167-buykdj\n/bin/podman: stderr Error: error inspecting object: no such container ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi167-buykdj\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi167.buykdj\n/bin/podman: stderr Error: error inspecting object: no such container ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi167.buykdj\nDeploy daemon haproxy.nfs.foo.smithi167.buykdj ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi167 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2023-11-30T22:59:44Z\" level=warning msg=\"failed, retrying in 1s ... (1/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-11-30T23:00:21Z\" level=warning msg=\"failed, retrying in 1s ... (2/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-11-30T23:00:59Z\" level=warning msg=\"failed, retrying in 1s ... (3/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: Error determining manifest MIME type for docker://haproxy:2.3: Error reading manifest sha256:058f434330f13dbbc46761f3e9a76af2408e9ec1898c9ac5a8baf00b42e756a9 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi167 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-11-30T23:04:36.497929Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi038.fwcakz on smithi038: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi038-fwcakz\n/bin/podman: stderr Error: error inspecting object: no such container ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi038-fwcakz\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi038.fwcakz\n/bin/podman: stderr Error: error inspecting object: no such container ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi038.fwcakz\nDeploy daemon haproxy.nfs.foo.smithi038.fwcakz ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi038 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2023-11-30T23:02:44Z\" level=warning msg=\"failed, retrying in 1s ... (1/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-11-30T23:03:21Z\" level=warning msg=\"failed, retrying in 1s ... (2/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-11-30T23:03:58Z\" level=warning msg=\"failed, retrying in 1s ... (3/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi038 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-11-30T23:04:36.502614Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi038.flofui on smithi038: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2023-11-30T23:04:36.503792Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi167.dxieha on smithi167: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2023-11-30T23:07:14.865206Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi167.igxkgw on smithi167: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi167-igxkgw\n/bin/podman: stderr Error: error inspecting object: no such container ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi167-igxkgw\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi167.igxkgw\n/bin/podman: stderr Error: error inspecting object: no such container ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi167.igxkgw\nDeploy daemon haproxy.nfs.foo.smithi167.igxkgw ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi167 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2023-11-30T23:05:21Z\" level=warning msg=\"failed, retrying in 1s ... (1/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-11-30T23:05:59Z\" level=warning msg=\"failed, retrying in 1s ... (2/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-11-30T23:06:37Z\" level=warning msg=\"failed, retrying in 1s ... (3/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi167 -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": 9049, "virtual_ip": "10.0.31.38/16"}, "status": {"created": "2023-11-30T22:58:56.312786Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.38/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2023-11-30T22:54:41.668043Z", "last_refresh": "2023-11-30T23:04:39.558331Z", "running": 2, "size": 2}}, {"events": ["2023-11-30T22:55:50.759225Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi038:172.21.15.38=smithi038", "smithi167:172.21.15.167=smithi167"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2023-11-30T22:55:50.756456Z", "last_refresh": "2023-11-30T23:04:39.558407Z", "running": 2, "size": 2}}, {"events": ["2023-11-30T22:58:56.311581Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2023-11-30T22:58:56.308071Z", "last_refresh": "2023-11-30T23:04:43.743907Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2023-11-30T22:54:46.136630Z", "last_refresh": "2023-11-30T23:04:39.558478Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2023-11-30T22:56:33.258058Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2023-11-30T22:56:33.253117Z", "last_refresh": "2023-11-30T23:04:39.558544Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2023-11-30T22:54:43.949497Z", "last_refresh": "2023-11-30T23:04:43.743520Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2023-11-30T22:58:52.105721Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2023-11-30T22:58:59.793467Z", "last_refresh": "2023-11-30T23:04:39.558809Z", "ports": [8800], "running": 2, "size": 2}}] 2023-11-30T23:08:41.012 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:08:40 smithi167 conmon[87022]: cluster 2023-11-30T23:08:40.639183+0000 mgr.smithi038.ldalxq (mgr.14182) 645 : cluster [DBG] pgmap v436: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2023-11-30T23:08:41.012 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:08:40 smithi167 conmon[87022]: 2023-11-30T23:08:41.371 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2023-11-30T23:08:42.012 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:08:41 smithi167 conmon[87022]: audit 2023-11-30T23:08:40.906541+0000 mgr.smithi038.ldalxq (mgr.14182) 646 : 2023-11-30T23:08:42.012 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:08:41 smithi167 conmon[87022]: audit [DBG] from='client.15302 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-11-30T23:08:42.023 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:08:41 smithi038 conmon[81956]: audit 2023-11-30T23:08:40.906541+0000 mgr.smithi038.ldalxq (mgr.14182) 646 : audit 2023-11-30T23:08:42.024 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:08:41 smithi038 conmon[81956]: [DBG] from='client.15302 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-11-30T23:08:42.372 DEBUG:teuthology.orchestra.run.smithi038:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:0dc074ce0b0b3b4f393f56dd32ef36884ebf45a9 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 3faf8b00-8fd3-11ee-95a2-87774f69a715 -- ceph orch ls -f json 2023-11-30T23:08:43.024 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:08:42 smithi038 conmon[81956]: cluster 2023-11-30T23:08:42.639619+0000 mgr.smithi038.ldalxq (mgr.14182) 647 : cluster [DBG] pgmap v437: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2023-11-30T23:08:43.262 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:08:42 smithi167 conmon[87022]: cluster 2023-11-30T23:08:42.639619+0000 mgr.smithi038.ldalxq (mgr.14182) 647 : cluster 2023-11-30T23:08:43.262 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:08:42 smithi167 conmon[87022]: [DBG] pgmap v437: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2023-11-30T23:08:44.184 INFO:teuthology.orchestra.run.smithi038.stdout: 2023-11-30T23:08:44.184 INFO:teuthology.orchestra.run.smithi038.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2023-11-30T22:54:47.122758Z", "last_refresh": "2023-11-30T23:04:43.743252Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2023-11-30T22:54:42.674972Z", "last_refresh": "2023-11-30T23:04:39.558186Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2023-11-30T22:54:45.114633Z", "last_refresh": "2023-11-30T23:04:43.743389Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2023-11-30T23:02:07.111634Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi167.buykdj on smithi167: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi167-buykdj\n/bin/podman: stderr Error: error inspecting object: no such container ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi167-buykdj\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi167.buykdj\n/bin/podman: stderr Error: error inspecting object: no such container ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi167.buykdj\nDeploy daemon haproxy.nfs.foo.smithi167.buykdj ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi167 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2023-11-30T22:59:44Z\" level=warning msg=\"failed, retrying in 1s ... (1/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-11-30T23:00:21Z\" level=warning msg=\"failed, retrying in 1s ... (2/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-11-30T23:00:59Z\" level=warning msg=\"failed, retrying in 1s ... (3/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: Error determining manifest MIME type for docker://haproxy:2.3: Error reading manifest sha256:058f434330f13dbbc46761f3e9a76af2408e9ec1898c9ac5a8baf00b42e756a9 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi167 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-11-30T23:04:36.497929Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi038.fwcakz on smithi038: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi038-fwcakz\n/bin/podman: stderr Error: error inspecting object: no such container ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi038-fwcakz\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi038.fwcakz\n/bin/podman: stderr Error: error inspecting object: no such container ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi038.fwcakz\nDeploy daemon haproxy.nfs.foo.smithi038.fwcakz ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi038 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2023-11-30T23:02:44Z\" level=warning msg=\"failed, retrying in 1s ... (1/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-11-30T23:03:21Z\" level=warning msg=\"failed, retrying in 1s ... (2/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-11-30T23:03:58Z\" level=warning msg=\"failed, retrying in 1s ... (3/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi038 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-11-30T23:04:36.502614Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi038.flofui on smithi038: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2023-11-30T23:04:36.503792Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi167.dxieha on smithi167: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2023-11-30T23:07:14.865206Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi167.igxkgw on smithi167: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi167-igxkgw\n/bin/podman: stderr Error: error inspecting object: no such container ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi167-igxkgw\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi167.igxkgw\n/bin/podman: stderr Error: error inspecting object: no such container ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi167.igxkgw\nDeploy daemon haproxy.nfs.foo.smithi167.igxkgw ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi167 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2023-11-30T23:05:21Z\" level=warning msg=\"failed, retrying in 1s ... (1/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-11-30T23:05:59Z\" level=warning msg=\"failed, retrying in 1s ... (2/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-11-30T23:06:37Z\" level=warning msg=\"failed, retrying in 1s ... (3/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi167 -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": 9049, "virtual_ip": "10.0.31.38/16"}, "status": {"created": "2023-11-30T22:58:56.312786Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.38/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2023-11-30T22:54:41.668043Z", "last_refresh": "2023-11-30T23:04:39.558331Z", "running": 2, "size": 2}}, {"events": ["2023-11-30T22:55:50.759225Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi038:172.21.15.38=smithi038", "smithi167:172.21.15.167=smithi167"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2023-11-30T22:55:50.756456Z", "last_refresh": "2023-11-30T23:04:39.558407Z", "running": 2, "size": 2}}, {"events": ["2023-11-30T22:58:56.311581Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2023-11-30T22:58:56.308071Z", "last_refresh": "2023-11-30T23:04:43.743907Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2023-11-30T22:54:46.136630Z", "last_refresh": "2023-11-30T23:04:39.558478Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2023-11-30T22:56:33.258058Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2023-11-30T22:56:33.253117Z", "last_refresh": "2023-11-30T23:04:39.558544Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2023-11-30T22:54:43.949497Z", "last_refresh": "2023-11-30T23:04:43.743520Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2023-11-30T22:58:52.105721Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2023-11-30T22:58:59.793467Z", "last_refresh": "2023-11-30T23:04:39.558809Z", "ports": [8800], "running": 2, "size": 2}}] 2023-11-30T23:08:44.521 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2023-11-30T23:08:45.522 DEBUG:teuthology.orchestra.run.smithi038:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:0dc074ce0b0b3b4f393f56dd32ef36884ebf45a9 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 3faf8b00-8fd3-11ee-95a2-87774f69a715 -- ceph orch ls -f json 2023-11-30T23:08:46.013 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:08:45 smithi167 conmon[87022]: audit 2023-11-30T23:08:44.179298+0000 mgr.smithi038.ldalxq (mgr.14182) 648 : audit [DBG] 2023-11-30T23:08:46.014 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:08:45 smithi167 conmon[87022]: from='client.15306 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-11-30T23:08:46.015 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:08:45 smithi167 conmon[87022]: cluster 2023-11-30T23:08:44.640377+0000 mgr.smithi038.ldalxq (mgr.14182) 649 : cluster [DBG] pgmap v438: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2023-11-30T23:08:46.024 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:08:45 smithi038 conmon[81956]: audit 2023-11-30T23:08:44.179298+0000 2023-11-30T23:08:46.024 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:08:45 smithi038 conmon[81956]: mgr.smithi038.ldalxq (mgr.14182) 648 : audit [DBG] from='client.15306 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-11-30T23:08:46.024 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:08:45 smithi038 conmon[81956]: cluster 2023-11-30T23:08:44.640377+0000 mgr.smithi038.ldalxq (mgr.14182) 649 : cluster [DBG] pgmap v438: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2023-11-30T23:08:46.774 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:08:46 smithi038 conmon[81956]: cluster 2023-11-30T23:08:46.641070+0000 mgr.smithi038.ldalxq (mgr.14182) 650 : cluster [DBG] pgmap v439: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2023-11-30T23:08:47.012 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:08:46 smithi167 conmon[87022]: cluster 2023-11-30T23:08:46.641070+0000 mgr.smithi038.ldalxq (mgr.14182) 650 : cluster [DBG] 2023-11-30T23:08:47.012 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:08:46 smithi167 conmon[87022]: pgmap v439: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2023-11-30T23:08:47.366 INFO:teuthology.orchestra.run.smithi038.stdout: 2023-11-30T23:08:47.366 INFO:teuthology.orchestra.run.smithi038.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2023-11-30T22:54:47.122758Z", "last_refresh": "2023-11-30T23:04:43.743252Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2023-11-30T22:54:42.674972Z", "last_refresh": "2023-11-30T23:04:39.558186Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2023-11-30T22:54:45.114633Z", "last_refresh": "2023-11-30T23:04:43.743389Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2023-11-30T23:02:07.111634Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi167.buykdj on smithi167: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi167-buykdj\n/bin/podman: stderr Error: error inspecting object: no such container ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi167-buykdj\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi167.buykdj\n/bin/podman: stderr Error: error inspecting object: no such container ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi167.buykdj\nDeploy daemon haproxy.nfs.foo.smithi167.buykdj ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi167 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2023-11-30T22:59:44Z\" level=warning msg=\"failed, retrying in 1s ... (1/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-11-30T23:00:21Z\" level=warning msg=\"failed, retrying in 1s ... (2/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-11-30T23:00:59Z\" level=warning msg=\"failed, retrying in 1s ... (3/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: Error determining manifest MIME type for docker://haproxy:2.3: Error reading manifest sha256:058f434330f13dbbc46761f3e9a76af2408e9ec1898c9ac5a8baf00b42e756a9 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi167 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-11-30T23:04:36.497929Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi038.fwcakz on smithi038: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi038-fwcakz\n/bin/podman: stderr Error: error inspecting object: no such container ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi038-fwcakz\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi038.fwcakz\n/bin/podman: stderr Error: error inspecting object: no such container ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi038.fwcakz\nDeploy daemon haproxy.nfs.foo.smithi038.fwcakz ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi038 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2023-11-30T23:02:44Z\" level=warning msg=\"failed, retrying in 1s ... (1/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-11-30T23:03:21Z\" level=warning msg=\"failed, retrying in 1s ... (2/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-11-30T23:03:58Z\" level=warning msg=\"failed, retrying in 1s ... (3/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi038 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-11-30T23:04:36.502614Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi038.flofui on smithi038: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2023-11-30T23:04:36.503792Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi167.dxieha on smithi167: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2023-11-30T23:07:14.865206Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi167.igxkgw on smithi167: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi167-igxkgw\n/bin/podman: stderr Error: error inspecting object: no such container ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi167-igxkgw\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi167.igxkgw\n/bin/podman: stderr Error: error inspecting object: no such container ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi167.igxkgw\nDeploy daemon haproxy.nfs.foo.smithi167.igxkgw ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi167 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2023-11-30T23:05:21Z\" level=warning msg=\"failed, retrying in 1s ... (1/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-11-30T23:05:59Z\" level=warning msg=\"failed, retrying in 1s ... (2/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-11-30T23:06:37Z\" level=warning msg=\"failed, retrying in 1s ... (3/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi167 -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": 9049, "virtual_ip": "10.0.31.38/16"}, "status": {"created": "2023-11-30T22:58:56.312786Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.38/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2023-11-30T22:54:41.668043Z", "last_refresh": "2023-11-30T23:04:39.558331Z", "running": 2, "size": 2}}, {"events": ["2023-11-30T22:55:50.759225Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi038:172.21.15.38=smithi038", "smithi167:172.21.15.167=smithi167"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2023-11-30T22:55:50.756456Z", "last_refresh": "2023-11-30T23:04:39.558407Z", "running": 2, "size": 2}}, {"events": ["2023-11-30T22:58:56.311581Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2023-11-30T22:58:56.308071Z", "last_refresh": "2023-11-30T23:04:43.743907Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2023-11-30T22:54:46.136630Z", "last_refresh": "2023-11-30T23:04:39.558478Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2023-11-30T22:56:33.258058Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2023-11-30T22:56:33.253117Z", "last_refresh": "2023-11-30T23:04:39.558544Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2023-11-30T22:54:43.949497Z", "last_refresh": "2023-11-30T23:04:43.743520Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2023-11-30T22:58:52.105721Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2023-11-30T22:58:59.793467Z", "last_refresh": "2023-11-30T23:04:39.558809Z", "ports": [8800], "running": 2, "size": 2}}] 2023-11-30T23:08:47.784 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2023-11-30T23:08:48.011 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:08:47 smithi167 conmon[87022]: audit 2023-11-30T23:08:47.362385+0000 mgr.smithi038.ldalxq (mgr.14182) 651 : audit [DBG] from='client.15310 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-11-30T23:08:48.024 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:08:47 smithi038 conmon[81956]: audit 2023-11-30T23:08:47.362385+0000 mgr.smithi038.ldalxq (mgr 2023-11-30T23:08:48.024 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:08:47 smithi038 conmon[81956]: .14182) 651 : audit [DBG] from='client.15310 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-11-30T23:08:48.785 DEBUG:teuthology.orchestra.run.smithi038:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:0dc074ce0b0b3b4f393f56dd32ef36884ebf45a9 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 3faf8b00-8fd3-11ee-95a2-87774f69a715 -- ceph orch ls -f json 2023-11-30T23:08:49.024 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:08:48 smithi038 conmon[81956]: cluster 2023-11-30T23:08:48.641679+0000 mgr.smithi038.ldalxq (mgr.14182) 652 : cluster [DBG] 2023-11-30T23:08:49.024 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:08:48 smithi038 conmon[81956]: pgmap v440: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2023-11-30T23:08:49.262 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:08:48 smithi167 conmon[87022]: cluster 2023-11-30T23:08:48.641679+0000 mgr.smithi038.ldalxq (mgr.14182) 652 : cluster [DBG] pgmap v440: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2023-11-30T23:08:50.515 INFO:teuthology.orchestra.run.smithi038.stdout: 2023-11-30T23:08:50.515 INFO:teuthology.orchestra.run.smithi038.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2023-11-30T22:54:47.122758Z", "last_refresh": "2023-11-30T23:04:43.743252Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2023-11-30T22:54:42.674972Z", "last_refresh": "2023-11-30T23:04:39.558186Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2023-11-30T22:54:45.114633Z", "last_refresh": "2023-11-30T23:04:43.743389Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2023-11-30T23:02:07.111634Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi167.buykdj on smithi167: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi167-buykdj\n/bin/podman: stderr Error: error inspecting object: no such container ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi167-buykdj\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi167.buykdj\n/bin/podman: stderr Error: error inspecting object: no such container ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi167.buykdj\nDeploy daemon haproxy.nfs.foo.smithi167.buykdj ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi167 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2023-11-30T22:59:44Z\" level=warning msg=\"failed, retrying in 1s ... (1/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-11-30T23:00:21Z\" level=warning msg=\"failed, retrying in 1s ... (2/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-11-30T23:00:59Z\" level=warning msg=\"failed, retrying in 1s ... (3/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: Error determining manifest MIME type for docker://haproxy:2.3: Error reading manifest sha256:058f434330f13dbbc46761f3e9a76af2408e9ec1898c9ac5a8baf00b42e756a9 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi167 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-11-30T23:04:36.497929Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi038.fwcakz on smithi038: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi038-fwcakz\n/bin/podman: stderr Error: error inspecting object: no such container ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi038-fwcakz\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi038.fwcakz\n/bin/podman: stderr Error: error inspecting object: no such container ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi038.fwcakz\nDeploy daemon haproxy.nfs.foo.smithi038.fwcakz ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi038 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2023-11-30T23:02:44Z\" level=warning msg=\"failed, retrying in 1s ... (1/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-11-30T23:03:21Z\" level=warning msg=\"failed, retrying in 1s ... (2/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-11-30T23:03:58Z\" level=warning msg=\"failed, retrying in 1s ... (3/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi038 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-11-30T23:04:36.502614Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi038.flofui on smithi038: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2023-11-30T23:04:36.503792Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi167.dxieha on smithi167: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2023-11-30T23:07:14.865206Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi167.igxkgw on smithi167: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi167-igxkgw\n/bin/podman: stderr Error: error inspecting object: no such container ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi167-igxkgw\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi167.igxkgw\n/bin/podman: stderr Error: error inspecting object: no such container ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi167.igxkgw\nDeploy daemon haproxy.nfs.foo.smithi167.igxkgw ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi167 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2023-11-30T23:05:21Z\" level=warning msg=\"failed, retrying in 1s ... (1/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-11-30T23:05:59Z\" level=warning msg=\"failed, retrying in 1s ... (2/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-11-30T23:06:37Z\" level=warning msg=\"failed, retrying in 1s ... (3/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi167 -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": 9049, "virtual_ip": "10.0.31.38/16"}, "status": {"created": "2023-11-30T22:58:56.312786Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.38/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2023-11-30T22:54:41.668043Z", "last_refresh": "2023-11-30T23:04:39.558331Z", "running": 2, "size": 2}}, {"events": ["2023-11-30T22:55:50.759225Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi038:172.21.15.38=smithi038", "smithi167:172.21.15.167=smithi167"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2023-11-30T22:55:50.756456Z", "last_refresh": "2023-11-30T23:04:39.558407Z", "running": 2, "size": 2}}, {"events": ["2023-11-30T22:58:56.311581Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2023-11-30T22:58:56.308071Z", "last_refresh": "2023-11-30T23:04:43.743907Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2023-11-30T22:54:46.136630Z", "last_refresh": "2023-11-30T23:04:39.558478Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2023-11-30T22:56:33.258058Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2023-11-30T22:56:33.253117Z", "last_refresh": "2023-11-30T23:04:39.558544Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2023-11-30T22:54:43.949497Z", "last_refresh": "2023-11-30T23:04:43.743520Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2023-11-30T22:58:52.105721Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2023-11-30T22:58:59.793467Z", "last_refresh": "2023-11-30T23:04:39.558809Z", "ports": [8800], "running": 2, "size": 2}}] 2023-11-30T23:08:50.934 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2023-11-30T23:08:51.936 DEBUG:teuthology.orchestra.run.smithi038:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:0dc074ce0b0b3b4f393f56dd32ef36884ebf45a9 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 3faf8b00-8fd3-11ee-95a2-87774f69a715 -- ceph orch ls -f json 2023-11-30T23:08:51.967 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:08:51 smithi038 conmon[81956]: audit 2023-11-30T23:08:50.510991+0000 mgr.smithi038.ldalxq (mgr.14182) 653 : audit [DBG] from='client.15314 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-11-30T23:08:51.967 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:08:51 smithi038 conmon[81956]: cluster 2023-11-30T23:08:50.642533+0000 mgr.smithi038.ldalxq (mgr.14182) 654 : cluster [DBG] pgmap v441: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2023-11-30T23:08:52.011 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:08:51 smithi167 conmon[87022]: audit 2023-11-30T23:08:50.510991+0000 mgr.smithi038.ldalxq (mgr.14182) 653 : audit [DBG] from='client.15314 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-11-30T23:08:52.012 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:08:51 smithi167 conmon[87022]: 2023-11-30T23:08:52.012 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:08:51 smithi167 conmon[87022]: cluster 2023-11-30T23:08:50.642533+0000 mgr.smithi038.ldalxq (mgr.14182) 654 : cluster [DBG] pgmap v441: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2023-11-30T23:08:53.024 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:08:52 smithi038 conmon[81956]: cluster 2023-11-30T23:08:52.643031+0000 mgr.smithi038.ldalxq 2023-11-30T23:08:53.024 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:08:52 smithi038 conmon[81956]: (mgr.14182) 655 : cluster [DBG] pgmap v442: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2023-11-30T23:08:53.261 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:08:52 smithi167 conmon[87022]: cluster 2023-11-30T23:08:52.643031+0000 mgr.smithi038.ldalxq (mgr.14182) 655 : cluster [DBG] pgmap v442: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2023-11-30T23:08:53.697 INFO:teuthology.orchestra.run.smithi038.stdout: 2023-11-30T23:08:53.697 INFO:teuthology.orchestra.run.smithi038.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2023-11-30T22:54:47.122758Z", "last_refresh": "2023-11-30T23:04:43.743252Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2023-11-30T22:54:42.674972Z", "last_refresh": "2023-11-30T23:04:39.558186Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2023-11-30T22:54:45.114633Z", "last_refresh": "2023-11-30T23:04:43.743389Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2023-11-30T23:02:07.111634Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi167.buykdj on smithi167: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi167-buykdj\n/bin/podman: stderr Error: error inspecting object: no such container ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi167-buykdj\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi167.buykdj\n/bin/podman: stderr Error: error inspecting object: no such container ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi167.buykdj\nDeploy daemon haproxy.nfs.foo.smithi167.buykdj ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi167 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2023-11-30T22:59:44Z\" level=warning msg=\"failed, retrying in 1s ... (1/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-11-30T23:00:21Z\" level=warning msg=\"failed, retrying in 1s ... (2/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-11-30T23:00:59Z\" level=warning msg=\"failed, retrying in 1s ... (3/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: Error determining manifest MIME type for docker://haproxy:2.3: Error reading manifest sha256:058f434330f13dbbc46761f3e9a76af2408e9ec1898c9ac5a8baf00b42e756a9 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi167 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-11-30T23:04:36.497929Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi038.fwcakz on smithi038: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi038-fwcakz\n/bin/podman: stderr Error: error inspecting object: no such container ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi038-fwcakz\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi038.fwcakz\n/bin/podman: stderr Error: error inspecting object: no such container ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi038.fwcakz\nDeploy daemon haproxy.nfs.foo.smithi038.fwcakz ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi038 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2023-11-30T23:02:44Z\" level=warning msg=\"failed, retrying in 1s ... (1/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-11-30T23:03:21Z\" level=warning msg=\"failed, retrying in 1s ... (2/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-11-30T23:03:58Z\" level=warning msg=\"failed, retrying in 1s ... (3/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi038 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-11-30T23:04:36.502614Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi038.flofui on smithi038: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2023-11-30T23:04:36.503792Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi167.dxieha on smithi167: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2023-11-30T23:07:14.865206Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi167.igxkgw on smithi167: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi167-igxkgw\n/bin/podman: stderr Error: error inspecting object: no such container ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi167-igxkgw\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi167.igxkgw\n/bin/podman: stderr Error: error inspecting object: no such container ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi167.igxkgw\nDeploy daemon haproxy.nfs.foo.smithi167.igxkgw ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi167 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2023-11-30T23:05:21Z\" level=warning msg=\"failed, retrying in 1s ... (1/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-11-30T23:05:59Z\" level=warning msg=\"failed, retrying in 1s ... (2/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-11-30T23:06:37Z\" level=warning msg=\"failed, retrying in 1s ... (3/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi167 -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": 9049, "virtual_ip": "10.0.31.38/16"}, "status": {"created": "2023-11-30T22:58:56.312786Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.38/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2023-11-30T22:54:41.668043Z", "last_refresh": "2023-11-30T23:04:39.558331Z", "running": 2, "size": 2}}, {"events": ["2023-11-30T22:55:50.759225Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi038:172.21.15.38=smithi038", "smithi167:172.21.15.167=smithi167"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2023-11-30T22:55:50.756456Z", "last_refresh": "2023-11-30T23:04:39.558407Z", "running": 2, "size": 2}}, {"events": ["2023-11-30T22:58:56.311581Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2023-11-30T22:58:56.308071Z", "last_refresh": "2023-11-30T23:04:43.743907Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2023-11-30T22:54:46.136630Z", "last_refresh": "2023-11-30T23:04:39.558478Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2023-11-30T22:56:33.258058Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2023-11-30T22:56:33.253117Z", "last_refresh": "2023-11-30T23:04:39.558544Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2023-11-30T22:54:43.949497Z", "last_refresh": "2023-11-30T23:04:43.743520Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2023-11-30T22:58:52.105721Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2023-11-30T22:58:59.793467Z", "last_refresh": "2023-11-30T23:04:39.558809Z", "ports": [8800], "running": 2, "size": 2}}] 2023-11-30T23:08:54.025 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:08:53 smithi038 conmon[81956]: audit 2023-11-30T23:08:53.692921+0000 mgr.smithi038.ldalxq (mgr.14182) 656 : audit [DBG] from='client.15318 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-11-30T23:08:54.098 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2023-11-30T23:08:54.262 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:08:53 smithi167 conmon[87022]: audit 2023-11-30T23:08:53.692921+0000 mgr.smithi038.ldalxq (mgr.14182) 656 : audit [DBG] 2023-11-30T23:08:54.262 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:08:53 smithi167 conmon[87022]: from='client.15318 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-11-30T23:08:55.101 DEBUG:teuthology.orchestra.run.smithi038:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:0dc074ce0b0b3b4f393f56dd32ef36884ebf45a9 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 3faf8b00-8fd3-11ee-95a2-87774f69a715 -- ceph orch ls -f json 2023-11-30T23:08:55.134 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:08:54 smithi038 conmon[81956]: cluster 2023-11-30T23:08:54.643927+0000 mgr.smithi038.ldalxq (mgr.14182) 657 2023-11-30T23:08:55.135 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:08:54 smithi038 conmon[81956]: : cluster [DBG] pgmap v443: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2023-11-30T23:08:55.262 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:08:54 smithi167 conmon[87022]: cluster 2023-11-30T23:08:54.643927+0000 mgr.smithi038.ldalxq (mgr.14182) 657 : cluster [DBG] pgmap v443: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2023-11-30T23:08:56.876 INFO:teuthology.orchestra.run.smithi038.stdout: 2023-11-30T23:08:56.876 INFO:teuthology.orchestra.run.smithi038.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2023-11-30T22:54:47.122758Z", "last_refresh": "2023-11-30T23:04:43.743252Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2023-11-30T22:54:42.674972Z", "last_refresh": "2023-11-30T23:04:39.558186Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2023-11-30T22:54:45.114633Z", "last_refresh": "2023-11-30T23:04:43.743389Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2023-11-30T23:02:07.111634Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi167.buykdj on smithi167: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi167-buykdj\n/bin/podman: stderr Error: error inspecting object: no such container ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi167-buykdj\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi167.buykdj\n/bin/podman: stderr Error: error inspecting object: no such container ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi167.buykdj\nDeploy daemon haproxy.nfs.foo.smithi167.buykdj ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi167 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2023-11-30T22:59:44Z\" level=warning msg=\"failed, retrying in 1s ... (1/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-11-30T23:00:21Z\" level=warning msg=\"failed, retrying in 1s ... (2/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-11-30T23:00:59Z\" level=warning msg=\"failed, retrying in 1s ... (3/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: Error determining manifest MIME type for docker://haproxy:2.3: Error reading manifest sha256:058f434330f13dbbc46761f3e9a76af2408e9ec1898c9ac5a8baf00b42e756a9 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi167 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-11-30T23:04:36.497929Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi038.fwcakz on smithi038: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi038-fwcakz\n/bin/podman: stderr Error: error inspecting object: no such container ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi038-fwcakz\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi038.fwcakz\n/bin/podman: stderr Error: error inspecting object: no such container ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi038.fwcakz\nDeploy daemon haproxy.nfs.foo.smithi038.fwcakz ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi038 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2023-11-30T23:02:44Z\" level=warning msg=\"failed, retrying in 1s ... (1/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-11-30T23:03:21Z\" level=warning msg=\"failed, retrying in 1s ... (2/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-11-30T23:03:58Z\" level=warning msg=\"failed, retrying in 1s ... (3/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi038 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-11-30T23:04:36.502614Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi038.flofui on smithi038: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2023-11-30T23:04:36.503792Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi167.dxieha on smithi167: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2023-11-30T23:07:14.865206Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi167.igxkgw on smithi167: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi167-igxkgw\n/bin/podman: stderr Error: error inspecting object: no such container ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi167-igxkgw\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi167.igxkgw\n/bin/podman: stderr Error: error inspecting object: no such container ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi167.igxkgw\nDeploy daemon haproxy.nfs.foo.smithi167.igxkgw ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi167 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2023-11-30T23:05:21Z\" level=warning msg=\"failed, retrying in 1s ... (1/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-11-30T23:05:59Z\" level=warning msg=\"failed, retrying in 1s ... (2/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-11-30T23:06:37Z\" level=warning msg=\"failed, retrying in 1s ... (3/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi167 -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": 9049, "virtual_ip": "10.0.31.38/16"}, "status": {"created": "2023-11-30T22:58:56.312786Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.38/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2023-11-30T22:54:41.668043Z", "last_refresh": "2023-11-30T23:04:39.558331Z", "running": 2, "size": 2}}, {"events": ["2023-11-30T22:55:50.759225Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi038:172.21.15.38=smithi038", "smithi167:172.21.15.167=smithi167"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2023-11-30T22:55:50.756456Z", "last_refresh": "2023-11-30T23:04:39.558407Z", "running": 2, "size": 2}}, {"events": ["2023-11-30T22:58:56.311581Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2023-11-30T22:58:56.308071Z", "last_refresh": "2023-11-30T23:04:43.743907Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2023-11-30T22:54:46.136630Z", "last_refresh": "2023-11-30T23:04:39.558478Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2023-11-30T22:56:33.258058Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2023-11-30T22:56:33.253117Z", "last_refresh": "2023-11-30T23:04:39.558544Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2023-11-30T22:54:43.949497Z", "last_refresh": "2023-11-30T23:04:43.743520Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2023-11-30T22:58:52.105721Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2023-11-30T22:58:59.793467Z", "last_refresh": "2023-11-30T23:04:39.558809Z", "ports": [8800], "running": 2, "size": 2}}] 2023-11-30T23:08:57.012 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:08:56 smithi167 conmon[87022]: cluster 2023-11-30T23:08:56.644609+0000 mgr.smithi038.ldalxq (mgr.14182) 658 : cluster [DBG] pgmap v444: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2023-11-30T23:08:57.024 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:08:56 smithi038 conmon[81956]: cluster 2023-11-30T23:08:56.644609+0000 mgr.smithi038.ldalxq (mgr.14182) 658 : cluster [DBG] pgmap v444: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2023-11-30T23:08:57.252 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2023-11-30T23:08:58.024 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:08:57 smithi038 conmon[81956]: audit 2023-11-30T23:08:56.871807+0000 2023-11-30T23:08:58.024 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:08:57 smithi038 conmon[81956]: mgr.smithi038.ldalxq (mgr.14182) 659 : audit [DBG] from='client.24779 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-11-30T23:08:58.254 DEBUG:teuthology.orchestra.run.smithi038:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:0dc074ce0b0b3b4f393f56dd32ef36884ebf45a9 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 3faf8b00-8fd3-11ee-95a2-87774f69a715 -- ceph orch ls -f json 2023-11-30T23:08:58.262 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:08:57 smithi167 conmon[87022]: audit 2023-11-30T23:08:56.871807+0000 mgr.smithi038.ldalxq (mgr.14182) 659 : audit [DBG] from='client.24779 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-11-30T23:08:59.024 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:08:58 smithi038 conmon[81956]: cluster 2023-11-30T23:08:58 2023-11-30T23:08:59.024 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:08:58 smithi038 conmon[81956]: .645076+0000 mgr.smithi038.ldalxq (mgr.14182) 660 : cluster [DBG] pgmap v445: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2023-11-30T23:08:59.262 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:08:58 smithi167 conmon[87022]: cluster 2023-11-30T23:08:58.645076+0000 mgr.smithi038.ldalxq (mgr.14182) 660 : cluster [DBG] pgmap v445: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2023-11-30T23:09:00.036 INFO:teuthology.orchestra.run.smithi038.stdout: 2023-11-30T23:09:00.036 INFO:teuthology.orchestra.run.smithi038.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2023-11-30T22:54:47.122758Z", "last_refresh": "2023-11-30T23:04:43.743252Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2023-11-30T22:54:42.674972Z", "last_refresh": "2023-11-30T23:04:39.558186Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2023-11-30T22:54:45.114633Z", "last_refresh": "2023-11-30T23:04:43.743389Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2023-11-30T23:02:07.111634Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi167.buykdj on smithi167: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi167-buykdj\n/bin/podman: stderr Error: error inspecting object: no such container ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi167-buykdj\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi167.buykdj\n/bin/podman: stderr Error: error inspecting object: no such container ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi167.buykdj\nDeploy daemon haproxy.nfs.foo.smithi167.buykdj ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi167 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2023-11-30T22:59:44Z\" level=warning msg=\"failed, retrying in 1s ... (1/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-11-30T23:00:21Z\" level=warning msg=\"failed, retrying in 1s ... (2/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-11-30T23:00:59Z\" level=warning msg=\"failed, retrying in 1s ... (3/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: Error determining manifest MIME type for docker://haproxy:2.3: Error reading manifest sha256:058f434330f13dbbc46761f3e9a76af2408e9ec1898c9ac5a8baf00b42e756a9 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi167 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-11-30T23:04:36.497929Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi038.fwcakz on smithi038: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi038-fwcakz\n/bin/podman: stderr Error: error inspecting object: no such container ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi038-fwcakz\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi038.fwcakz\n/bin/podman: stderr Error: error inspecting object: no such container ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi038.fwcakz\nDeploy daemon haproxy.nfs.foo.smithi038.fwcakz ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi038 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2023-11-30T23:02:44Z\" level=warning msg=\"failed, retrying in 1s ... (1/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-11-30T23:03:21Z\" level=warning msg=\"failed, retrying in 1s ... (2/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-11-30T23:03:58Z\" level=warning msg=\"failed, retrying in 1s ... (3/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi038 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-11-30T23:04:36.502614Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi038.flofui on smithi038: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2023-11-30T23:04:36.503792Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi167.dxieha on smithi167: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2023-11-30T23:07:14.865206Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi167.igxkgw on smithi167: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi167-igxkgw\n/bin/podman: stderr Error: error inspecting object: no such container ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi167-igxkgw\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi167.igxkgw\n/bin/podman: stderr Error: error inspecting object: no such container ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi167.igxkgw\nDeploy daemon haproxy.nfs.foo.smithi167.igxkgw ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi167 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2023-11-30T23:05:21Z\" level=warning msg=\"failed, retrying in 1s ... (1/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-11-30T23:05:59Z\" level=warning msg=\"failed, retrying in 1s ... (2/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-11-30T23:06:37Z\" level=warning msg=\"failed, retrying in 1s ... (3/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi167 -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": 9049, "virtual_ip": "10.0.31.38/16"}, "status": {"created": "2023-11-30T22:58:56.312786Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.38/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2023-11-30T22:54:41.668043Z", "last_refresh": "2023-11-30T23:04:39.558331Z", "running": 2, "size": 2}}, {"events": ["2023-11-30T22:55:50.759225Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi038:172.21.15.38=smithi038", "smithi167:172.21.15.167=smithi167"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2023-11-30T22:55:50.756456Z", "last_refresh": "2023-11-30T23:04:39.558407Z", "running": 2, "size": 2}}, {"events": ["2023-11-30T22:58:56.311581Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2023-11-30T22:58:56.308071Z", "last_refresh": "2023-11-30T23:04:43.743907Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2023-11-30T22:54:46.136630Z", "last_refresh": "2023-11-30T23:04:39.558478Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2023-11-30T22:56:33.258058Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2023-11-30T22:56:33.253117Z", "last_refresh": "2023-11-30T23:04:39.558544Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2023-11-30T22:54:43.949497Z", "last_refresh": "2023-11-30T23:04:43.743520Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2023-11-30T22:58:52.105721Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2023-11-30T22:58:59.793467Z", "last_refresh": "2023-11-30T23:04:39.558809Z", "ports": [8800], "running": 2, "size": 2}}] 2023-11-30T23:09:00.513 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2023-11-30T23:09:01.012 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:09:00 smithi167 conmon[87022]: audit 2023-11-30T23:09:00.032458+0000 mgr.smithi038.ldalxq (mgr.14182) 661 : audit [DBG] from='client.15324 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-11-30T23:09:01.012 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:09:00 smithi167 conmon[87022]: cluster 2023-11-30T23:09:00.645825+0000 mgr.smithi038.ldalxq (mgr.14182) 662 : cluster [DBG] pgmap v446: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2023-11-30T23:09:01.024 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:09:00 smithi038 conmon[81956]: audit 2023-11-30T23:09:00.032458 2023-11-30T23:09:01.024 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:09:00 smithi038 conmon[81956]: +0000 mgr.smithi038.ldalxq (mgr.14182) 661 : audit [DBG] from='client.15324 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-11-30T23:09:01.024 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:09:00 smithi038 conmon[81956]: cluster 2023-11-30T23:09:00.645825+0000 mgr.smithi038.ldalxq (mgr.14182) 662 : cluster [DBG] pgmap v446: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2023-11-30T23:09:01.516 DEBUG:teuthology.orchestra.run.smithi038:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:0dc074ce0b0b3b4f393f56dd32ef36884ebf45a9 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 3faf8b00-8fd3-11ee-95a2-87774f69a715 -- ceph orch ls -f json 2023-11-30T23:09:03.024 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:09:02 smithi038 conmon[81956]: cluster 2023-11-30T23:09:02.646378+0000 mgr.smithi038.ldalxq (mgr.14182) 663 : cluster [DBG] pgmap v447: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2023-11-30T23:09:03.262 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:09:02 smithi167 conmon[87022]: cluster 2023-11-30T23:09:02.646378+0000 mgr.smithi038.ldalxq (mgr.14182) 663 : cluster [DBG] pgmap v447: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2023-11-30T23:09:03.342 INFO:teuthology.orchestra.run.smithi038.stdout: 2023-11-30T23:09:03.342 INFO:teuthology.orchestra.run.smithi038.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2023-11-30T22:54:47.122758Z", "last_refresh": "2023-11-30T23:04:43.743252Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2023-11-30T22:54:42.674972Z", "last_refresh": "2023-11-30T23:04:39.558186Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2023-11-30T22:54:45.114633Z", "last_refresh": "2023-11-30T23:04:43.743389Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2023-11-30T23:02:07.111634Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi167.buykdj on smithi167: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi167-buykdj\n/bin/podman: stderr Error: error inspecting object: no such container ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi167-buykdj\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi167.buykdj\n/bin/podman: stderr Error: error inspecting object: no such container ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi167.buykdj\nDeploy daemon haproxy.nfs.foo.smithi167.buykdj ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi167 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2023-11-30T22:59:44Z\" level=warning msg=\"failed, retrying in 1s ... (1/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-11-30T23:00:21Z\" level=warning msg=\"failed, retrying in 1s ... (2/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-11-30T23:00:59Z\" level=warning msg=\"failed, retrying in 1s ... (3/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: Error determining manifest MIME type for docker://haproxy:2.3: Error reading manifest sha256:058f434330f13dbbc46761f3e9a76af2408e9ec1898c9ac5a8baf00b42e756a9 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi167 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-11-30T23:04:36.497929Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi038.fwcakz on smithi038: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi038-fwcakz\n/bin/podman: stderr Error: error inspecting object: no such container ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi038-fwcakz\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi038.fwcakz\n/bin/podman: stderr Error: error inspecting object: no such container ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi038.fwcakz\nDeploy daemon haproxy.nfs.foo.smithi038.fwcakz ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi038 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2023-11-30T23:02:44Z\" level=warning msg=\"failed, retrying in 1s ... (1/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-11-30T23:03:21Z\" level=warning msg=\"failed, retrying in 1s ... (2/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-11-30T23:03:58Z\" level=warning msg=\"failed, retrying in 1s ... (3/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi038 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-11-30T23:04:36.502614Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi038.flofui on smithi038: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2023-11-30T23:04:36.503792Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi167.dxieha on smithi167: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2023-11-30T23:07:14.865206Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi167.igxkgw on smithi167: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi167-igxkgw\n/bin/podman: stderr Error: error inspecting object: no such container ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi167-igxkgw\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi167.igxkgw\n/bin/podman: stderr Error: error inspecting object: no such container ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi167.igxkgw\nDeploy daemon haproxy.nfs.foo.smithi167.igxkgw ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi167 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2023-11-30T23:05:21Z\" level=warning msg=\"failed, retrying in 1s ... (1/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-11-30T23:05:59Z\" level=warning msg=\"failed, retrying in 1s ... (2/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-11-30T23:06:37Z\" level=warning msg=\"failed, retrying in 1s ... (3/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi167 -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": 9049, "virtual_ip": "10.0.31.38/16"}, "status": {"created": "2023-11-30T22:58:56.312786Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.38/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2023-11-30T22:54:41.668043Z", "last_refresh": "2023-11-30T23:04:39.558331Z", "running": 2, "size": 2}}, {"events": ["2023-11-30T22:55:50.759225Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi038:172.21.15.38=smithi038", "smithi167:172.21.15.167=smithi167"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2023-11-30T22:55:50.756456Z", "last_refresh": "2023-11-30T23:04:39.558407Z", "running": 2, "size": 2}}, {"events": ["2023-11-30T22:58:56.311581Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2023-11-30T22:58:56.308071Z", "last_refresh": "2023-11-30T23:04:43.743907Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2023-11-30T22:54:46.136630Z", "last_refresh": "2023-11-30T23:04:39.558478Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2023-11-30T22:56:33.258058Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2023-11-30T22:56:33.253117Z", "last_refresh": "2023-11-30T23:04:39.558544Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2023-11-30T22:54:43.949497Z", "last_refresh": "2023-11-30T23:04:43.743520Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2023-11-30T22:58:52.105721Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2023-11-30T22:58:59.793467Z", "last_refresh": "2023-11-30T23:04:39.558809Z", "ports": [8800], "running": 2, "size": 2}}] 2023-11-30T23:09:03.767 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2023-11-30T23:09:04.023 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:09:03 smithi038 conmon[81956]: audit 2023-11-30T23: 2023-11-30T23:09:04.024 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:09:03 smithi038 conmon[81956]: 09:03.338283+0000 mgr.smithi038.ldalxq (mgr.14182) 664 : audit [DBG] from='client.15328 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-11-30T23:09:04.265 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:09:03 smithi167 conmon[87022]: audit 2023-11-30T23:09:03.338283+0000 mgr.smithi038.ldalxq (mgr.14182) 664 : audit [DBG] from='client.15328 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-11-30T23:09:04.768 DEBUG:teuthology.orchestra.run.smithi038:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:0dc074ce0b0b3b4f393f56dd32ef36884ebf45a9 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 3faf8b00-8fd3-11ee-95a2-87774f69a715 -- ceph orch ls -f json 2023-11-30T23:09:05.262 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:09:04 smithi167 conmon[87022]: cluster 2023-11-30T23:09:04.647186+0000 mgr.smithi038.ldalxq (mgr.14182) 665 : cluster [DBG] pgmap v448: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2023-11-30T23:09:05.274 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:09:04 smithi038 conmon[81956]: cluster 2023-11-30T23:09:04.647186+0000 mgr.smithi038.ldalxq (mgr.14182) 665 : cluster 2023-11-30T23:09:05.274 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:09:04 smithi038 conmon[81956]: [DBG] pgmap v448: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2023-11-30T23:09:06.480 INFO:teuthology.orchestra.run.smithi038.stdout: 2023-11-30T23:09:06.480 INFO:teuthology.orchestra.run.smithi038.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2023-11-30T22:54:47.122758Z", "last_refresh": "2023-11-30T23:04:43.743252Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2023-11-30T22:54:42.674972Z", "last_refresh": "2023-11-30T23:04:39.558186Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2023-11-30T22:54:45.114633Z", "last_refresh": "2023-11-30T23:04:43.743389Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2023-11-30T23:02:07.111634Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi167.buykdj on smithi167: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi167-buykdj\n/bin/podman: stderr Error: error inspecting object: no such container ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi167-buykdj\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi167.buykdj\n/bin/podman: stderr Error: error inspecting object: no such container ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi167.buykdj\nDeploy daemon haproxy.nfs.foo.smithi167.buykdj ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi167 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2023-11-30T22:59:44Z\" level=warning msg=\"failed, retrying in 1s ... (1/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-11-30T23:00:21Z\" level=warning msg=\"failed, retrying in 1s ... (2/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-11-30T23:00:59Z\" level=warning msg=\"failed, retrying in 1s ... (3/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: Error determining manifest MIME type for docker://haproxy:2.3: Error reading manifest sha256:058f434330f13dbbc46761f3e9a76af2408e9ec1898c9ac5a8baf00b42e756a9 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi167 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-11-30T23:04:36.497929Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi038.fwcakz on smithi038: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi038-fwcakz\n/bin/podman: stderr Error: error inspecting object: no such container ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi038-fwcakz\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi038.fwcakz\n/bin/podman: stderr Error: error inspecting object: no such container ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi038.fwcakz\nDeploy daemon haproxy.nfs.foo.smithi038.fwcakz ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi038 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2023-11-30T23:02:44Z\" level=warning msg=\"failed, retrying in 1s ... (1/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-11-30T23:03:21Z\" level=warning msg=\"failed, retrying in 1s ... (2/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-11-30T23:03:58Z\" level=warning msg=\"failed, retrying in 1s ... (3/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi038 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-11-30T23:04:36.502614Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi038.flofui on smithi038: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2023-11-30T23:04:36.503792Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi167.dxieha on smithi167: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2023-11-30T23:07:14.865206Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi167.igxkgw on smithi167: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi167-igxkgw\n/bin/podman: stderr Error: error inspecting object: no such container ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi167-igxkgw\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi167.igxkgw\n/bin/podman: stderr Error: error inspecting object: no such container ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi167.igxkgw\nDeploy daemon haproxy.nfs.foo.smithi167.igxkgw ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi167 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2023-11-30T23:05:21Z\" level=warning msg=\"failed, retrying in 1s ... (1/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-11-30T23:05:59Z\" level=warning msg=\"failed, retrying in 1s ... (2/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-11-30T23:06:37Z\" level=warning msg=\"failed, retrying in 1s ... (3/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi167 -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": 9049, "virtual_ip": "10.0.31.38/16"}, "status": {"created": "2023-11-30T22:58:56.312786Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.38/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2023-11-30T22:54:41.668043Z", "last_refresh": "2023-11-30T23:04:39.558331Z", "running": 2, "size": 2}}, {"events": ["2023-11-30T22:55:50.759225Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi038:172.21.15.38=smithi038", "smithi167:172.21.15.167=smithi167"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2023-11-30T22:55:50.756456Z", "last_refresh": "2023-11-30T23:04:39.558407Z", "running": 2, "size": 2}}, {"events": ["2023-11-30T22:58:56.311581Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2023-11-30T22:58:56.308071Z", "last_refresh": "2023-11-30T23:04:43.743907Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2023-11-30T22:54:46.136630Z", "last_refresh": "2023-11-30T23:04:39.558478Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2023-11-30T22:56:33.258058Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2023-11-30T22:56:33.253117Z", "last_refresh": "2023-11-30T23:04:39.558544Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2023-11-30T22:54:43.949497Z", "last_refresh": "2023-11-30T23:04:43.743520Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2023-11-30T22:58:52.105721Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2023-11-30T22:58:59.793467Z", "last_refresh": "2023-11-30T23:04:39.558809Z", "ports": [8800], "running": 2, "size": 2}}] 2023-11-30T23:09:06.775 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:09:06 smithi038 conmon[81956]: audit 2023-11-30T23:09:06.475321+0000 mgr.smithi038.ldalxq (mgr.14182) 666 : audit [DBG] from='client.15332 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-11-30T23:09:06.776 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:09:06 smithi038 conmon[81956]: cluster 2023-11-30T23:09:06.647856+0000 mgr.smithi038.ldalxq (mgr.14182) 667 : cluster [DBG] pgmap v449: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2023-11-30T23:09:07.012 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:09:06 smithi167 conmon[87022]: audit 2023-11-30T23:09:06.475321+0000 mgr.smithi038.ldalxq (mgr.14182) 666 : audit [DBG] from='client.15332 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-11-30T23:09:07.012 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:09:06 smithi167 conmon[87022]: cluster 2023-11-30T23:09:06.647856+0000 mgr.smithi038.ldalxq (mgr.14182) 667 : cluster [DBG] pgmap v449: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2023-11-30T23:09:07.022 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2023-11-30T23:09:08.023 DEBUG:teuthology.orchestra.run.smithi038:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:0dc074ce0b0b3b4f393f56dd32ef36884ebf45a9 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 3faf8b00-8fd3-11ee-95a2-87774f69a715 -- ceph orch ls -f json 2023-11-30T23:09:08.881 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:09:08 smithi038 conmon[81956]: cluster 2023-11-30T23:09:08.648492+0000 mgr.smithi038.ldalxq (mgr.14182) 668 : cluster [DBG] pgmap v450: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2023-11-30T23:09:09.012 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:09:08 smithi167 conmon[87022]: cluster 2023-11-30T23:09:08.648492+0000 mgr.smithi038.ldalxq (mgr.14182) 668 : cluster [DBG] pgmap v450: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2023-11-30T23:09:09.731 INFO:teuthology.orchestra.run.smithi038.stdout: 2023-11-30T23:09:09.731 INFO:teuthology.orchestra.run.smithi038.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2023-11-30T22:54:47.122758Z", "last_refresh": "2023-11-30T23:04:43.743252Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2023-11-30T22:54:42.674972Z", "last_refresh": "2023-11-30T23:04:39.558186Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2023-11-30T22:54:45.114633Z", "last_refresh": "2023-11-30T23:04:43.743389Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2023-11-30T23:02:07.111634Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi167.buykdj on smithi167: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi167-buykdj\n/bin/podman: stderr Error: error inspecting object: no such container ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi167-buykdj\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi167.buykdj\n/bin/podman: stderr Error: error inspecting object: no such container ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi167.buykdj\nDeploy daemon haproxy.nfs.foo.smithi167.buykdj ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi167 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2023-11-30T22:59:44Z\" level=warning msg=\"failed, retrying in 1s ... (1/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-11-30T23:00:21Z\" level=warning msg=\"failed, retrying in 1s ... (2/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-11-30T23:00:59Z\" level=warning msg=\"failed, retrying in 1s ... (3/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: Error determining manifest MIME type for docker://haproxy:2.3: Error reading manifest sha256:058f434330f13dbbc46761f3e9a76af2408e9ec1898c9ac5a8baf00b42e756a9 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi167 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-11-30T23:04:36.497929Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi038.fwcakz on smithi038: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi038-fwcakz\n/bin/podman: stderr Error: error inspecting object: no such container ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi038-fwcakz\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi038.fwcakz\n/bin/podman: stderr Error: error inspecting object: no such container ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi038.fwcakz\nDeploy daemon haproxy.nfs.foo.smithi038.fwcakz ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi038 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2023-11-30T23:02:44Z\" level=warning msg=\"failed, retrying in 1s ... (1/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-11-30T23:03:21Z\" level=warning msg=\"failed, retrying in 1s ... (2/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-11-30T23:03:58Z\" level=warning msg=\"failed, retrying in 1s ... (3/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi038 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-11-30T23:04:36.502614Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi038.flofui on smithi038: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2023-11-30T23:04:36.503792Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi167.dxieha on smithi167: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2023-11-30T23:07:14.865206Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi167.igxkgw on smithi167: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi167-igxkgw\n/bin/podman: stderr Error: error inspecting object: no such container ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi167-igxkgw\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi167.igxkgw\n/bin/podman: stderr Error: error inspecting object: no such container ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi167.igxkgw\nDeploy daemon haproxy.nfs.foo.smithi167.igxkgw ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi167 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2023-11-30T23:05:21Z\" level=warning msg=\"failed, retrying in 1s ... (1/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-11-30T23:05:59Z\" level=warning msg=\"failed, retrying in 1s ... (2/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-11-30T23:06:37Z\" level=warning msg=\"failed, retrying in 1s ... (3/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi167 -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": 9049, "virtual_ip": "10.0.31.38/16"}, "status": {"created": "2023-11-30T22:58:56.312786Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.38/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2023-11-30T22:54:41.668043Z", "last_refresh": "2023-11-30T23:04:39.558331Z", "running": 2, "size": 2}}, {"events": ["2023-11-30T22:55:50.759225Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi038:172.21.15.38=smithi038", "smithi167:172.21.15.167=smithi167"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2023-11-30T22:55:50.756456Z", "last_refresh": "2023-11-30T23:04:39.558407Z", "running": 2, "size": 2}}, {"events": ["2023-11-30T22:58:56.311581Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2023-11-30T22:58:56.308071Z", "last_refresh": "2023-11-30T23:04:43.743907Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2023-11-30T22:54:46.136630Z", "last_refresh": "2023-11-30T23:04:39.558478Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2023-11-30T22:56:33.258058Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2023-11-30T22:56:33.253117Z", "last_refresh": "2023-11-30T23:04:39.558544Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2023-11-30T22:54:43.949497Z", "last_refresh": "2023-11-30T23:04:43.743520Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2023-11-30T22:58:52.105721Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2023-11-30T22:58:59.793467Z", "last_refresh": "2023-11-30T23:04:39.558809Z", "ports": [8800], "running": 2, "size": 2}}] 2023-11-30T23:09:10.172 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2023-11-30T23:09:11.011 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:09:10 smithi167 conmon[87022]: audit 2023-11-30T23:09:09.727370+0000 mgr.smithi038.ldalxq (mgr.14182) 669 : audit [DBG] from='client.15336 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-11-30T23:09:11.012 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:09:10 smithi167 conmon[87022]: cluster 2023-11-30T23:09:10.649480+0000 mgr.smithi038.ldalxq (mgr.14182) 670 : cluster [DBG] pgmap v451: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2023-11-30T23:09:11.025 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:09:10 smithi038 conmon[81956]: audit 2023-11-30T23:09:09.727370+0000 mgr.smithi038.ldalxq 2023-11-30T23:09:11.026 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:09:10 smithi038 conmon[81956]: (mgr.14182) 669 : audit [DBG] from='client.15336 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-11-30T23:09:11.026 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:09:10 smithi038 conmon[81956]: cluster 2023-11-30T23:09:10.649480+0000 mgr.smithi038.ldalxq (mgr.14182) 670 : cluster [DBG] pgmap v451: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2023-11-30T23:09:11.173 DEBUG:teuthology.orchestra.run.smithi038:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:0dc074ce0b0b3b4f393f56dd32ef36884ebf45a9 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 3faf8b00-8fd3-11ee-95a2-87774f69a715 -- ceph orch ls -f json 2023-11-30T23:09:12.982 INFO:teuthology.orchestra.run.smithi038.stdout: 2023-11-30T23:09:12.983 INFO:teuthology.orchestra.run.smithi038.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2023-11-30T22:54:47.122758Z", "last_refresh": "2023-11-30T23:04:43.743252Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2023-11-30T22:54:42.674972Z", "last_refresh": "2023-11-30T23:04:39.558186Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2023-11-30T22:54:45.114633Z", "last_refresh": "2023-11-30T23:04:43.743389Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2023-11-30T23:02:07.111634Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi167.buykdj on smithi167: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi167-buykdj\n/bin/podman: stderr Error: error inspecting object: no such container ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi167-buykdj\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi167.buykdj\n/bin/podman: stderr Error: error inspecting object: no such container ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi167.buykdj\nDeploy daemon haproxy.nfs.foo.smithi167.buykdj ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi167 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2023-11-30T22:59:44Z\" level=warning msg=\"failed, retrying in 1s ... (1/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-11-30T23:00:21Z\" level=warning msg=\"failed, retrying in 1s ... (2/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-11-30T23:00:59Z\" level=warning msg=\"failed, retrying in 1s ... (3/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: Error determining manifest MIME type for docker://haproxy:2.3: Error reading manifest sha256:058f434330f13dbbc46761f3e9a76af2408e9ec1898c9ac5a8baf00b42e756a9 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi167 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-11-30T23:04:36.497929Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi038.fwcakz on smithi038: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi038-fwcakz\n/bin/podman: stderr Error: error inspecting object: no such container ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi038-fwcakz\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi038.fwcakz\n/bin/podman: stderr Error: error inspecting object: no such container ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi038.fwcakz\nDeploy daemon haproxy.nfs.foo.smithi038.fwcakz ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi038 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2023-11-30T23:02:44Z\" level=warning msg=\"failed, retrying in 1s ... (1/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-11-30T23:03:21Z\" level=warning msg=\"failed, retrying in 1s ... (2/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-11-30T23:03:58Z\" level=warning msg=\"failed, retrying in 1s ... (3/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi038 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-11-30T23:04:36.502614Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi038.flofui on smithi038: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2023-11-30T23:04:36.503792Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi167.dxieha on smithi167: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2023-11-30T23:07:14.865206Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi167.igxkgw on smithi167: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi167-igxkgw\n/bin/podman: stderr Error: error inspecting object: no such container ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi167-igxkgw\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi167.igxkgw\n/bin/podman: stderr Error: error inspecting object: no such container ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi167.igxkgw\nDeploy daemon haproxy.nfs.foo.smithi167.igxkgw ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi167 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2023-11-30T23:05:21Z\" level=warning msg=\"failed, retrying in 1s ... (1/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-11-30T23:05:59Z\" level=warning msg=\"failed, retrying in 1s ... (2/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-11-30T23:06:37Z\" level=warning msg=\"failed, retrying in 1s ... (3/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi167 -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": 9049, "virtual_ip": "10.0.31.38/16"}, "status": {"created": "2023-11-30T22:58:56.312786Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.38/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2023-11-30T22:54:41.668043Z", "last_refresh": "2023-11-30T23:04:39.558331Z", "running": 2, "size": 2}}, {"events": ["2023-11-30T22:55:50.759225Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi038:172.21.15.38=smithi038", "smithi167:172.21.15.167=smithi167"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2023-11-30T22:55:50.756456Z", "last_refresh": "2023-11-30T23:04:39.558407Z", "running": 2, "size": 2}}, {"events": ["2023-11-30T22:58:56.311581Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2023-11-30T22:58:56.308071Z", "last_refresh": "2023-11-30T23:04:43.743907Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2023-11-30T22:54:46.136630Z", "last_refresh": "2023-11-30T23:04:39.558478Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2023-11-30T22:56:33.258058Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2023-11-30T22:56:33.253117Z", "last_refresh": "2023-11-30T23:04:39.558544Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2023-11-30T22:54:43.949497Z", "last_refresh": "2023-11-30T23:04:43.743520Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2023-11-30T22:58:52.105721Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2023-11-30T22:58:59.793467Z", "last_refresh": "2023-11-30T23:04:39.558809Z", "ports": [8800], "running": 2, "size": 2}}] 2023-11-30T23:09:13.007 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:09:12 smithi038 conmon[81956]: cluster 2023-11-30T23:09:12.650094+0000 mgr.smithi038.ldalxq (mgr.14182) 671 : cluster [DBG] pgmap v452: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 6.1 KiB/s rd, 0 B/s wr, 10 op/s 2023-11-30T23:09:13.262 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:09:12 smithi167 conmon[87022]: cluster 2023-11-30T23:09:12.650094+0000 mgr.smithi038.ldalxq (mgr.14182) 671 : cluster [DBG] pgmap v452: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 6.1 KiB/s rd, 0 B/s wr, 10 op/s 2023-11-30T23:09:13.419 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2023-11-30T23:09:14.262 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:09:13 smithi167 conmon[87022]: audit 2023-11-30T23:09:12.978264+0000 mgr.smithi038.ldalxq (mgr.14182) 672 : audit [DBG] from='client.15340 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-11-30T23:09:14.274 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:09:13 smithi038 conmon[81956]: audit 2023-11-30T23:09:12.978264+0000 mgr.smithi038.ldalxq 2023-11-30T23:09:14.274 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:09:13 smithi038 conmon[81956]: (mgr.14182) 672 : audit [DBG] from='client.15340 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-11-30T23:09:14.420 DEBUG:teuthology.orchestra.run.smithi038:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:0dc074ce0b0b3b4f393f56dd32ef36884ebf45a9 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 3faf8b00-8fd3-11ee-95a2-87774f69a715 -- ceph orch ls -f json 2023-11-30T23:09:15.037 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:09:14 smithi038 conmon[81956]: cluster 2023-11-30T23:09:14.650803 2023-11-30T23:09:15.037 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:09:14 smithi038 conmon[81956]: +0000 mgr.smithi038.ldalxq (mgr.14182) 673 : cluster [DBG] pgmap v453: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 23 KiB/s rd, 0 B/s wr, 38 op/s 2023-11-30T23:09:15.262 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:09:14 smithi167 conmon[87022]: cluster 2023-11-30T23:09:14.650803+0000 mgr.smithi038.ldalxq (mgr.14182) 673 : cluster [DBG] pgmap v453: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 23 KiB/s rd, 0 B/s wr, 38 op/s 2023-11-30T23:09:16.158 INFO:teuthology.orchestra.run.smithi038.stdout: 2023-11-30T23:09:16.159 INFO:teuthology.orchestra.run.smithi038.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2023-11-30T22:54:47.122758Z", "last_refresh": "2023-11-30T23:04:43.743252Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2023-11-30T22:54:42.674972Z", "last_refresh": "2023-11-30T23:04:39.558186Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2023-11-30T22:54:45.114633Z", "last_refresh": "2023-11-30T23:04:43.743389Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2023-11-30T23:02:07.111634Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi167.buykdj on smithi167: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi167-buykdj\n/bin/podman: stderr Error: error inspecting object: no such container ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi167-buykdj\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi167.buykdj\n/bin/podman: stderr Error: error inspecting object: no such container ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi167.buykdj\nDeploy daemon haproxy.nfs.foo.smithi167.buykdj ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi167 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2023-11-30T22:59:44Z\" level=warning msg=\"failed, retrying in 1s ... (1/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-11-30T23:00:21Z\" level=warning msg=\"failed, retrying in 1s ... (2/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-11-30T23:00:59Z\" level=warning msg=\"failed, retrying in 1s ... (3/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: Error determining manifest MIME type for docker://haproxy:2.3: Error reading manifest sha256:058f434330f13dbbc46761f3e9a76af2408e9ec1898c9ac5a8baf00b42e756a9 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi167 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-11-30T23:04:36.497929Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi038.fwcakz on smithi038: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi038-fwcakz\n/bin/podman: stderr Error: error inspecting object: no such container ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi038-fwcakz\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi038.fwcakz\n/bin/podman: stderr Error: error inspecting object: no such container ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi038.fwcakz\nDeploy daemon haproxy.nfs.foo.smithi038.fwcakz ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi038 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2023-11-30T23:02:44Z\" level=warning msg=\"failed, retrying in 1s ... (1/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-11-30T23:03:21Z\" level=warning msg=\"failed, retrying in 1s ... (2/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-11-30T23:03:58Z\" level=warning msg=\"failed, retrying in 1s ... (3/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi038 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-11-30T23:04:36.502614Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi038.flofui on smithi038: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2023-11-30T23:04:36.503792Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi167.dxieha on smithi167: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2023-11-30T23:07:14.865206Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi167.igxkgw on smithi167: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi167-igxkgw\n/bin/podman: stderr Error: error inspecting object: no such container ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi167-igxkgw\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi167.igxkgw\n/bin/podman: stderr Error: error inspecting object: no such container ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi167.igxkgw\nDeploy daemon haproxy.nfs.foo.smithi167.igxkgw ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi167 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2023-11-30T23:05:21Z\" level=warning msg=\"failed, retrying in 1s ... (1/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-11-30T23:05:59Z\" level=warning msg=\"failed, retrying in 1s ... (2/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-11-30T23:06:37Z\" level=warning msg=\"failed, retrying in 1s ... (3/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi167 -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": 9049, "virtual_ip": "10.0.31.38/16"}, "status": {"created": "2023-11-30T22:58:56.312786Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.38/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2023-11-30T22:54:41.668043Z", "last_refresh": "2023-11-30T23:04:39.558331Z", "running": 2, "size": 2}}, {"events": ["2023-11-30T22:55:50.759225Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi038:172.21.15.38=smithi038", "smithi167:172.21.15.167=smithi167"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2023-11-30T22:55:50.756456Z", "last_refresh": "2023-11-30T23:04:39.558407Z", "running": 2, "size": 2}}, {"events": ["2023-11-30T22:58:56.311581Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2023-11-30T22:58:56.308071Z", "last_refresh": "2023-11-30T23:04:43.743907Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2023-11-30T22:54:46.136630Z", "last_refresh": "2023-11-30T23:04:39.558478Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2023-11-30T22:56:33.258058Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2023-11-30T22:56:33.253117Z", "last_refresh": "2023-11-30T23:04:39.558544Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2023-11-30T22:54:43.949497Z", "last_refresh": "2023-11-30T23:04:43.743520Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2023-11-30T22:58:52.105721Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2023-11-30T22:58:59.793467Z", "last_refresh": "2023-11-30T23:04:39.558809Z", "ports": [8800], "running": 2, "size": 2}}] 2023-11-30T23:09:16.569 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2023-11-30T23:09:17.012 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:09:16 smithi167 conmon[87022]: audit 2023-11-30T23:09:16.154299+0000 mgr.smithi038.ldalxq (mgr.14182) 674 : audit [DBG] from='client.15344 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-11-30T23:09:17.012 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:09:16 smithi167 conmon[87022]: cluster 2023-11-30T23:09:16.651626+0000 mgr.smithi038.ldalxq (mgr.14182) 675 : cluster [DBG] pgmap v454: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 36 KiB/s rd, 0 B/s wr, 59 op/s 2023-11-30T23:09:17.024 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:09:16 smithi038 conmon[81956]: audit 2023-11-30T23:09:16.154299+0000 mgr.smithi038.ldalxq (mgr.14182) 674 : audit [DBG] from='client.15344 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-11-30T23:09:17.024 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:09:16 smithi038 conmon[81956]: cluster 2023-11-30T23:09:16.651626+0000 mgr.smithi038.ldalxq (mgr.14182) 675 : cluster [DBG] pgmap v454: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 36 KiB/s rd, 0 B/s wr, 59 op/s 2023-11-30T23:09:17.570 DEBUG:teuthology.orchestra.run.smithi038:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:0dc074ce0b0b3b4f393f56dd32ef36884ebf45a9 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 3faf8b00-8fd3-11ee-95a2-87774f69a715 -- ceph orch ls -f json 2023-11-30T23:09:19.011 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:09:18 smithi167 conmon[87022]: cluster 2023-11-30T23:09:18.652297+0000 mgr.smithi038.ldalxq (mgr.14182) 676 : cluster [DBG] pgmap v455: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 36 KiB/s rd, 0 B/s wr, 59 op/s 2023-11-30T23:09:19.024 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:09:18 smithi038 conmon[81956]: cluster 2023-11-30T23:09:18.652297+0000 2023-11-30T23:09:19.024 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:09:18 smithi038 conmon[81956]: mgr.smithi038.ldalxq (mgr.14182) 676 : cluster [DBG] pgmap v455: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 36 KiB/s rd, 0 B/s wr, 59 op/s 2023-11-30T23:09:19.270 INFO:teuthology.orchestra.run.smithi038.stdout: 2023-11-30T23:09:19.270 INFO:teuthology.orchestra.run.smithi038.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2023-11-30T22:54:47.122758Z", "last_refresh": "2023-11-30T23:04:43.743252Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2023-11-30T22:54:42.674972Z", "last_refresh": "2023-11-30T23:04:39.558186Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2023-11-30T22:54:45.114633Z", "last_refresh": "2023-11-30T23:04:43.743389Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2023-11-30T23:02:07.111634Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi167.buykdj on smithi167: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi167-buykdj\n/bin/podman: stderr Error: error inspecting object: no such container ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi167-buykdj\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi167.buykdj\n/bin/podman: stderr Error: error inspecting object: no such container ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi167.buykdj\nDeploy daemon haproxy.nfs.foo.smithi167.buykdj ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi167 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2023-11-30T22:59:44Z\" level=warning msg=\"failed, retrying in 1s ... (1/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-11-30T23:00:21Z\" level=warning msg=\"failed, retrying in 1s ... (2/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-11-30T23:00:59Z\" level=warning msg=\"failed, retrying in 1s ... (3/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: Error determining manifest MIME type for docker://haproxy:2.3: Error reading manifest sha256:058f434330f13dbbc46761f3e9a76af2408e9ec1898c9ac5a8baf00b42e756a9 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi167 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-11-30T23:04:36.497929Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi038.fwcakz on smithi038: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi038-fwcakz\n/bin/podman: stderr Error: error inspecting object: no such container ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi038-fwcakz\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi038.fwcakz\n/bin/podman: stderr Error: error inspecting object: no such container ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi038.fwcakz\nDeploy daemon haproxy.nfs.foo.smithi038.fwcakz ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi038 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2023-11-30T23:02:44Z\" level=warning msg=\"failed, retrying in 1s ... (1/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-11-30T23:03:21Z\" level=warning msg=\"failed, retrying in 1s ... (2/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-11-30T23:03:58Z\" level=warning msg=\"failed, retrying in 1s ... (3/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi038 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-11-30T23:04:36.502614Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi038.flofui on smithi038: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2023-11-30T23:04:36.503792Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi167.dxieha on smithi167: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2023-11-30T23:07:14.865206Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi167.igxkgw on smithi167: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi167-igxkgw\n/bin/podman: stderr Error: error inspecting object: no such container ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi167-igxkgw\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi167.igxkgw\n/bin/podman: stderr Error: error inspecting object: no such container ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi167.igxkgw\nDeploy daemon haproxy.nfs.foo.smithi167.igxkgw ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi167 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2023-11-30T23:05:21Z\" level=warning msg=\"failed, retrying in 1s ... (1/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-11-30T23:05:59Z\" level=warning msg=\"failed, retrying in 1s ... (2/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-11-30T23:06:37Z\" level=warning msg=\"failed, retrying in 1s ... (3/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi167 -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": 9049, "virtual_ip": "10.0.31.38/16"}, "status": {"created": "2023-11-30T22:58:56.312786Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.38/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2023-11-30T22:54:41.668043Z", "last_refresh": "2023-11-30T23:04:39.558331Z", "running": 2, "size": 2}}, {"events": ["2023-11-30T22:55:50.759225Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi038:172.21.15.38=smithi038", "smithi167:172.21.15.167=smithi167"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2023-11-30T22:55:50.756456Z", "last_refresh": "2023-11-30T23:04:39.558407Z", "running": 2, "size": 2}}, {"events": ["2023-11-30T22:58:56.311581Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2023-11-30T22:58:56.308071Z", "last_refresh": "2023-11-30T23:04:43.743907Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2023-11-30T22:54:46.136630Z", "last_refresh": "2023-11-30T23:04:39.558478Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2023-11-30T22:56:33.258058Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2023-11-30T22:56:33.253117Z", "last_refresh": "2023-11-30T23:04:39.558544Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2023-11-30T22:54:43.949497Z", "last_refresh": "2023-11-30T23:04:43.743520Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2023-11-30T22:58:52.105721Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2023-11-30T22:58:59.793467Z", "last_refresh": "2023-11-30T23:04:39.558809Z", "ports": [8800], "running": 2, "size": 2}}] 2023-11-30T23:09:19.720 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2023-11-30T23:09:20.012 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:09:19 smithi167 conmon[87022]: audit 2023-11-30T23:09:19.265950+0000 mgr.smithi038.ldalxq (mgr.14182) 677 : audit [DBG] from='client.15348 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-11-30T23:09:20.024 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:09:19 smithi038 conmon[81956]: audit 2023-11-30T23:09:19.265950+0000 mgr.smithi038.ldalxq (mgr.14182) 677 : audit [DBG] from='client.15348 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-11-30T23:09:20.721 DEBUG:teuthology.orchestra.run.smithi038:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:0dc074ce0b0b3b4f393f56dd32ef36884ebf45a9 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 3faf8b00-8fd3-11ee-95a2-87774f69a715 -- ceph orch ls -f json 2023-11-30T23:09:21.024 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:09:20 smithi038 conmon[81956]: cluster 2023-11-30T23:09:20.653116+0000 mgr.smithi038.ldalxq 2023-11-30T23:09:21.024 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:09:20 smithi038 conmon[81956]: (mgr.14182) 678 : cluster [DBG] pgmap v456: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 38 KiB/s rd, 0 B/s wr, 63 op/s 2023-11-30T23:09:21.265 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:09:20 smithi167 conmon[87022]: cluster 2023-11-30T23:09:20.653116+0000 mgr.smithi038.ldalxq (mgr.14182) 678 : cluster [DBG] pgmap v456: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 38 KiB/s rd, 0 B/s wr, 63 op/s 2023-11-30T23:09:22.555 INFO:teuthology.orchestra.run.smithi038.stdout: 2023-11-30T23:09:22.555 INFO:teuthology.orchestra.run.smithi038.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2023-11-30T22:54:47.122758Z", "last_refresh": "2023-11-30T23:04:43.743252Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2023-11-30T22:54:42.674972Z", "last_refresh": "2023-11-30T23:04:39.558186Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2023-11-30T22:54:45.114633Z", "last_refresh": "2023-11-30T23:04:43.743389Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2023-11-30T23:02:07.111634Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi167.buykdj on smithi167: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi167-buykdj\n/bin/podman: stderr Error: error inspecting object: no such container ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi167-buykdj\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi167.buykdj\n/bin/podman: stderr Error: error inspecting object: no such container ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi167.buykdj\nDeploy daemon haproxy.nfs.foo.smithi167.buykdj ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi167 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2023-11-30T22:59:44Z\" level=warning msg=\"failed, retrying in 1s ... (1/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-11-30T23:00:21Z\" level=warning msg=\"failed, retrying in 1s ... (2/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-11-30T23:00:59Z\" level=warning msg=\"failed, retrying in 1s ... (3/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: Error determining manifest MIME type for docker://haproxy:2.3: Error reading manifest sha256:058f434330f13dbbc46761f3e9a76af2408e9ec1898c9ac5a8baf00b42e756a9 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi167 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-11-30T23:04:36.497929Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi038.fwcakz on smithi038: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi038-fwcakz\n/bin/podman: stderr Error: error inspecting object: no such container ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi038-fwcakz\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi038.fwcakz\n/bin/podman: stderr Error: error inspecting object: no such container ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi038.fwcakz\nDeploy daemon haproxy.nfs.foo.smithi038.fwcakz ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi038 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2023-11-30T23:02:44Z\" level=warning msg=\"failed, retrying in 1s ... (1/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-11-30T23:03:21Z\" level=warning msg=\"failed, retrying in 1s ... (2/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-11-30T23:03:58Z\" level=warning msg=\"failed, retrying in 1s ... (3/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi038 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-11-30T23:04:36.502614Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi038.flofui on smithi038: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2023-11-30T23:04:36.503792Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi167.dxieha on smithi167: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2023-11-30T23:07:14.865206Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi167.igxkgw on smithi167: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi167-igxkgw\n/bin/podman: stderr Error: error inspecting object: no such container ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi167-igxkgw\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi167.igxkgw\n/bin/podman: stderr Error: error inspecting object: no such container ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi167.igxkgw\nDeploy daemon haproxy.nfs.foo.smithi167.igxkgw ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi167 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2023-11-30T23:05:21Z\" level=warning msg=\"failed, retrying in 1s ... (1/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-11-30T23:05:59Z\" level=warning msg=\"failed, retrying in 1s ... (2/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-11-30T23:06:37Z\" level=warning msg=\"failed, retrying in 1s ... (3/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi167 -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": 9049, "virtual_ip": "10.0.31.38/16"}, "status": {"created": "2023-11-30T22:58:56.312786Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.38/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2023-11-30T22:54:41.668043Z", "last_refresh": "2023-11-30T23:04:39.558331Z", "running": 2, "size": 2}}, {"events": ["2023-11-30T22:55:50.759225Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi038:172.21.15.38=smithi038", "smithi167:172.21.15.167=smithi167"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2023-11-30T22:55:50.756456Z", "last_refresh": "2023-11-30T23:04:39.558407Z", "running": 2, "size": 2}}, {"events": ["2023-11-30T22:58:56.311581Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2023-11-30T22:58:56.308071Z", "last_refresh": "2023-11-30T23:04:43.743907Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2023-11-30T22:54:46.136630Z", "last_refresh": "2023-11-30T23:04:39.558478Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2023-11-30T22:56:33.258058Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2023-11-30T22:56:33.253117Z", "last_refresh": "2023-11-30T23:04:39.558544Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2023-11-30T22:54:43.949497Z", "last_refresh": "2023-11-30T23:04:43.743520Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2023-11-30T22:58:52.105721Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2023-11-30T22:58:59.793467Z", "last_refresh": "2023-11-30T23:04:39.558809Z", "ports": [8800], "running": 2, "size": 2}}] 2023-11-30T23:09:22.966 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:09:22 smithi038 conmon[81956]: audit 2023-11-30T23:09:22. 2023-11-30T23:09:22.966 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:09:22 smithi038 conmon[81956]: 551426+0000 mgr.smithi038.ldalxq (mgr.14182) 679 : audit [DBG] from='client.15352 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-11-30T23:09:22.966 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:09:22 smithi038 conmon[81956]: cluster 2023-11-30T23:09:22.653795+0000 mgr.smithi038.ldalxq (mgr.14182) 680 : cluster [DBG] pgmap v457: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 39 KiB/s rd, 0 B/s wr, 65 op/s 2023-11-30T23:09:22.970 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2023-11-30T23:09:23.262 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:09:22 smithi167 conmon[87022]: audit 2023-11-30T23:09:22.551426+0000 mgr.smithi038.ldalxq (mgr.14182) 679 : audit [DBG] from='client.15352 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-11-30T23:09:23.262 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:09:22 smithi167 conmon[87022]: cluster 2023-11-30T23:09:22 2023-11-30T23:09:23.262 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:09:22 smithi167 conmon[87022]: .653795+0000 mgr.smithi038.ldalxq (mgr.14182) 680 : cluster [DBG] pgmap v457: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 39 KiB/s rd, 0 B/s wr, 65 op/s 2023-11-30T23:09:23.971 DEBUG:teuthology.orchestra.run.smithi038:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:0dc074ce0b0b3b4f393f56dd32ef36884ebf45a9 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 3faf8b00-8fd3-11ee-95a2-87774f69a715 -- ceph orch ls -f json 2023-11-30T23:09:24.774 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:09:24 smithi038 conmon[81956]: cluster 2023-11-30T23:09:24.654475+0000 mgr.smithi038.ldalxq (mgr.14182) 681 : cluster [DBG] pgmap v458: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 34 KiB/s rd, 0 B/s wr, 56 op/s 2023-11-30T23:09:25.011 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:09:24 smithi167 conmon[87022]: cluster 2023-11-30T23:09:24.654475+0000 mgr.smithi038.ldalxq (mgr.14182) 681 : cluster [DBG] pgmap v458: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 34 KiB/s rd, 0 B/s wr, 56 op/s 2023-11-30T23:09:25.700 INFO:teuthology.orchestra.run.smithi038.stdout: 2023-11-30T23:09:25.701 INFO:teuthology.orchestra.run.smithi038.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2023-11-30T22:54:47.122758Z", "last_refresh": "2023-11-30T23:04:43.743252Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2023-11-30T22:54:42.674972Z", "last_refresh": "2023-11-30T23:04:39.558186Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2023-11-30T22:54:45.114633Z", "last_refresh": "2023-11-30T23:04:43.743389Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2023-11-30T23:02:07.111634Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi167.buykdj on smithi167: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi167-buykdj\n/bin/podman: stderr Error: error inspecting object: no such container ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi167-buykdj\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi167.buykdj\n/bin/podman: stderr Error: error inspecting object: no such container ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi167.buykdj\nDeploy daemon haproxy.nfs.foo.smithi167.buykdj ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi167 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2023-11-30T22:59:44Z\" level=warning msg=\"failed, retrying in 1s ... (1/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-11-30T23:00:21Z\" level=warning msg=\"failed, retrying in 1s ... (2/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-11-30T23:00:59Z\" level=warning msg=\"failed, retrying in 1s ... (3/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: Error determining manifest MIME type for docker://haproxy:2.3: Error reading manifest sha256:058f434330f13dbbc46761f3e9a76af2408e9ec1898c9ac5a8baf00b42e756a9 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi167 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-11-30T23:04:36.497929Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi038.fwcakz on smithi038: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi038-fwcakz\n/bin/podman: stderr Error: error inspecting object: no such container ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi038-fwcakz\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi038.fwcakz\n/bin/podman: stderr Error: error inspecting object: no such container ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi038.fwcakz\nDeploy daemon haproxy.nfs.foo.smithi038.fwcakz ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi038 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2023-11-30T23:02:44Z\" level=warning msg=\"failed, retrying in 1s ... (1/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-11-30T23:03:21Z\" level=warning msg=\"failed, retrying in 1s ... (2/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-11-30T23:03:58Z\" level=warning msg=\"failed, retrying in 1s ... (3/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi038 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-11-30T23:04:36.502614Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi038.flofui on smithi038: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2023-11-30T23:04:36.503792Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi167.dxieha on smithi167: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2023-11-30T23:07:14.865206Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi167.igxkgw on smithi167: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi167-igxkgw\n/bin/podman: stderr Error: error inspecting object: no such container ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi167-igxkgw\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi167.igxkgw\n/bin/podman: stderr Error: error inspecting object: no such container ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi167.igxkgw\nDeploy daemon haproxy.nfs.foo.smithi167.igxkgw ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi167 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2023-11-30T23:05:21Z\" level=warning msg=\"failed, retrying in 1s ... (1/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-11-30T23:05:59Z\" level=warning msg=\"failed, retrying in 1s ... (2/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-11-30T23:06:37Z\" level=warning msg=\"failed, retrying in 1s ... (3/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi167 -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": 9049, "virtual_ip": "10.0.31.38/16"}, "status": {"created": "2023-11-30T22:58:56.312786Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.38/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2023-11-30T22:54:41.668043Z", "last_refresh": "2023-11-30T23:04:39.558331Z", "running": 2, "size": 2}}, {"events": ["2023-11-30T22:55:50.759225Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi038:172.21.15.38=smithi038", "smithi167:172.21.15.167=smithi167"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2023-11-30T22:55:50.756456Z", "last_refresh": "2023-11-30T23:04:39.558407Z", "running": 2, "size": 2}}, {"events": ["2023-11-30T22:58:56.311581Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2023-11-30T22:58:56.308071Z", "last_refresh": "2023-11-30T23:04:43.743907Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2023-11-30T22:54:46.136630Z", "last_refresh": "2023-11-30T23:04:39.558478Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2023-11-30T22:56:33.258058Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2023-11-30T22:56:33.253117Z", "last_refresh": "2023-11-30T23:04:39.558544Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2023-11-30T22:54:43.949497Z", "last_refresh": "2023-11-30T23:04:43.743520Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2023-11-30T22:58:52.105721Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2023-11-30T22:58:59.793467Z", "last_refresh": "2023-11-30T23:04:39.558809Z", "ports": [8800], "running": 2, "size": 2}}] 2023-11-30T23:09:26.011 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:09:25 smithi167 conmon[87022]: audit 2023-11-30T23:09:25.696195+0000 mgr.smithi038.ldalxq (mgr.14182) 682 : audit [DBG] from='client.15356 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-11-30T23:09:26.023 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:09:25 smithi038 conmon[81956]: audit 2023-11-30T23:09:25.696195+0000 mgr.smithi038.ldalxq 2023-11-30T23:09:26.024 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:09:25 smithi038 conmon[81956]: (mgr.14182) 682 : audit [DBG] from='client.15356 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-11-30T23:09:26.133 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2023-11-30T23:09:27.024 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:09:26 smithi038 conmon[81956]: cluster 2023-11-30T23:09:26.655345+0000 mgr.smithi038.ldalxq (mgr.14182) 683 : cluster [DBG] pgmap v459: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 17 KiB/s rd, 0 B/s wr, 27 op/s 2023-11-30T23:09:27.134 DEBUG:teuthology.orchestra.run.smithi038:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:0dc074ce0b0b3b4f393f56dd32ef36884ebf45a9 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 3faf8b00-8fd3-11ee-95a2-87774f69a715 -- ceph orch ls -f json 2023-11-30T23:09:27.262 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:09:26 smithi167 conmon[87022]: cluster 2023-11-30T23:09:26.655345+0000 mgr.smithi038.ldalxq (mgr.14182) 683 : cluster 2023-11-30T23:09:27.262 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:09:26 smithi167 conmon[87022]: [DBG] pgmap v459: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 17 KiB/s rd, 0 B/s wr, 27 op/s 2023-11-30T23:09:28.847 INFO:teuthology.orchestra.run.smithi038.stdout: 2023-11-30T23:09:28.847 INFO:teuthology.orchestra.run.smithi038.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2023-11-30T22:54:47.122758Z", "last_refresh": "2023-11-30T23:04:43.743252Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2023-11-30T22:54:42.674972Z", "last_refresh": "2023-11-30T23:04:39.558186Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2023-11-30T22:54:45.114633Z", "last_refresh": "2023-11-30T23:04:43.743389Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2023-11-30T23:02:07.111634Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi167.buykdj on smithi167: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi167-buykdj\n/bin/podman: stderr Error: error inspecting object: no such container ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi167-buykdj\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi167.buykdj\n/bin/podman: stderr Error: error inspecting object: no such container ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi167.buykdj\nDeploy daemon haproxy.nfs.foo.smithi167.buykdj ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi167 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2023-11-30T22:59:44Z\" level=warning msg=\"failed, retrying in 1s ... (1/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-11-30T23:00:21Z\" level=warning msg=\"failed, retrying in 1s ... (2/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-11-30T23:00:59Z\" level=warning msg=\"failed, retrying in 1s ... (3/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: Error determining manifest MIME type for docker://haproxy:2.3: Error reading manifest sha256:058f434330f13dbbc46761f3e9a76af2408e9ec1898c9ac5a8baf00b42e756a9 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi167 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-11-30T23:04:36.497929Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi038.fwcakz on smithi038: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi038-fwcakz\n/bin/podman: stderr Error: error inspecting object: no such container ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi038-fwcakz\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi038.fwcakz\n/bin/podman: stderr Error: error inspecting object: no such container ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi038.fwcakz\nDeploy daemon haproxy.nfs.foo.smithi038.fwcakz ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi038 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2023-11-30T23:02:44Z\" level=warning msg=\"failed, retrying in 1s ... (1/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-11-30T23:03:21Z\" level=warning msg=\"failed, retrying in 1s ... (2/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-11-30T23:03:58Z\" level=warning msg=\"failed, retrying in 1s ... (3/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi038 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-11-30T23:04:36.502614Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi038.flofui on smithi038: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2023-11-30T23:04:36.503792Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi167.dxieha on smithi167: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2023-11-30T23:07:14.865206Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi167.igxkgw on smithi167: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi167-igxkgw\n/bin/podman: stderr Error: error inspecting object: no such container ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi167-igxkgw\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi167.igxkgw\n/bin/podman: stderr Error: error inspecting object: no such container ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi167.igxkgw\nDeploy daemon haproxy.nfs.foo.smithi167.igxkgw ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi167 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2023-11-30T23:05:21Z\" level=warning msg=\"failed, retrying in 1s ... (1/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-11-30T23:05:59Z\" level=warning msg=\"failed, retrying in 1s ... (2/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-11-30T23:06:37Z\" level=warning msg=\"failed, retrying in 1s ... (3/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi167 -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": 9049, "virtual_ip": "10.0.31.38/16"}, "status": {"created": "2023-11-30T22:58:56.312786Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.38/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2023-11-30T22:54:41.668043Z", "last_refresh": "2023-11-30T23:04:39.558331Z", "running": 2, "size": 2}}, {"events": ["2023-11-30T22:55:50.759225Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi038:172.21.15.38=smithi038", "smithi167:172.21.15.167=smithi167"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2023-11-30T22:55:50.756456Z", "last_refresh": "2023-11-30T23:04:39.558407Z", "running": 2, "size": 2}}, {"events": ["2023-11-30T22:58:56.311581Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2023-11-30T22:58:56.308071Z", "last_refresh": "2023-11-30T23:04:43.743907Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2023-11-30T22:54:46.136630Z", "last_refresh": "2023-11-30T23:04:39.558478Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2023-11-30T22:56:33.258058Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2023-11-30T22:56:33.253117Z", "last_refresh": "2023-11-30T23:04:39.558544Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2023-11-30T22:54:43.949497Z", "last_refresh": "2023-11-30T23:04:43.743520Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2023-11-30T22:58:52.105721Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2023-11-30T22:58:59.793467Z", "last_refresh": "2023-11-30T23:04:39.558809Z", "ports": [8800], "running": 2, "size": 2}}] 2023-11-30T23:09:29.011 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:09:28 smithi167 conmon[87022]: cluster 2023-11-30T23:09:28.655912+0000 mgr.smithi038.ldalxq (mgr.14182) 684 : cluster [DBG] pgmap v460: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 4.1 KiB/s rd, 0 B/s wr, 6 op/s 2023-11-30T23:09:29.024 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:09:28 smithi038 conmon[81956]: cluster 2023-11-30T23:09:28.655912+0000 mgr.smithi038.ldalxq (mgr.14182) 684 : cluster [DBG] pgmap v460: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 4.1 KiB/s rd, 0 B/s wr, 6 op/s 2023-11-30T23:09:29.294 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2023-11-30T23:09:30.012 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:09:29 smithi167 conmon[87022]: audit 2023-11-30T23:09:28.840890+0000 mgr.smithi038.ldalxq (mgr.14182) 685 : audit [DBG] from='client.15360 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-11-30T23:09:30.024 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:09:29 smithi038 conmon[81956]: audit 2023-11-30T23:09:28.840890+0000 mgr.smithi038.ldalxq (mgr.14182) 685 : 2023-11-30T23:09:30.024 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:09:29 smithi038 conmon[81956]: audit [DBG] from='client.15360 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-11-30T23:09:30.295 DEBUG:teuthology.orchestra.run.smithi038:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:0dc074ce0b0b3b4f393f56dd32ef36884ebf45a9 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 3faf8b00-8fd3-11ee-95a2-87774f69a715 -- ceph orch ls -f json 2023-11-30T23:09:31.023 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:09:30 smithi038 conmon[81956]: cluster 2023-11-30T23:09:30.656989+0000 mgr.smithi038.ldalxq (mgr.14182) 686 : 2023-11-30T23:09:31.024 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:09:30 smithi038 conmon[81956]: cluster [DBG] pgmap v461: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 4.1 KiB/s rd, 0 B/s wr, 6 op/s 2023-11-30T23:09:31.262 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:09:30 smithi167 conmon[87022]: cluster 2023-11-30T23:09:30.656989+0000 mgr.smithi038.ldalxq (mgr.14182) 686 : cluster [DBG] 2023-11-30T23:09:31.262 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:09:30 smithi167 conmon[87022]: pgmap v461: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 4.1 KiB/s rd, 0 B/s wr, 6 op/s 2023-11-30T23:09:32.596 INFO:teuthology.orchestra.run.smithi038.stdout: 2023-11-30T23:09:32.596 INFO:teuthology.orchestra.run.smithi038.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2023-11-30T22:54:47.122758Z", "last_refresh": "2023-11-30T23:04:43.743252Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2023-11-30T22:54:42.674972Z", "last_refresh": "2023-11-30T23:04:39.558186Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2023-11-30T22:54:45.114633Z", "last_refresh": "2023-11-30T23:04:43.743389Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2023-11-30T23:02:07.111634Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi167.buykdj on smithi167: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi167-buykdj\n/bin/podman: stderr Error: error inspecting object: no such container ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi167-buykdj\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi167.buykdj\n/bin/podman: stderr Error: error inspecting object: no such container ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi167.buykdj\nDeploy daemon haproxy.nfs.foo.smithi167.buykdj ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi167 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2023-11-30T22:59:44Z\" level=warning msg=\"failed, retrying in 1s ... (1/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-11-30T23:00:21Z\" level=warning msg=\"failed, retrying in 1s ... (2/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-11-30T23:00:59Z\" level=warning msg=\"failed, retrying in 1s ... (3/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: Error determining manifest MIME type for docker://haproxy:2.3: Error reading manifest sha256:058f434330f13dbbc46761f3e9a76af2408e9ec1898c9ac5a8baf00b42e756a9 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi167 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-11-30T23:04:36.497929Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi038.fwcakz on smithi038: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi038-fwcakz\n/bin/podman: stderr Error: error inspecting object: no such container ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi038-fwcakz\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi038.fwcakz\n/bin/podman: stderr Error: error inspecting object: no such container ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi038.fwcakz\nDeploy daemon haproxy.nfs.foo.smithi038.fwcakz ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi038 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2023-11-30T23:02:44Z\" level=warning msg=\"failed, retrying in 1s ... (1/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-11-30T23:03:21Z\" level=warning msg=\"failed, retrying in 1s ... (2/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-11-30T23:03:58Z\" level=warning msg=\"failed, retrying in 1s ... (3/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi038 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-11-30T23:04:36.502614Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi038.flofui on smithi038: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2023-11-30T23:04:36.503792Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi167.dxieha on smithi167: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2023-11-30T23:07:14.865206Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi167.igxkgw on smithi167: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi167-igxkgw\n/bin/podman: stderr Error: error inspecting object: no such container ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi167-igxkgw\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi167.igxkgw\n/bin/podman: stderr Error: error inspecting object: no such container ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi167.igxkgw\nDeploy daemon haproxy.nfs.foo.smithi167.igxkgw ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi167 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2023-11-30T23:05:21Z\" level=warning msg=\"failed, retrying in 1s ... (1/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-11-30T23:05:59Z\" level=warning msg=\"failed, retrying in 1s ... (2/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-11-30T23:06:37Z\" level=warning msg=\"failed, retrying in 1s ... (3/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi167 -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": 9049, "virtual_ip": "10.0.31.38/16"}, "status": {"created": "2023-11-30T22:58:56.312786Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.38/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2023-11-30T22:54:41.668043Z", "last_refresh": "2023-11-30T23:04:39.558331Z", "running": 2, "size": 2}}, {"events": ["2023-11-30T22:55:50.759225Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi038:172.21.15.38=smithi038", "smithi167:172.21.15.167=smithi167"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2023-11-30T22:55:50.756456Z", "last_refresh": "2023-11-30T23:04:39.558407Z", "running": 2, "size": 2}}, {"events": ["2023-11-30T22:58:56.311581Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2023-11-30T22:58:56.308071Z", "last_refresh": "2023-11-30T23:04:43.743907Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2023-11-30T22:54:46.136630Z", "last_refresh": "2023-11-30T23:04:39.558478Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2023-11-30T22:56:33.258058Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2023-11-30T22:56:33.253117Z", "last_refresh": "2023-11-30T23:04:39.558544Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2023-11-30T22:54:43.949497Z", "last_refresh": "2023-11-30T23:04:43.743520Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2023-11-30T22:58:52.105721Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2023-11-30T22:58:59.793467Z", "last_refresh": "2023-11-30T23:04:39.558809Z", "ports": [8800], "running": 2, "size": 2}}] 2023-11-30T23:09:32.985 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:09:32 smithi038 conmon[81956]: audit 2023-11-30T23:09:32.591805+0000 mgr.smithi038.ldalxq (mgr.14182) 687 : audit [DBG] from='client.15364 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-11-30T23:09:32.985 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:09:32 smithi038 conmon[81956]: cluster 2023-11-30T23:09:32.657586+0000 mgr.smithi038.ldalxq (mgr.14182) 688 : cluster [DBG] pgmap v462: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 1.8 KiB/s rd, 0 B/s wr, 2 op/s 2023-11-30T23:09:33.058 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2023-11-30T23:09:33.261 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:09:32 smithi167 conmon[87022]: audit 2023-11-30T23:09:32.591805+0000 mgr.smithi038.ldalxq (mgr.14182) 687 : audit [DBG] from='client.15364 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-11-30T23:09:33.262 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:09:32 smithi167 conmon[87022]: cluster 2023-11-30T23:09:32.657586 2023-11-30T23:09:33.262 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:09:32 smithi167 conmon[87022]: +0000 mgr.smithi038.ldalxq (mgr.14182) 688 : cluster [DBG] pgmap v462: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 1.8 KiB/s rd, 0 B/s wr, 2 op/s 2023-11-30T23:09:34.058 DEBUG:teuthology.orchestra.run.smithi038:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:0dc074ce0b0b3b4f393f56dd32ef36884ebf45a9 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 3faf8b00-8fd3-11ee-95a2-87774f69a715 -- ceph orch ls -f json 2023-11-30T23:09:34.962 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:09:34 smithi038 conmon[81956]: cluster 2023-11-30T23:09:34.658204+0000 2023-11-30T23:09:34.962 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:09:34 smithi038 conmon[81956]: mgr.smithi038.ldalxq (mgr.14182) 689 : cluster [DBG] pgmap v463: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 938 B/s rd, 0 B/s wr, 1 op/s 2023-11-30T23:09:35.012 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:09:34 smithi167 conmon[87022]: cluster 2023-11-30T23:09:34.658204+0000 mgr.smithi038.ldalxq (mgr.14182) 689 : cluster [DBG] pgmap v463: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 938 B/s rd, 0 B/s wr, 1 op/s 2023-11-30T23:09:35.012 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:09:34 smithi167 conmon[87022]: 2023-11-30T23:09:35.766 INFO:teuthology.orchestra.run.smithi038.stdout: 2023-11-30T23:09:35.766 INFO:teuthology.orchestra.run.smithi038.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2023-11-30T22:54:47.122758Z", "last_refresh": "2023-11-30T23:04:43.743252Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2023-11-30T22:54:42.674972Z", "last_refresh": "2023-11-30T23:04:39.558186Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2023-11-30T22:54:45.114633Z", "last_refresh": "2023-11-30T23:04:43.743389Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2023-11-30T23:02:07.111634Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi167.buykdj on smithi167: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi167-buykdj\n/bin/podman: stderr Error: error inspecting object: no such container ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi167-buykdj\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi167.buykdj\n/bin/podman: stderr Error: error inspecting object: no such container ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi167.buykdj\nDeploy daemon haproxy.nfs.foo.smithi167.buykdj ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi167 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2023-11-30T22:59:44Z\" level=warning msg=\"failed, retrying in 1s ... (1/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-11-30T23:00:21Z\" level=warning msg=\"failed, retrying in 1s ... (2/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-11-30T23:00:59Z\" level=warning msg=\"failed, retrying in 1s ... (3/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: Error determining manifest MIME type for docker://haproxy:2.3: Error reading manifest sha256:058f434330f13dbbc46761f3e9a76af2408e9ec1898c9ac5a8baf00b42e756a9 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi167 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-11-30T23:04:36.497929Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi038.fwcakz on smithi038: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi038-fwcakz\n/bin/podman: stderr Error: error inspecting object: no such container ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi038-fwcakz\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi038.fwcakz\n/bin/podman: stderr Error: error inspecting object: no such container ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi038.fwcakz\nDeploy daemon haproxy.nfs.foo.smithi038.fwcakz ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi038 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2023-11-30T23:02:44Z\" level=warning msg=\"failed, retrying in 1s ... (1/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-11-30T23:03:21Z\" level=warning msg=\"failed, retrying in 1s ... (2/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-11-30T23:03:58Z\" level=warning msg=\"failed, retrying in 1s ... (3/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi038 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-11-30T23:04:36.502614Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi038.flofui on smithi038: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2023-11-30T23:04:36.503792Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi167.dxieha on smithi167: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2023-11-30T23:07:14.865206Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi167.igxkgw on smithi167: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi167-igxkgw\n/bin/podman: stderr Error: error inspecting object: no such container ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi167-igxkgw\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi167.igxkgw\n/bin/podman: stderr Error: error inspecting object: no such container ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi167.igxkgw\nDeploy daemon haproxy.nfs.foo.smithi167.igxkgw ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi167 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2023-11-30T23:05:21Z\" level=warning msg=\"failed, retrying in 1s ... (1/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-11-30T23:05:59Z\" level=warning msg=\"failed, retrying in 1s ... (2/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-11-30T23:06:37Z\" level=warning msg=\"failed, retrying in 1s ... (3/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi167 -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": 9049, "virtual_ip": "10.0.31.38/16"}, "status": {"created": "2023-11-30T22:58:56.312786Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.38/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2023-11-30T22:54:41.668043Z", "last_refresh": "2023-11-30T23:04:39.558331Z", "running": 2, "size": 2}}, {"events": ["2023-11-30T22:55:50.759225Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi038:172.21.15.38=smithi038", "smithi167:172.21.15.167=smithi167"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2023-11-30T22:55:50.756456Z", "last_refresh": "2023-11-30T23:04:39.558407Z", "running": 2, "size": 2}}, {"events": ["2023-11-30T22:58:56.311581Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2023-11-30T22:58:56.308071Z", "last_refresh": "2023-11-30T23:04:43.743907Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2023-11-30T22:54:46.136630Z", "last_refresh": "2023-11-30T23:04:39.558478Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2023-11-30T22:56:33.258058Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2023-11-30T22:56:33.253117Z", "last_refresh": "2023-11-30T23:04:39.558544Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2023-11-30T22:54:43.949497Z", "last_refresh": "2023-11-30T23:04:43.743520Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2023-11-30T22:58:52.105721Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2023-11-30T22:58:59.793467Z", "last_refresh": "2023-11-30T23:04:39.558809Z", "ports": [8800], "running": 2, "size": 2}}] 2023-11-30T23:09:36.222 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2023-11-30T23:09:37.012 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:09:36 smithi167 conmon[87022]: audit 2023-11-30T23:09:35.761518+0000 mgr.smithi038.ldalxq (mgr.14182) 690 : audit [DBG] from='client.15368 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-11-30T23:09:37.012 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:09:36 smithi167 conmon[87022]: cluster 2023-11-30T23:09:36.659202+0000 mgr.smithi038.ldalxq 2023-11-30T23:09:37.012 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:09:36 smithi167 conmon[87022]: (mgr.14182) 691 : cluster [DBG] pgmap v464: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2023-11-30T23:09:37.024 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:09:36 smithi038 conmon[81956]: audit 2023-11-30T23:09:35.761518+0000 mgr.smithi038.ldalxq (mgr.14182) 690 : audit [DBG] from='client.15368 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-11-30T23:09:37.024 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:09:36 smithi038 conmon[81956]: cluster 2023-11-30T23:09:36.659202+0000 mgr.smithi038.ldalxq (mgr.14182) 691 : cluster [DBG] pgmap v464: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2023-11-30T23:09:37.222 DEBUG:teuthology.orchestra.run.smithi038:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:0dc074ce0b0b3b4f393f56dd32ef36884ebf45a9 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 3faf8b00-8fd3-11ee-95a2-87774f69a715 -- ceph orch ls -f json 2023-11-30T23:09:38.931 INFO:teuthology.orchestra.run.smithi038.stdout: 2023-11-30T23:09:38.931 INFO:teuthology.orchestra.run.smithi038.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2023-11-30T22:54:47.122758Z", "last_refresh": "2023-11-30T23:04:43.743252Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2023-11-30T22:54:42.674972Z", "last_refresh": "2023-11-30T23:04:39.558186Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2023-11-30T22:54:45.114633Z", "last_refresh": "2023-11-30T23:04:43.743389Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2023-11-30T23:02:07.111634Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi167.buykdj on smithi167: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi167-buykdj\n/bin/podman: stderr Error: error inspecting object: no such container ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi167-buykdj\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi167.buykdj\n/bin/podman: stderr Error: error inspecting object: no such container ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi167.buykdj\nDeploy daemon haproxy.nfs.foo.smithi167.buykdj ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi167 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2023-11-30T22:59:44Z\" level=warning msg=\"failed, retrying in 1s ... (1/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-11-30T23:00:21Z\" level=warning msg=\"failed, retrying in 1s ... (2/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-11-30T23:00:59Z\" level=warning msg=\"failed, retrying in 1s ... (3/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: Error determining manifest MIME type for docker://haproxy:2.3: Error reading manifest sha256:058f434330f13dbbc46761f3e9a76af2408e9ec1898c9ac5a8baf00b42e756a9 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi167 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-11-30T23:04:36.497929Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi038.fwcakz on smithi038: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi038-fwcakz\n/bin/podman: stderr Error: error inspecting object: no such container ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi038-fwcakz\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi038.fwcakz\n/bin/podman: stderr Error: error inspecting object: no such container ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi038.fwcakz\nDeploy daemon haproxy.nfs.foo.smithi038.fwcakz ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi038 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2023-11-30T23:02:44Z\" level=warning msg=\"failed, retrying in 1s ... (1/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-11-30T23:03:21Z\" level=warning msg=\"failed, retrying in 1s ... (2/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-11-30T23:03:58Z\" level=warning msg=\"failed, retrying in 1s ... (3/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi038 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-11-30T23:04:36.502614Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi038.flofui on smithi038: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2023-11-30T23:04:36.503792Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi167.dxieha on smithi167: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2023-11-30T23:07:14.865206Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi167.igxkgw on smithi167: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi167-igxkgw\n/bin/podman: stderr Error: error inspecting object: no such container ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi167-igxkgw\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi167.igxkgw\n/bin/podman: stderr Error: error inspecting object: no such container ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi167.igxkgw\nDeploy daemon haproxy.nfs.foo.smithi167.igxkgw ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi167 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2023-11-30T23:05:21Z\" level=warning msg=\"failed, retrying in 1s ... (1/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-11-30T23:05:59Z\" level=warning msg=\"failed, retrying in 1s ... (2/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-11-30T23:06:37Z\" level=warning msg=\"failed, retrying in 1s ... (3/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi167 -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": 9049, "virtual_ip": "10.0.31.38/16"}, "status": {"created": "2023-11-30T22:58:56.312786Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.38/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2023-11-30T22:54:41.668043Z", "last_refresh": "2023-11-30T23:04:39.558331Z", "running": 2, "size": 2}}, {"events": ["2023-11-30T22:55:50.759225Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi038:172.21.15.38=smithi038", "smithi167:172.21.15.167=smithi167"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2023-11-30T22:55:50.756456Z", "last_refresh": "2023-11-30T23:04:39.558407Z", "running": 2, "size": 2}}, {"events": ["2023-11-30T22:58:56.311581Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2023-11-30T22:58:56.308071Z", "last_refresh": "2023-11-30T23:04:43.743907Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2023-11-30T22:54:46.136630Z", "last_refresh": "2023-11-30T23:04:39.558478Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2023-11-30T22:56:33.258058Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2023-11-30T22:56:33.253117Z", "last_refresh": "2023-11-30T23:04:39.558544Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2023-11-30T22:54:43.949497Z", "last_refresh": "2023-11-30T23:04:43.743520Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2023-11-30T22:58:52.105721Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2023-11-30T22:58:59.793467Z", "last_refresh": "2023-11-30T23:04:39.558809Z", "ports": [8800], "running": 2, "size": 2}}] 2023-11-30T23:09:38.943 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:09:38 smithi038 conmon[81956]: cluster 2023-11-30T23:09:38.659698+0000 mgr.smithi038.ldalxq (mgr.14182) 692 : cluster [DBG] pgmap v465: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2023-11-30T23:09:39.011 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:09:38 smithi167 conmon[87022]: cluster 2023-11-30T23:09:38.659698+0000 mgr.smithi038.ldalxq (mgr.14182) 692 : cluster [DBG] pgmap v465: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2023-11-30T23:09:39.375 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2023-11-30T23:09:40.013 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:09:39 smithi167 conmon[87022]: audit 2023-11-30T23:09:38.926376+0000 mgr.smithi038.ldalxq (mgr.14182) 693 : audit [DBG] from='client.15372 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-11-30T23:09:40.024 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:09:39 smithi038 conmon[81956]: audit 2023-11-30T23:09:38.926376+0000 mgr.smithi038.ldalxq ( 2023-11-30T23:09:40.024 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:09:39 smithi038 conmon[81956]: mgr.14182) 693 : audit [DBG] from='client.15372 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-11-30T23:09:40.375 DEBUG:teuthology.orchestra.run.smithi038:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:0dc074ce0b0b3b4f393f56dd32ef36884ebf45a9 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 3faf8b00-8fd3-11ee-95a2-87774f69a715 -- ceph orch ls -f json 2023-11-30T23:09:41.024 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:09:40 smithi038 conmon[81956]: cluster 2023-11-30T23:09:40.660575+0000 mgr.smithi038.ldalxq ( 2023-11-30T23:09:41.024 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:09:40 smithi038 conmon[81956]: mgr.14182) 694 : cluster [DBG] pgmap v466: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2023-11-30T23:09:41.262 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:09:40 smithi167 conmon[87022]: cluster 2023-11-30T23:09:40.660575+0000 mgr.smithi038.ldalxq (mgr.14182) 694 : cluster [DBG] pgmap v466: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2023-11-30T23:09:42.165 INFO:teuthology.orchestra.run.smithi038.stdout: 2023-11-30T23:09:42.165 INFO:teuthology.orchestra.run.smithi038.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2023-11-30T22:54:47.122758Z", "last_refresh": "2023-11-30T23:04:43.743252Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2023-11-30T22:54:42.674972Z", "last_refresh": "2023-11-30T23:04:39.558186Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2023-11-30T22:54:45.114633Z", "last_refresh": "2023-11-30T23:04:43.743389Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2023-11-30T23:02:07.111634Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi167.buykdj on smithi167: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi167-buykdj\n/bin/podman: stderr Error: error inspecting object: no such container ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi167-buykdj\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi167.buykdj\n/bin/podman: stderr Error: error inspecting object: no such container ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi167.buykdj\nDeploy daemon haproxy.nfs.foo.smithi167.buykdj ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi167 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2023-11-30T22:59:44Z\" level=warning msg=\"failed, retrying in 1s ... (1/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-11-30T23:00:21Z\" level=warning msg=\"failed, retrying in 1s ... (2/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-11-30T23:00:59Z\" level=warning msg=\"failed, retrying in 1s ... (3/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: Error determining manifest MIME type for docker://haproxy:2.3: Error reading manifest sha256:058f434330f13dbbc46761f3e9a76af2408e9ec1898c9ac5a8baf00b42e756a9 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi167 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-11-30T23:04:36.497929Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi038.fwcakz on smithi038: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi038-fwcakz\n/bin/podman: stderr Error: error inspecting object: no such container ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi038-fwcakz\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi038.fwcakz\n/bin/podman: stderr Error: error inspecting object: no such container ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi038.fwcakz\nDeploy daemon haproxy.nfs.foo.smithi038.fwcakz ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi038 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2023-11-30T23:02:44Z\" level=warning msg=\"failed, retrying in 1s ... (1/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-11-30T23:03:21Z\" level=warning msg=\"failed, retrying in 1s ... (2/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-11-30T23:03:58Z\" level=warning msg=\"failed, retrying in 1s ... (3/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi038 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-11-30T23:04:36.502614Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi038.flofui on smithi038: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2023-11-30T23:04:36.503792Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi167.dxieha on smithi167: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2023-11-30T23:07:14.865206Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi167.igxkgw on smithi167: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi167-igxkgw\n/bin/podman: stderr Error: error inspecting object: no such container ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi167-igxkgw\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi167.igxkgw\n/bin/podman: stderr Error: error inspecting object: no such container ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi167.igxkgw\nDeploy daemon haproxy.nfs.foo.smithi167.igxkgw ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi167 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2023-11-30T23:05:21Z\" level=warning msg=\"failed, retrying in 1s ... (1/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-11-30T23:05:59Z\" level=warning msg=\"failed, retrying in 1s ... (2/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-11-30T23:06:37Z\" level=warning msg=\"failed, retrying in 1s ... (3/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi167 -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": 9049, "virtual_ip": "10.0.31.38/16"}, "status": {"created": "2023-11-30T22:58:56.312786Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.38/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2023-11-30T22:54:41.668043Z", "last_refresh": "2023-11-30T23:04:39.558331Z", "running": 2, "size": 2}}, {"events": ["2023-11-30T22:55:50.759225Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi038:172.21.15.38=smithi038", "smithi167:172.21.15.167=smithi167"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2023-11-30T22:55:50.756456Z", "last_refresh": "2023-11-30T23:04:39.558407Z", "running": 2, "size": 2}}, {"events": ["2023-11-30T22:58:56.311581Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2023-11-30T22:58:56.308071Z", "last_refresh": "2023-11-30T23:04:43.743907Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2023-11-30T22:54:46.136630Z", "last_refresh": "2023-11-30T23:04:39.558478Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2023-11-30T22:56:33.258058Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2023-11-30T22:56:33.253117Z", "last_refresh": "2023-11-30T23:04:39.558544Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2023-11-30T22:54:43.949497Z", "last_refresh": "2023-11-30T23:04:43.743520Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2023-11-30T22:58:52.105721Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2023-11-30T22:58:59.793467Z", "last_refresh": "2023-11-30T23:04:39.558809Z", "ports": [8800], "running": 2, "size": 2}}] 2023-11-30T23:09:42.636 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2023-11-30T23:09:43.024 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:09:42 smithi038 conmon[81956]: audit 2023-11-30T23:09:42.161126 2023-11-30T23:09:43.024 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:09:42 smithi038 conmon[81956]: +0000 mgr.smithi038.ldalxq (mgr.14182) 695 : audit [DBG] from='client.15376 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-11-30T23:09:43.024 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:09:42 smithi038 conmon[81956]: cluster 2023-11-30T23:09:42.661068+0000 mgr.smithi038.ldalxq (mgr.14182) 696 : cluster [DBG] pgmap v467: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2023-11-30T23:09:43.262 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:09:42 smithi167 conmon[87022]: audit 2023-11-30T23:09:42.161126+0000 mgr.smithi038.ldalxq (mgr.14182) 695 : audit [DBG] from='client.15376 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-11-30T23:09:43.262 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:09:42 smithi167 conmon[87022]: 2023-11-30T23:09:43.262 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:09:42 smithi167 conmon[87022]: cluster 2023-11-30T23:09:42.661068+0000 mgr.smithi038.ldalxq (mgr.14182) 696 : cluster [DBG] pgmap v467: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2023-11-30T23:09:43.637 DEBUG:teuthology.orchestra.run.smithi038:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:0dc074ce0b0b3b4f393f56dd32ef36884ebf45a9 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 3faf8b00-8fd3-11ee-95a2-87774f69a715 -- ceph orch ls -f json 2023-11-30T23:09:44.774 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:09:44 smithi038 conmon[81956]: cluster 2023-11-30T23:09:44.661781+0000 2023-11-30T23:09:44.774 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:09:44 smithi038 conmon[81956]: mgr.smithi038.ldalxq (mgr.14182) 697 : cluster [DBG] pgmap v468: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2023-11-30T23:09:45.011 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:09:44 smithi167 conmon[87022]: cluster 2023-11-30T23:09:44.661781+0000 mgr.smithi038.ldalxq (mgr.14182) 697 : cluster [DBG] pgmap v468: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2023-11-30T23:09:45.012 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:09:44 smithi167 conmon[87022]: 2023-11-30T23:09:45.367 INFO:teuthology.orchestra.run.smithi038.stdout: 2023-11-30T23:09:45.367 INFO:teuthology.orchestra.run.smithi038.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2023-11-30T22:54:47.122758Z", "last_refresh": "2023-11-30T23:04:43.743252Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2023-11-30T22:54:42.674972Z", "last_refresh": "2023-11-30T23:04:39.558186Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2023-11-30T22:54:45.114633Z", "last_refresh": "2023-11-30T23:04:43.743389Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2023-11-30T23:04:36.503792Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi167.dxieha on smithi167: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2023-11-30T23:07:14.865206Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi167.igxkgw on smithi167: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi167-igxkgw\n/bin/podman: stderr Error: error inspecting object: no such container ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi167-igxkgw\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi167.igxkgw\n/bin/podman: stderr Error: error inspecting object: no such container ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi167.igxkgw\nDeploy daemon haproxy.nfs.foo.smithi167.igxkgw ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi167 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2023-11-30T23:05:21Z\" level=warning msg=\"failed, retrying in 1s ... (1/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-11-30T23:05:59Z\" level=warning msg=\"failed, retrying in 1s ... (2/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-11-30T23:06:37Z\" level=warning msg=\"failed, retrying in 1s ... (3/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi167 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-11-30T23:09:45.061230Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi038.ubrlmp on smithi038: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi038-ubrlmp\n/bin/podman: stderr Error: error inspecting object: no such container ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi038-ubrlmp\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi038.ubrlmp\n/bin/podman: stderr Error: error inspecting object: no such container ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi038.ubrlmp\nDeploy daemon haproxy.nfs.foo.smithi038.ubrlmp ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi038 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2023-11-30T23:07:52Z\" level=warning msg=\"failed, retrying in 1s ... (1/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-11-30T23:08:30Z\" level=warning msg=\"failed, retrying in 1s ... (2/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-11-30T23:09:07Z\" level=warning msg=\"failed, retrying in 1s ... (3/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi038 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-11-30T23:09:45.062547Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi038.vjkntq on smithi038: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2023-11-30T23:09:45.063688Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi167.ndkqyv on smithi167: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.38/16"}, "status": {"created": "2023-11-30T22:58:56.312786Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.38/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2023-11-30T22:54:41.668043Z", "last_refresh": "2023-11-30T23:04:39.558331Z", "running": 2, "size": 2}}, {"events": ["2023-11-30T22:55:50.759225Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi038:172.21.15.38=smithi038", "smithi167:172.21.15.167=smithi167"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2023-11-30T22:55:50.756456Z", "last_refresh": "2023-11-30T23:04:39.558407Z", "running": 2, "size": 2}}, {"events": ["2023-11-30T22:58:56.311581Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2023-11-30T22:58:56.308071Z", "last_refresh": "2023-11-30T23:04:43.743907Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2023-11-30T22:54:46.136630Z", "last_refresh": "2023-11-30T23:04:39.558478Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2023-11-30T22:56:33.258058Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2023-11-30T22:56:33.253117Z", "last_refresh": "2023-11-30T23:04:39.558544Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2023-11-30T22:54:43.949497Z", "last_refresh": "2023-11-30T23:04:43.743520Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2023-11-30T22:58:52.105721Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2023-11-30T22:58:59.793467Z", "last_refresh": "2023-11-30T23:04:39.558809Z", "ports": [8800], "running": 2, "size": 2}}] 2023-11-30T23:09:45.795 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2023-11-30T23:09:46.024 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:09:45 smithi038 conmon[81956]: cephadm 2023-11-30T 2023-11-30T23:09:46.025 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:09:45 smithi038 conmon[81956]: 23:09:45.060137+0000 mgr.smithi038.ldalxq (mgr.14182) 698 : cephadm [ERR] cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi038-ubrlmp 2023-11-30T23:09:46.025 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:09:45 smithi038 conmon[81956]: /bin/podman: stderr Error: error inspecting object: no such container ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi038-ubrlmp 2023-11-30T23:09:46.025 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:09:45 smithi038 conmon[81956]: Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi038.ubrlmp 2023-11-30T23:09:46.025 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:09:45 smithi038 conmon[81956]: /bin/podman: stderr Error: error inspecting object: no such container ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi038.ubrlmp 2023-11-30T23:09:46.025 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:09:45 smithi038 conmon[81956]: Deploy daemon haproxy.nfs.foo.smithi038.ubrlmp ... 2023-11-30T23:09:46.025 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:09:45 smithi038 conmon[81956]: Non-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi038 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2023-11-30T23:09:46.025 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:09:45 smithi038 conmon[81956]: stat: stderr Trying to pull docker.io/library/haproxy:2.3... 2023-11-30T23:09:46.025 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:09:45 smithi038 conmon[81956]: stat: stderr time="2023-11-30T23:07:52Z" level=warning msg="failed, retrying in 1s ... (1/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit" 2023-11-30T23:09:46.025 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:09:45 smithi038 conmon[81956]: stat: stderr time="2023-11-30T23:08:30Z" level=warning msg="failed, retrying in 1s ... (2/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit" 2023-11-30T23:09:46.025 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:09:45 smithi038 conmon[81956]: stat: stderr time="2023-11-30T23:09:07Z" level=warning msg="failed, retrying in 1s ... (3/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit" 2023-11-30T23:09:46.025 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:09:45 smithi038 conmon[81956]: stat: stderr Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get "https://docker-mirror.front.sepia.ceph.com:5000/v2/": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit 2023-11-30T23:09:46.025 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:09:45 smithi038 conmon[81956]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi038 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2023-11-30T23:09:46.026 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:09:45 smithi038 conmon[81956]: Traceback (most recent call last): 2023-11-30T23:09:46.026 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:09:45 smithi038 conmon[81956]: File "/usr/share/ceph/mgr/cephadm/serve.py", line 1538, in _remote_connection 2023-11-30T23:09:46.026 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:09:45 smithi038 conmon[81956]: yield (conn, connr) 2023-11-30T23:09:46.026 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:09:45 smithi038 conmon[81956]: File "/usr/share/ceph/mgr/cephadm/serve.py", line 1426, in _run_cephadm 2023-11-30T23:09:46.026 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:09:45 smithi038 conmon[81956]: code, '\n'.join(err))) 2023-11-30T23:09:46.026 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:09:45 smithi038 conmon[81956]: orchestrator._interface.OrchestratorError: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi038-ubrlmp 2023-11-30T23:09:46.026 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:09:45 smithi038 conmon[81956]: /bin/podman: stderr Error: error inspecting object: no such container ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi038-ubrlmp 2023-11-30T23:09:46.026 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:09:45 smithi038 conmon[81956]: Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi038.ubrlmp 2023-11-30T23:09:46.026 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:09:45 smithi038 conmon[81956]: /bin/podman: stderr Error: error inspecting object: no such container ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi038.ubrlmp 2023-11-30T23:09:46.026 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:09:45 smithi038 conmon[81956]: Deploy daemon haproxy.nfs.foo.smithi038.ubrlmp ... 2023-11-30T23:09:46.026 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:09:45 smithi038 conmon[81956]: Non-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi038 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2023-11-30T23:09:46.027 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:09:45 smithi038 conmon[81956]: stat: stderr Trying to pull docker.io/library/haproxy:2.3... 2023-11-30T23:09:46.027 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:09:45 smithi038 conmon[81956]: stat: stderr time="2023-11-30T23:07:52Z" level=warning msg="failed, retrying in 1s ... (1/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit" 2023-11-30T23:09:46.027 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:09:45 smithi038 conmon[81956]: stat: stderr time="2023-11-30T23:08:30Z" level=warning msg="failed, retrying in 1s ... (2/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit" 2023-11-30T23:09:46.027 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:09:45 smithi038 conmon[81956]: stat: stderr time="2023-11-30T23:09:07Z" level=warning msg="failed, retrying in 1s ... (3/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit" 2023-11-30T23:09:46.027 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:09:45 smithi038 conmon[81956]: stat: stderr Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get "https://docker-mirror.front.sepia.ceph.com:5000/v2/": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit 2023-11-30T23:09:46.027 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:09:45 smithi038 conmon[81956]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi038 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy 2023-11-30T23:09:46.027 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:09:45 smithi038 conmon[81956]: :2.3 -c %u %g /var/lib 2023-11-30T23:09:46.027 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:09:45 smithi038 conmon[81956]: cephadm 2023-11-30T23:09:45.060308+0000 mgr.smithi038.ldalxq (mgr.14182) 699 : cephadm [INF] Removing key for client.ingress.nfs.foo.smithi038.ubrlmp 2023-11-30T23:09:46.027 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:09:45 smithi038 conmon[81956]: audit 2023-11-30T23:09:45.060638+0000 mon.smithi038 (mon.0) 688 : audit [INF] from='mgr.14182 172.21.15.38:0/2999689707' entity='mgr.smithi038.ldalxq' cmd=[{"prefix": "auth rm", "entity": "client.ingress.nfs.foo.smithi038.ubrlmp"}]: dispatch 2023-11-30T23:09:46.027 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:09:45 smithi038 conmon[81956]: cephadm 2023-11-30T23:09:45.061331+0000 mgr.smithi038.ldalxq (mgr.14182) 700 : cephadm [ERR] Failed while placing haproxy.nfs.foo.smithi038.ubrlmp on smithi038: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi038-ubrlmp 2023-11-30T23:09:46.027 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:09:45 smithi038 conmon[81956]: /bin/podman: stderr Error: error inspecting object: no such container ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi038-ubrlmp 2023-11-30T23:09:46.028 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:09:45 smithi038 conmon[81956]: Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi038.ubrlmp 2023-11-30T23:09:46.028 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:09:45 smithi038 conmon[81956]: /bin/podman: stderr Error: error inspecting object: no such container ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi038.ubrlmp 2023-11-30T23:09:46.028 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:09:45 smithi038 conmon[81956]: Deploy daemon haproxy.nfs.foo.smithi038.ubrlmp ... 2023-11-30T23:09:46.028 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:09:45 smithi038 conmon[81956]: Non-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi038 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2023-11-30T23:09:46.028 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:09:45 smithi038 conmon[81956]: stat: stderr Trying to pull docker.io/library/haproxy:2.3... 2023-11-30T23:09:46.028 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:09:45 smithi038 conmon[81956]: stat: stderr time="2023-11-30T23:07:52Z" level=warning msg="failed, retrying in 1s ... (1/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit" 2023-11-30T23:09:46.028 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:09:45 smithi038 conmon[81956]: stat: stderr time="2023-11-30T23:08:30Z" level=warning msg="failed, retrying in 1s ... (2/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit" 2023-11-30T23:09:46.028 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:09:45 smithi038 conmon[81956]: stat: stderr time="2023-11-30T23:09:07Z" level=warning msg="failed, retrying in 1s ... (3/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit" 2023-11-30T23:09:46.028 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:09:45 smithi038 conmon[81956]: stat: stderr Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get "https://docker-mirror.front.sepia.ceph.com:5000/v2/": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit 2023-11-30T23:09:46.028 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:09:45 smithi038 conmon[81956]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi038 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2023-11-30T23:09:46.029 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:09:45 smithi038 conmon[81956]: cephadm 2023-11-30T23:09:45.062635+0000 mgr.smithi038.ldalxq (mgr.14182) 701 : 2023-11-30T23:09:46.029 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:09:45 smithi038 conmon[81956]: cephadm [ERR] Failed while placing keepalived.nfs.foo.smithi038.vjkntq on smithi038: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo 2023-11-30T23:09:46.029 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:09:45 smithi038 conmon[81956]: cephadm 2023-11-30T23:09:45.063771+0000 mgr.smithi038.ldalxq (mgr.14182) 702 : cephadm [ERR] Failed while placing keepalived.nfs.foo.smithi167.ndkqyv on smithi167: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo 2023-11-30T23:09:46.029 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:09:45 smithi038 conmon[81956]: cluster 2023-11-30T23:09 2023-11-30T23:09:46.029 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:09:45 smithi038 conmon[81956]: :45.064676+0000 mgr.smithi038.ldalxq (mgr.14182) 703 : cluster 2023-11-30T23:09:46.029 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:09:45 smithi038 conmon[81956]: [DBG] pgmap v469: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 98 B/s rd, 0 op/s 2023-11-30T23:09:46.029 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:09:45 smithi038 conmon[81956]: audit 2023-11-30 2023-11-30T23:09:46.029 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:09:45 smithi038 conmon[81956]: T23:09:45.068349+0000 mon.smithi038 (mon 2023-11-30T23:09:46.029 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:09:45 smithi038 conmon[81956]: .0) 689 : audit [DBG] from='mgr.14182 172.21.15.38:0/2999689707' entity='mgr.smithi038.ldalxq' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2023-11-30T23:09:46.029 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:09:45 smithi038 conmon[81956]: audit 2023-11-30 2023-11-30T23:09:46.029 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:09:45 smithi038 conmon[81956]: T23:09:45.362862+0000 mgr.smithi038.ldalxq (mgr.14182 2023-11-30T23:09:46.029 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:09:45 smithi038 conmon[81956]: ) 704 : audit [DBG] from='client.15380 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-11-30T23:09:46.030 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:09:45 smithi038 conmon[81956]: audit 2023-11- 2023-11-30T23:09:46.030 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:09:45 smithi038 conmon[81956]: 30T23:09:45.426273+0000 mon.smithi038 ( 2023-11-30T23:09:46.030 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:09:45 smithi038 conmon[81956]: mon.0) 690 : audit [INF] from='mgr.14182 172.21.15.38:0/2999689707' entity='mgr.smithi038.ldalxq' 2023-11-30T23:09:46.030 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:09:45 smithi038 conmon[81956]: audit 2023 2023-11-30T23:09:46.030 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:09:45 smithi038 conmon[81956]: -11-30T23:09:45.431459+0000 2023-11-30T23:09:46.030 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:09:45 smithi038 conmon[81956]: mon.smithi038 (mon.0) 691 : audit [INF] 2023-11-30T23:09:46.030 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:09:45 smithi038 conmon[81956]: from='mgr.14182 172.21.15.38:0/2999689707' entity='mgr.smithi038.ldalxq' 2023-11-30T23:09:46.262 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:09:45 smithi167 conmon[87022]: cephadm 2023-11-30T23:09:45.060137+0000 mgr.smithi038.ldalxq ( 2023-11-30T23:09:46.263 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:09:45 smithi167 conmon[87022]: mgr.14182) 698 : cephadm [ERR] cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi038-ubrlmp 2023-11-30T23:09:46.263 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:09:45 smithi167 conmon[87022]: /bin/podman: stderr Error: error inspecting object: no such container ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi038-ubrlmp 2023-11-30T23:09:46.263 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:09:45 smithi167 conmon[87022]: Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi038.ubrlmp 2023-11-30T23:09:46.263 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:09:45 smithi167 conmon[87022]: /bin/podman: stderr Error: error inspecting object: no such container ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi038.ubrlmp 2023-11-30T23:09:46.263 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:09:45 smithi167 conmon[87022]: Deploy daemon haproxy.nfs.foo.smithi038.ubrlmp ... 2023-11-30T23:09:46.264 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:09:45 smithi167 conmon[87022]: Non-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi038 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2023-11-30T23:09:46.264 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:09:45 smithi167 conmon[87022]: stat: stderr Trying to pull docker.io/library/haproxy:2.3... 2023-11-30T23:09:46.264 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:09:45 smithi167 conmon[87022]: stat: stderr time="2023-11-30T23:07:52Z" level=warning msg="failed, retrying in 1s ... (1/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit" 2023-11-30T23:09:46.264 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:09:45 smithi167 conmon[87022]: stat: stderr time="2023-11-30T23:08:30Z" level=warning msg="failed, retrying in 1s ... (2/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit" 2023-11-30T23:09:46.264 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:09:45 smithi167 conmon[87022]: stat: stderr time="2023-11-30T23:09:07Z" level=warning msg="failed, retrying in 1s ... (3/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit" 2023-11-30T23:09:46.264 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:09:45 smithi167 conmon[87022]: stat: stderr Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get "https://docker-mirror.front.sepia.ceph.com:5000/v2/": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit 2023-11-30T23:09:46.264 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:09:45 smithi167 conmon[87022]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi038 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2023-11-30T23:09:46.265 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:09:45 smithi167 conmon[87022]: Traceback (most recent call last): 2023-11-30T23:09:46.265 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:09:45 smithi167 conmon[87022]: File "/usr/share/ceph/mgr/cephadm/serve.py", line 1538, in _remote_connection 2023-11-30T23:09:46.265 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:09:45 smithi167 conmon[87022]: yield (conn, connr) 2023-11-30T23:09:46.265 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:09:45 smithi167 conmon[87022]: File "/usr/share/ceph/mgr/cephadm/serve.py", line 1426, in _run_cephadm 2023-11-30T23:09:46.265 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:09:45 smithi167 conmon[87022]: code, '\n'.join(err))) 2023-11-30T23:09:46.265 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:09:45 smithi167 conmon[87022]: orchestrator._interface.OrchestratorError: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi038-ubrlmp 2023-11-30T23:09:46.266 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:09:45 smithi167 conmon[87022]: /bin/podman: stderr Error: error inspecting object: no such container ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi038-ubrlmp 2023-11-30T23:09:46.266 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:09:45 smithi167 conmon[87022]: Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi038.ubrlmp 2023-11-30T23:09:46.266 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:09:45 smithi167 conmon[87022]: /bin/podman: stderr Error: error inspecting object: no such container ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi038.ubrlmp 2023-11-30T23:09:46.266 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:09:45 smithi167 conmon[87022]: Deploy daemon haproxy.nfs.foo.smithi038.ubrlmp ... 2023-11-30T23:09:46.266 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:09:45 smithi167 conmon[87022]: Non-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi038 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2023-11-30T23:09:46.266 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:09:45 smithi167 conmon[87022]: stat: stderr Trying to pull docker.io/library/haproxy:2.3... 2023-11-30T23:09:46.267 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:09:45 smithi167 conmon[87022]: stat: stderr time="2023-11-30T23:07:52Z" level=warning msg="failed, retrying in 1s ... (1/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit" 2023-11-30T23:09:46.267 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:09:45 smithi167 conmon[87022]: stat: stderr time="2023-11-30T23:08:30Z" level=warning msg="failed, retrying in 1s ... (2/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit" 2023-11-30T23:09:46.267 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:09:45 smithi167 conmon[87022]: stat: stderr time="2023-11-30T23:09:07Z" level=warning msg="failed, retrying in 1s ... (3/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit" 2023-11-30T23:09:46.267 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:09:45 smithi167 conmon[87022]: stat: stderr Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get "https://docker-mirror.front.sepia.ceph.com:5000/v2/": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit 2023-11-30T23:09:46.267 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:09:45 smithi167 conmon[87022]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi038 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2023-11-30T23:09:46.268 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:09:45 smithi167 conmon[87022]: cephadm 2023-11-30T2 2023-11-30T23:09:46.268 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:09:45 smithi167 conmon[87022]: 3:09:45.060308+0000 mgr.smithi038.ldalxq (mgr.14182) 699 : cephadm [INF] Removing key for client.ingress.nfs.foo.smithi038.ubrlmp 2023-11-30T23:09:46.268 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:09:45 smithi167 conmon[87022]: audit 2023-11-30T23:09:45.060638+0000 mon.smithi038 (mon.0) 688 : audit [INF] from='mgr.14182 172.21.15.38:0/2999689707' entity='mgr.smithi038.ldalxq' cmd=[{"prefix": "auth rm", "entity": "client.ingress.nfs.foo.smithi038.ubrlmp"}]: dispatch 2023-11-30T23:09:46.268 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:09:45 smithi167 conmon[87022]: cephadm 2023-11-30T23:09:45.061331+0000 mgr.smithi038.ldalxq (mgr.14182) 700 : cephadm [ERR] Failed while placing haproxy.nfs.foo.smithi038.ubrlmp on smithi038: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi038-ubrlmp 2023-11-30T23:09:46.268 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:09:45 smithi167 conmon[87022]: /bin/podman: stderr Error: error inspecting object: no such container ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi038-ubrlmp 2023-11-30T23:09:46.268 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:09:45 smithi167 conmon[87022]: Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi038.ubrlmp 2023-11-30T23:09:46.269 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:09:45 smithi167 conmon[87022]: /bin/podman: stderr Error: error inspecting object: no such container ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi038.ubrlmp 2023-11-30T23:09:46.269 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:09:45 smithi167 conmon[87022]: Deploy daemon haproxy.nfs.foo.smithi038.ubrlmp ... 2023-11-30T23:09:46.269 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:09:45 smithi167 conmon[87022]: Non-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi038 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2023-11-30T23:09:46.269 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:09:45 smithi167 conmon[87022]: stat: stderr Trying to pull docker.io/library/haproxy:2.3... 2023-11-30T23:09:46.269 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:09:45 smithi167 conmon[87022]: stat: stderr time="2023-11-30T23:07:52Z" level=warning msg="failed, retrying in 1s ... (1/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit" 2023-11-30T23:09:46.269 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:09:45 smithi167 conmon[87022]: stat: stderr time="2023-11-30T23:08:30Z" level=warning msg="failed, retrying in 1s ... (2/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit" 2023-11-30T23:09:46.269 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:09:45 smithi167 conmon[87022]: stat: stderr time="2023-11-30T23:09:07Z" level=warning msg="failed, retrying in 1s ... (3/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit" 2023-11-30T23:09:46.270 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:09:45 smithi167 conmon[87022]: stat: stderr Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get "https://docker-mirror.front.sepia.ceph.com:5000/v2/": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit 2023-11-30T23:09:46.270 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:09:45 smithi167 conmon[87022]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi038 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2023-11-30T23:09:46.270 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:09:45 smithi167 conmon[87022]: cephadm 2023-11-30T23:09:45.062635+0000 mgr.smithi038.ldalxq (mgr.14182) 701 : cephadm [ERR] Failed while placing keepalived.nfs.foo.smithi038.vjkntq on smithi038: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo 2023-11-30T23:09:46.270 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:09:45 smithi167 conmon[87022]: cephadm 2023-11-30T23:09:45.063771+0000 2023-11-30T23:09:46.270 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:09:45 smithi167 conmon[87022]: mgr.smithi038.ldalxq (mgr.14182) 702 : cephadm [ERR] Failed while placing keepalived.nfs.foo.smithi167.ndkqyv on smithi167: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo 2023-11-30T23:09:46.270 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:09:45 smithi167 conmon[87022]: cluster 2023-11-30T23:09:45.064676+0000 mgr.smithi038.ldalxq (mgr.14182) 703 : cluster [DBG] pgmap v469: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 98 B/s rd, 0 op/s 2023-11-30T23:09:46.270 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:09:45 smithi167 conmon[87022]: audit 2023-11-30T 2023-11-30T23:09:46.271 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:09:45 smithi167 conmon[87022]: 23:09:45.068349+0000 mon.smithi038 (mon.0) 689 : audit [DBG] from='mgr.14182 172.21.15.38:0/2999689707' entity='mgr.smithi038.ldalxq' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2023-11-30T23:09:46.271 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:09:45 smithi167 conmon[87022]: audit 2023-11 2023-11-30T23:09:46.271 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:09:45 smithi167 conmon[87022]: -30T23:09:45.362862+0000 mgr.smithi038.ldalxq (mgr. 2023-11-30T23:09:46.271 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:09:45 smithi167 conmon[87022]: 14182) 704 : audit [DBG] from='client.15380 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-11-30T23:09:46.271 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:09:45 smithi167 conmon[87022]: audit 2023-11 2023-11-30T23:09:46.271 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:09:45 smithi167 conmon[87022]: -30T23:09:45.426273+0000 mon.smithi038 ( 2023-11-30T23:09:46.271 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:09:45 smithi167 conmon[87022]: mon.0) 690 : audit [INF] 2023-11-30T23:09:46.272 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:09:45 smithi167 conmon[87022]: from='mgr.14182 172.21.15.38:0/2999689707' entity='mgr.smithi038.ldalxq' 2023-11-30T23:09:46.272 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:09:45 smithi167 conmon[87022]: audit 2023-11-30T23:09:46.272 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:09:45 smithi167 conmon[87022]: 2023-11-30T23:09 2023-11-30T23:09:46.272 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:09:45 smithi167 conmon[87022]: :45.431459+0000 mon.smithi038 (mon. 2023-11-30T23:09:46.272 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:09:45 smithi167 conmon[87022]: 0) 691 : audit [INF] from='mgr.14182 172.21.15.38:0/2999689707' entity='mgr.smithi038.ldalxq' 2023-11-30T23:09:46.796 DEBUG:teuthology.orchestra.run.smithi038:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:0dc074ce0b0b3b4f393f56dd32ef36884ebf45a9 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 3faf8b00-8fd3-11ee-95a2-87774f69a715 -- ceph orch ls -f json 2023-11-30T23:09:47.024 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:09:46 smithi038 conmon[81956]: cluster 2023-11-30T23:09:45.755349+0000 2023-11-30T23:09:47.024 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:09:46 smithi038 conmon[81956]: mon.smithi038 (mon.0) 692 : cluster [WRN] Health check failed: Failed to place 4 daemon(s) (CEPHADM_DAEMON_PLACE_FAIL) 2023-11-30T23:09:47.262 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:09:46 smithi167 conmon[87022]: cluster 2023-11-30T23:09:45.755349+0000 mon.smithi038 (mon. 2023-11-30T23:09:47.262 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:09:46 smithi167 conmon[87022]: 0) 692 : cluster [WRN] Health check failed: Failed to place 4 daemon(s) (CEPHADM_DAEMON_PLACE_FAIL) 2023-11-30T23:09:48.024 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:09:47 smithi038 conmon[81956]: audit 2023-11-30T23:09:46.864200+0000 mon.smithi038 (mon.0) 693 : audit [INF] from='mgr.14182 172.21.15.38:0/2999689707' entity='mgr.smithi038.ldalxq' 2023-11-30T23:09:48.024 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:09:47 smithi038 conmon[81956]: cluster 2023-11-30T23:09:47.065302+0000 mgr.smithi038.ldalxq (mgr.14182) 705 : cluster [DBG] pgmap v470: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 98 B/s rd, 0 op/s 2023-11-30T23:09:48.262 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:09:47 smithi167 conmon[87022]: audit 2023-11-30T23:09:46.864200+0000 mon.smithi038 (mon.0) 693 : audit [INF] from='mgr.14182 172.21.15.38:0/2999689707' entity='mgr.smithi038.ldalxq' 2023-11-30T23:09:48.262 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:09:47 smithi167 conmon[87022]: cluster 2023-11-30T23:09:47.065302+0000 mgr.smithi038.ldalxq (mgr.14182) 705 : cluster [DBG] pgmap v470: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 98 B/s rd, 0 op/s 2023-11-30T23:09:48.679 INFO:teuthology.orchestra.run.smithi038.stdout: 2023-11-30T23:09:48.679 INFO:teuthology.orchestra.run.smithi038.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2023-11-30T22:54:47.122758Z", "last_refresh": "2023-11-30T23:04:43.743252Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2023-11-30T22:54:42.674972Z", "last_refresh": "2023-11-30T23:04:43.743322Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2023-11-30T22:54:45.114633Z", "last_refresh": "2023-11-30T23:04:43.743389Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2023-11-30T23:04:36.503792Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi167.dxieha on smithi167: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2023-11-30T23:07:14.865206Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi167.igxkgw on smithi167: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi167-igxkgw\n/bin/podman: stderr Error: error inspecting object: no such container ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi167-igxkgw\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi167.igxkgw\n/bin/podman: stderr Error: error inspecting object: no such container ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi167.igxkgw\nDeploy daemon haproxy.nfs.foo.smithi167.igxkgw ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi167 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2023-11-30T23:05:21Z\" level=warning msg=\"failed, retrying in 1s ... (1/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-11-30T23:05:59Z\" level=warning msg=\"failed, retrying in 1s ... (2/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-11-30T23:06:37Z\" level=warning msg=\"failed, retrying in 1s ... (3/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi167 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-11-30T23:09:45.061230Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi038.ubrlmp on smithi038: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi038-ubrlmp\n/bin/podman: stderr Error: error inspecting object: no such container ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi038-ubrlmp\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi038.ubrlmp\n/bin/podman: stderr Error: error inspecting object: no such container ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi038.ubrlmp\nDeploy daemon haproxy.nfs.foo.smithi038.ubrlmp ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi038 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2023-11-30T23:07:52Z\" level=warning msg=\"failed, retrying in 1s ... (1/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-11-30T23:08:30Z\" level=warning msg=\"failed, retrying in 1s ... (2/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-11-30T23:09:07Z\" level=warning msg=\"failed, retrying in 1s ... (3/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi038 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-11-30T23:09:45.062547Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi038.vjkntq on smithi038: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2023-11-30T23:09:45.063688Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi167.ndkqyv on smithi167: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.38/16"}, "status": {"created": "2023-11-30T22:58:56.312786Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.38/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2023-11-30T22:54:41.668043Z", "last_refresh": "2023-11-30T23:04:43.743172Z", "running": 2, "size": 2}}, {"events": ["2023-11-30T22:55:50.759225Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi038:172.21.15.38=smithi038", "smithi167:172.21.15.167=smithi167"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2023-11-30T22:55:50.756456Z", "last_refresh": "2023-11-30T23:04:43.743023Z", "running": 2, "size": 2}}, {"events": ["2023-11-30T22:58:56.311581Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2023-11-30T22:58:56.308071Z", "last_refresh": "2023-11-30T23:04:43.743907Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2023-11-30T22:54:46.136630Z", "last_refresh": "2023-11-30T23:04:43.743455Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2023-11-30T22:56:33.258058Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2023-11-30T22:56:33.253117Z", "last_refresh": "2023-11-30T23:04:43.743585Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2023-11-30T22:54:43.949497Z", "last_refresh": "2023-11-30T23:04:43.743520Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2023-11-30T22:58:52.105721Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2023-11-30T22:58:59.793467Z", "last_refresh": "2023-11-30T23:04:43.743842Z", "ports": [8800], "running": 2, "size": 2}}] 2023-11-30T23:09:49.188 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2023-11-30T23:09:49.762 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:09:49 smithi167 conmon[87022]: audit 2023-11-30T23:09:48.462793+0000 mon.smithi038 (mon.0) 694 : audit [INF] from='mgr.14182 172.21.15.38:0/2999689707' entity='mgr.smithi038.ldalxq' 2023-11-30T23:09:49.762 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:09:49 smithi167 conmon[87022]: 2023-11-30T23:09:49.762 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:09:49 smithi167 conmon[87022]: audit 2023-11-30T23:09:48.675175+0000 mgr.smithi038.ldalxq (mgr.14182) 706 : audit [DBG] from='client.15384 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-11-30T23:09:49.762 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:09:49 smithi167 conmon[87022]: audit 2023-11-30T23:09:48.859661+0000 mon.smithi038 (mon.0) 695 : audit [INF] from='mgr.14182 172.21.15.38:0/2999689707' entity='mgr.smithi038.ldalxq' cmd=[{"prefix": "config rm", "who": "osd.0", "name": "osd_memory_target"}]: dispatch 2023-11-30T23:09:49.762 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:09:49 smithi167 conmon[87022]: audit 2023-11-30T23:09:48.860340+0000 mon.smithi038 (mon.0) 696 : audit [INF] from='mgr.14182 172.21.15.38:0/2999689707' entity='mgr.smithi038.ldalxq' cmd=[{"prefix": "config rm", "who": "osd.2", "name": "osd_memory_target"}]: dispatch 2023-11-30T23:09:49.762 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:09:49 smithi167 conmon[87022]: audit 2023-11-30T23:09:48.860941+0000 mon.smithi038 (mon.0) 697 : audit [INF] from='mgr.14182 172.21.15.38:0/2999689707' entity='mgr.smithi038.ldalxq' cmd=[{"prefix": "config rm", "who": "osd.4", "name": "osd_memory_target"}]: dispatch 2023-11-30T23:09:49.763 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:09:49 smithi167 conmon[87022]: audit 2023-11-30T23:09:48.861499+0000 mon.smithi038 (mon.0) 698 : audit [INF] from='mgr.14182 172.21.15.38:0/2999689707' entity='mgr.smithi038.ldalxq' cmd=[{"prefix": "config rm", "who": "osd.6", "name": "osd_memory_target"}]: dispatch 2023-11-30T23:09:49.763 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:09:49 smithi167 conmon[87022]: audit 2023-11-30T23:09:48 2023-11-30T23:09:49.763 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:09:49 smithi167 conmon[87022]: .870247+0000 mon.smithi038 (mon.0) 699 : audit [INF] from='mgr.14182 172.21.15.38:0/2999689707' entity='mgr.smithi038.ldalxq' 2023-11-30T23:09:49.774 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:09:49 smithi038 conmon[81956]: audit 2023-11-30T23: 2023-11-30T23:09:49.774 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:09:49 smithi038 conmon[81956]: 09:48.462793+0000 mon.smithi038 (mon.0) 694 : audit [INF] from='mgr.14182 172.21.15.38:0/2999689707' entity='mgr.smithi038.ldalxq' 2023-11-30T23:09:49.774 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:09:49 smithi038 conmon[81956]: audit 2023-11-30T23:09:48 2023-11-30T23:09:49.774 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:09:49 smithi038 conmon[81956]: .675175+0000 mgr.smithi038.ldalxq (mgr.14182) 706 : audit [DBG] from='client.15384 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-11-30T23:09:49.774 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:09:49 smithi038 conmon[81956]: audit 2023-11-30T23:09:49.774 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:09:49 smithi038 conmon[81956]: 2023-11-30T23:09 2023-11-30T23:09:49.774 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:09:49 smithi038 conmon[81956]: :48.859661+0000 mon.smithi038 (mon.0) 695 2023-11-30T23:09:49.775 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:09:49 smithi038 conmon[81956]: : audit [INF] from='mgr.14182 172.21.15.38:0/2999689707' entity='mgr.smithi038.ldalxq' cmd=[{"prefix": "config rm", "who": "osd.0", "name": "osd_memory_target"}]: dispatch 2023-11-30T23:09:49.775 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:09:49 smithi038 conmon[81956]: audit 2023-11-30T 2023-11-30T23:09:49.775 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:09:49 smithi038 conmon[81956]: 23:09:48.860340+0000 mon.smithi038 (mon. 2023-11-30T23:09:49.775 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:09:49 smithi038 conmon[81956]: 0) 696 : audit [INF] from='mgr.14182 172.21.15.38:0/2999689707' entity='mgr.smithi038.ldalxq' cmd=[{"prefix": "config rm", "who": "osd.2", "name": "osd_memory_target"}]: dispatch 2023-11-30T23:09:49.775 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:09:49 smithi038 conmon[81956]: audit 2023- 2023-11-30T23:09:49.775 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:09:49 smithi038 conmon[81956]: 11-30T23:09:48.860941+0000 2023-11-30T23:09:49.775 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:09:49 smithi038 conmon[81956]: mon.smithi038 (mon.0) 697 : audit [INF] 2023-11-30T23:09:49.775 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:09:49 smithi038 conmon[81956]: from='mgr.14182 172.21.15.38:0/2999689707' entity='mgr.smithi038.ldalxq' cmd=[{"prefix": "config rm", "who": "osd.4", "name": "osd_memory_target"}]: dispatch 2023-11-30T23:09:49.775 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:09:49 smithi038 conmon[81956]: audit 2023-11-30T23:09:49.775 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:09:49 smithi038 conmon[81956]: 2023-11-30T23:09:48.861499+0000 mon.smithi038 2023-11-30T23:09:49.775 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:09:49 smithi038 conmon[81956]: (mon.0) 698 : audit [INF] from='mgr.14182 172.21.15.38:0/2999689707' entity='mgr.smithi038.ldalxq' cmd=[{"prefix": "config rm", "who": "osd.6", "name": "osd_memory_target"}]: dispatch 2023-11-30T23:09:49.775 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:09:49 smithi038 conmon[81956]: audit 2023 2023-11-30T23:09:49.776 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:09:49 smithi038 conmon[81956]: -11-30T23:09:48.870247 2023-11-30T23:09:49.776 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:09:49 smithi038 conmon[81956]: +0000 mon.smithi038 (mon.0) 699 : audit 2023-11-30T23:09:49.776 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:09:49 smithi038 conmon[81956]: [INF] from='mgr.14182 172.21.15.38:0/2999689707' entity='mgr.smithi038.ldalxq' 2023-11-30T23:09:50.189 DEBUG:teuthology.orchestra.run.smithi038:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:0dc074ce0b0b3b4f393f56dd32ef36884ebf45a9 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 3faf8b00-8fd3-11ee-95a2-87774f69a715 -- ceph orch ls -f json 2023-11-30T23:09:50.467 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:09:50 smithi038 conmon[81956]: cephadm 2023-11-30T23:09:48.861967+0000 mgr.smithi038.ldalxq (mgr. 2023-11-30T23:09:50.467 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:09:50 smithi038 conmon[81956]: 14182) 707 : cephadm [INF] Adjusting osd_memory_target on smithi167 to 3748M 2023-11-30T23:09:50.762 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:09:50 smithi167 conmon[87022]: cephadm 2023-11-30T23:09:48.861967+0000 mgr.smithi038.ldalxq (mgr.14182) 707 : cephadm [INF] Adjusting osd_memory_target on smithi167 to 3748M 2023-11-30T23:09:50.763 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:09:50 smithi167 conmon[87022]: cluster 2023-11-30T23:09:50.763 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:09:50 smithi167 conmon[87022]: 2023-11-30T23:09:49.065993+0000 mgr.smithi038.ldalxq (mgr.14182) 708 : cluster [DBG] pgmap v471: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 98 B/s rd, 0 op/s 2023-11-30T23:09:50.773 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:09:50 smithi038 conmon[81956]: cluster 2023-11-30T23:09:49.065993+0000 mgr.smithi038.ldalxq (mgr.14182) 708 : cluster [DBG] pgmap v471: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 98 B/s rd, 0 op/s 2023-11-30T23:09:52.115 INFO:teuthology.orchestra.run.smithi038.stdout: 2023-11-30T23:09:52.115 INFO:teuthology.orchestra.run.smithi038.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2023-11-30T22:54:47.122758Z", "last_refresh": "2023-11-30T23:04:43.743252Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2023-11-30T22:54:42.674972Z", "last_refresh": "2023-11-30T23:04:43.743322Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2023-11-30T22:54:45.114633Z", "last_refresh": "2023-11-30T23:04:43.743389Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2023-11-30T23:04:36.503792Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi167.dxieha on smithi167: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2023-11-30T23:07:14.865206Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi167.igxkgw on smithi167: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi167-igxkgw\n/bin/podman: stderr Error: error inspecting object: no such container ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi167-igxkgw\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi167.igxkgw\n/bin/podman: stderr Error: error inspecting object: no such container ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi167.igxkgw\nDeploy daemon haproxy.nfs.foo.smithi167.igxkgw ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi167 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2023-11-30T23:05:21Z\" level=warning msg=\"failed, retrying in 1s ... (1/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-11-30T23:05:59Z\" level=warning msg=\"failed, retrying in 1s ... (2/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-11-30T23:06:37Z\" level=warning msg=\"failed, retrying in 1s ... (3/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi167 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-11-30T23:09:45.061230Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi038.ubrlmp on smithi038: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi038-ubrlmp\n/bin/podman: stderr Error: error inspecting object: no such container ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi038-ubrlmp\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi038.ubrlmp\n/bin/podman: stderr Error: error inspecting object: no such container ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi038.ubrlmp\nDeploy daemon haproxy.nfs.foo.smithi038.ubrlmp ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi038 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2023-11-30T23:07:52Z\" level=warning msg=\"failed, retrying in 1s ... (1/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-11-30T23:08:30Z\" level=warning msg=\"failed, retrying in 1s ... (2/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-11-30T23:09:07Z\" level=warning msg=\"failed, retrying in 1s ... (3/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi038 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-11-30T23:09:45.062547Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi038.vjkntq on smithi038: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2023-11-30T23:09:45.063688Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi167.ndkqyv on smithi167: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.38/16"}, "status": {"created": "2023-11-30T22:58:56.312786Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.38/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2023-11-30T22:54:41.668043Z", "last_refresh": "2023-11-30T23:04:43.743172Z", "running": 2, "size": 2}}, {"events": ["2023-11-30T22:55:50.759225Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi038:172.21.15.38=smithi038", "smithi167:172.21.15.167=smithi167"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2023-11-30T22:55:50.756456Z", "last_refresh": "2023-11-30T23:04:43.743023Z", "running": 2, "size": 2}}, {"events": ["2023-11-30T22:58:56.311581Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2023-11-30T22:58:56.308071Z", "last_refresh": "2023-11-30T23:04:43.743907Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2023-11-30T22:54:46.136630Z", "last_refresh": "2023-11-30T23:04:43.743455Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2023-11-30T22:56:33.258058Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2023-11-30T22:56:33.253117Z", "last_refresh": "2023-11-30T23:04:43.743585Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2023-11-30T22:54:43.949497Z", "last_refresh": "2023-11-30T23:04:43.743520Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2023-11-30T22:58:52.105721Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2023-11-30T22:58:59.793467Z", "last_refresh": "2023-11-30T23:04:43.743842Z", "ports": [8800], "running": 2, "size": 2}}] 2023-11-30T23:09:52.643 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2023-11-30T23:09:52.762 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:09:52 smithi167 conmon[87022]: cluster 2023-11-30T23:09:51.067009+0000 mgr.smithi038.ldalxq (mgr.14182) 709 : cluster [DBG] pgmap v472: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 98 B/s rd, 0 op/s 2023-11-30T23:09:52.762 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:09:52 smithi167 conmon[87022]: audit 2023-11-30T23:09:52.319290+0000 mon.smithi038 (mon.0) 700 : audit [INF] from='mgr.14182 172.21.15.38:0/2999689707' entity='mgr.smithi038.ldalxq' 2023-11-30T23:09:52.773 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:09:52 smithi038 conmon[81956]: cluster 2023-11-30T23:09:51.067009+0000 mgr.smithi038.ldalxq (mgr.14182) 709 : cluster [DBG] pgmap v472: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 98 B/s rd, 0 op/s 2023-11-30T23:09:52.774 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:09:52 smithi038 conmon[81956]: audit 2023-11-30T23:09:52.319290+0000 mon.smithi038 (mon.0) 700 : audit [INF] from='mgr.14182 172.21.15.38:0/2999689707' entity='mgr.smithi038.ldalxq' 2023-11-30T23:09:53.643 DEBUG:teuthology.orchestra.run.smithi038:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:0dc074ce0b0b3b4f393f56dd32ef36884ebf45a9 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 3faf8b00-8fd3-11ee-95a2-87774f69a715 -- ceph orch ls -f json 2023-11-30T23:09:53.762 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:09:53 smithi167 conmon[87022]: audit 2023-11-30T23:09:52.110841+0000 mgr.smithi038.ldalxq (mgr.14182) 710 : 2023-11-30T23:09:53.762 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:09:53 smithi167 conmon[87022]: audit [DBG] from='client.15388 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-11-30T23:09:53.762 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:09:53 smithi167 conmon[87022]: audit 2023-11-30T23:09:52.753742+0000 mon.smithi038 (mon.0) 701 : audit [INF] from='mgr.14182 172.21.15.38:0/2999689707' entity='mgr.smithi038.ldalxq' cmd=[{"prefix": "config rm", "who": "osd.1", "name": "osd_memory_target"}]: dispatch 2023-11-30T23:09:53.762 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:09:53 smithi167 conmon[87022]: audit 2023-11-30T23:09:52.754470+0000 mon.smithi038 (mon.0) 702 : audit [INF] from='mgr.14182 172.21.15.38:0/2999689707' entity='mgr.smithi038.ldalxq' cmd=[{"prefix": "config rm", "who": "osd.3", "name": "osd_memory_target"}]: dispatch 2023-11-30T23:09:53.762 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:09:53 smithi167 conmon[87022]: audit 2023-11-30T23:09:52.755080+0000 mon.smithi038 (mon.0) 703 : audit [INF] from='mgr.14182 172.21.15.38:0/2999689707' entity='mgr.smithi038.ldalxq' cmd=[{"prefix": "config rm", "who": "osd.5", "name": "osd_memory_target"}]: dispatch 2023-11-30T23:09:53.762 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:09:53 smithi167 conmon[87022]: audit 2023-11-30T23:09:52.755742+0000 mon.smithi038 (mon.0) 704 : audit [INF] from='mgr.14182 172.21.15.38:0/2999689707' entity='mgr.smithi038.ldalxq' cmd=[{"prefix": "config rm", "who": "osd.7", "name": "osd_memory_target"}]: dispatch 2023-11-30T23:09:53.762 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:09:53 smithi167 conmon[87022]: audit 2023-11-30T23:09:52.761787+0000 mon.smithi038 (mon.0) 705 : audit [INF] from='mgr.14182 172.21.15.38:0/2999689707' entity='mgr.smithi038.ldalxq' 2023-11-30T23:09:53.762 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:09:53 smithi167 conmon[87022]: audit 2023-11-30T23:09:52.762631+0000 mon.smithi038 (mon.0) 706 : audit [DBG] from='mgr.14182 172.21.15.38:0/2999689707' entity='mgr.smithi038.ldalxq' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2023-11-30T23:09:53.763 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:09:53 smithi167 conmon[87022]: audit 2023-11-30T23:09:52.763242+0000 mon.smithi038 (mon.0) 707 : audit [INF] from='mgr.14182 172.21.15.38:0/2999689707' entity='mgr.smithi038.ldalxq' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2023-11-30T23:09:53.763 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:09:53 smithi167 conmon[87022]: audit 2023-11-30T23:09:52.927792+0000 mon.smithi038 (mon.0) 708 : audit [INF] from='mgr.14182 172.21.15.38:0/2999689707' entity='mgr.smithi038.ldalxq' 2023-11-30T23:09:53.763 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:09:53 smithi167 conmon[87022]: audit 2023-11-30T23:09:52.932319+0000 mon.smithi038 (mon.0) 709 : audit [DBG] from='mgr.14182 172.21.15.38:0/2999689707' entity='mgr.smithi038.ldalxq' cmd=[{"prefix": "osd tree", "states": ["destroyed"], "format": "json"}]: dispatch 2023-11-30T23:09:53.763 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:09:53 smithi167 conmon[87022]: audit 2023-11-30T23:09:52.941167+0000 mon.smithi038 (mon.0) 710 : audit [INF] from='mgr.14182 172.21.15.38:0/2999689707' entity='mgr.smithi038.ldalxq' 2023-11-30T23:09:53.774 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:09:53 smithi038 conmon[81956]: audit 2023-11-30T23:09:52.110841+0000 mgr.smithi038.ldalxq (mgr.14182 2023-11-30T23:09:53.774 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:09:53 smithi038 conmon[81956]: ) 710 : audit [DBG] from='client.15388 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-11-30T23:09:53.774 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:09:53 smithi038 conmon[81956]: audit 2023-11-30T23:09:52.753742+0000 mon.smithi038 (mon.0) 701 : audit [INF] from='mgr.14182 172.21.15.38:0/2999689707' entity='mgr.smithi038.ldalxq' cmd=[{"prefix": "config rm", "who": "osd.1", "name": "osd_memory_target"}]: dispatch 2023-11-30T23:09:53.774 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:09:53 smithi038 conmon[81956]: audit 2023-11-30T23:09:52.754470+0000 mon.smithi038 (mon.0) 702 : audit [INF] from='mgr.14182 172.21.15.38:0/2999689707' entity='mgr.smithi038.ldalxq' cmd=[{"prefix": "config rm", "who": "osd.3", "name": "osd_memory_target"}]: dispatch 2023-11-30T23:09:53.774 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:09:53 smithi038 conmon[81956]: audit 2023-11-30T23:09:52.755080+0000 mon.smithi038 (mon.0) 703 : audit [INF] from='mgr.14182 172.21.15.38:0/2999689707' entity='mgr.smithi038.ldalxq' cmd=[{"prefix": "config rm", "who": "osd.5", "name": "osd_memory_target"}]: dispatch 2023-11-30T23:09:53.774 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:09:53 smithi038 conmon[81956]: audit 2023-11-30T23:09:52.755742+0000 mon.smithi038 (mon.0) 704 : audit [INF] from='mgr.14182 172.21.15.38:0/2999689707' entity='mgr.smithi038.ldalxq' cmd=[{"prefix": "config rm", "who": "osd.7", "name": "osd_memory_target"}]: dispatch 2023-11-30T23:09:53.774 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:09:53 smithi038 conmon[81956]: audit 2023-11-30T23:09:52.761787+0000 mon.smithi038 (mon.0) 705 : audit [INF] from='mgr.14182 172.21.15.38:0/2999689707' entity='mgr.smithi038.ldalxq' 2023-11-30T23:09:53.774 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:09:53 smithi038 conmon[81956]: audit 2023-11-30T23:09:52.762631+0000 mon.smithi038 (mon.0) 706 : audit [DBG] from='mgr.14182 172.21.15.38:0/2999689707' entity='mgr.smithi038.ldalxq' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2023-11-30T23:09:53.774 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:09:53 smithi038 conmon[81956]: audit 2023-11-30T23:09:52.763242+0000 mon.smithi038 (mon.0) 707 : audit [INF] from='mgr.14182 172.21.15.38:0/2999689707' entity='mgr.smithi038.ldalxq' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2023-11-30T23:09:53.774 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:09:53 smithi038 conmon[81956]: audit 2023-11-30T23:09:52.927792+0000 mon.smithi038 (mon.0) 708 : audit [INF] from='mgr.14182 172.21.15.38:0/2999689707' entity='mgr.smithi038.ldalxq' 2023-11-30T23:09:53.774 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:09:53 smithi038 conmon[81956]: audit 2023-11-30T23:09:52.932319+0000 mon.smithi038 (mon.0) 709 : audit [DBG] from='mgr.14182 172.21.15.38:0/2999689707' entity='mgr.smithi038.ldalxq' cmd=[{"prefix": "osd tree", "states": ["destroyed"], "format": "json"}]: dispatch 2023-11-30T23:09:53.775 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:09:53 smithi038 conmon[81956]: audit 2023-11-30T23:09: 2023-11-30T23:09:53.775 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:09:53 smithi038 conmon[81956]: 52.941167+0000 mon.smithi038 (mon.0) 710 : audit [INF] from='mgr.14182 172.21.15.38:0/2999689707' entity='mgr.smithi038.ldalxq' 2023-11-30T23:09:54.524 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:09:54 smithi038 conmon[81956]: cephadm 2023-11-30T23:09:52.756220+0000 mgr.smithi038.ldalxq (mgr.14182) 711 : cephadm [INF] Adjusting osd_memory_target on smithi038 to 2725M 2023-11-30T23:09:54.525 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:09:54 smithi038 conmon[81956]: cephadm 2023-11-30T23:09:52.766431+0000 mgr.smithi038.ldalxq (mgr.14182) 712 : cephadm [INF] Checking dashboard <-> RGW credentials 2023-11-30T23:09:54.525 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:09:54 smithi038 conmon[81956]: cluster 2023-11-30T23:09:52.928667+0000 mgr.smithi038.ldalxq (mgr.14182) 713 : cluster [DBG] pgmap v473: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 199 B/s rd, 0 op/s 2023-11-30T23:09:54.525 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:09:54 smithi038 conmon[81956]: cephadm 2023-11-30T23:09:52.943467+0000 mgr.smithi038.ldalxq (mgr.14182) 714 : cephadm [INF] Deploying daemon haproxy.nfs.foo.smithi167.nhhxhd on smithi167 2023-11-30T23:09:54.525 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:09:54 smithi038 conmon[81956]: cluster 2023-11-30T23:09:53.926156+0000 mon.smithi038 (mon.0) 711 : cluster [INF] Health check cleared: CEPHADM_DAEMON_PLACE_FAIL (was: Failed to place 4 daemon(s)) 2023-11-30T23:09:54.525 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:09:54 smithi038 conmon[81956]: cluster 2023-11-30T23:09: 2023-11-30T23:09:54.525 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:09:54 smithi038 conmon[81956]: 53.926191+0000 mon.smithi038 (mon.0) 712 : cluster [INF] Cluster is now healthy 2023-11-30T23:09:54.762 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:09:54 smithi167 conmon[87022]: cephadm 2023-11-30T23:09:52.756220+0000 mgr.smithi038.ldalxq (mgr.14182) 711 : 2023-11-30T23:09:54.762 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:09:54 smithi167 conmon[87022]: cephadm [INF] Adjusting osd_memory_target on smithi038 to 2725M 2023-11-30T23:09:54.762 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:09:54 smithi167 conmon[87022]: cephadm 2023-11-30T23:09:52.766431+0000 mgr.smithi038.ldalxq (mgr.14182) 712 : cephadm [INF] Checking dashboard <-> RGW credentials 2023-11-30T23:09:54.762 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:09:54 smithi167 conmon[87022]: cluster 2023-11-30T23:09:52.928667+0000 2023-11-30T23:09:54.762 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:09:54 smithi167 conmon[87022]: mgr.smithi038.ldalxq (mgr.14182) 713 : cluster [DBG] pgmap v473: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 199 B/s rd, 0 op/s 2023-11-30T23:09:54.762 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:09:54 smithi167 conmon[87022]: cephadm 2023-11-30T23:09:52.943467+0000 mgr.smithi038.ldalxq (mgr 2023-11-30T23:09:54.763 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:09:54 smithi167 conmon[87022]: .14182) 714 : cephadm [INF] Deploying daemon haproxy.nfs.foo.smithi167.nhhxhd on smithi167 2023-11-30T23:09:54.763 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:09:54 smithi167 conmon[87022]: cluster 2023-11 2023-11-30T23:09:54.763 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:09:54 smithi167 conmon[87022]: -30T23:09:53.926156+0000 mon.smithi038 (mon.0) 711 : cluster [INF] Health check cleared: CEPHADM_DAEMON_PLACE_FAIL (was: Failed to place 4 daemon(s)) 2023-11-30T23:09:54.763 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:09:54 smithi167 conmon[87022]: cluster 2023-11-30T23:09:53.926191+0000 2023-11-30T23:09:54.763 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:09:54 smithi167 conmon[87022]: mon.smithi038 (mon.0) 712 : cluster [INF] Cluster is now healthy 2023-11-30T23:09:55.495 INFO:teuthology.orchestra.run.smithi038.stdout: 2023-11-30T23:09:55.496 INFO:teuthology.orchestra.run.smithi038.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2023-11-30T22:54:47.122758Z", "last_refresh": "2023-11-30T23:09:52.311067Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2023-11-30T22:54:42.674972Z", "last_refresh": "2023-11-30T23:09:48.452759Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2023-11-30T22:54:45.114633Z", "last_refresh": "2023-11-30T23:09:52.311222Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2023-11-30T23:04:36.503792Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi167.dxieha on smithi167: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2023-11-30T23:07:14.865206Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi167.igxkgw on smithi167: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi167-igxkgw\n/bin/podman: stderr Error: error inspecting object: no such container ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi167-igxkgw\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi167.igxkgw\n/bin/podman: stderr Error: error inspecting object: no such container ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi167.igxkgw\nDeploy daemon haproxy.nfs.foo.smithi167.igxkgw ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi167 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2023-11-30T23:05:21Z\" level=warning msg=\"failed, retrying in 1s ... (1/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-11-30T23:05:59Z\" level=warning msg=\"failed, retrying in 1s ... (2/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-11-30T23:06:37Z\" level=warning msg=\"failed, retrying in 1s ... (3/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi167 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-11-30T23:09:45.061230Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi038.ubrlmp on smithi038: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi038-ubrlmp\n/bin/podman: stderr Error: error inspecting object: no such container ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi038-ubrlmp\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi038.ubrlmp\n/bin/podman: stderr Error: error inspecting object: no such container ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi038.ubrlmp\nDeploy daemon haproxy.nfs.foo.smithi038.ubrlmp ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi038 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2023-11-30T23:07:52Z\" level=warning msg=\"failed, retrying in 1s ... (1/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-11-30T23:08:30Z\" level=warning msg=\"failed, retrying in 1s ... (2/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-11-30T23:09:07Z\" level=warning msg=\"failed, retrying in 1s ... (3/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi038 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-11-30T23:09:45.062547Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi038.vjkntq on smithi038: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2023-11-30T23:09:45.063688Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi167.ndkqyv on smithi167: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.38/16"}, "status": {"created": "2023-11-30T22:58:56.312786Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.38/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2023-11-30T22:54:41.668043Z", "last_refresh": "2023-11-30T23:09:48.452908Z", "running": 2, "size": 2}}, {"events": ["2023-11-30T22:55:50.759225Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi038:172.21.15.38=smithi038", "smithi167:172.21.15.167=smithi167"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2023-11-30T22:55:50.756456Z", "last_refresh": "2023-11-30T23:09:48.452987Z", "running": 2, "size": 2}}, {"events": ["2023-11-30T22:58:56.311581Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2023-11-30T22:58:56.308071Z", "last_refresh": "2023-11-30T23:09:52.311757Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2023-11-30T22:54:46.136630Z", "last_refresh": "2023-11-30T23:09:48.453061Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2023-11-30T22:56:33.258058Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2023-11-30T22:56:33.253117Z", "last_refresh": "2023-11-30T23:09:48.453131Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2023-11-30T22:54:43.949497Z", "last_refresh": "2023-11-30T23:09:52.311357Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2023-11-30T22:58:52.105721Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2023-11-30T22:58:59.793467Z", "last_refresh": "2023-11-30T23:09:48.453411Z", "ports": [8800], "running": 2, "size": 2}}] 2023-11-30T23:09:55.991 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2023-11-30T23:09:56.762 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:09:56 smithi167 conmon[87022]: cluster 2023-11-30T23:09:54.929423+0000 mgr.smithi038.ldalxq (mgr.14182) 715 : cluster [DBG] pgmap v474: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 1.3 KiB/s rd, 1 op/s 2023-11-30T23:09:56.762 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:09:56 smithi167 conmon[87022]: audit 2023-11-30T23:09:55.489796+0000 mgr.smithi038.ldalxq (mgr.14182) 716 : audit [DBG] from='client.15412 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-11-30T23:09:56.774 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:09:56 smithi038 conmon[81956]: cluster 2023-11-30T23:09:54.929423+0000 mgr.smithi038.ldalxq (mgr 2023-11-30T23:09:56.774 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:09:56 smithi038 conmon[81956]: .14182) 715 : cluster [DBG] pgmap v474: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 1.3 KiB/s rd, 1 op/s 2023-11-30T23:09:56.774 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:09:56 smithi038 conmon[81956]: audit 2023-11-30T23:09:55.489796+0000 mgr.smithi038.ldalxq (mgr.14182) 716 : audit [DBG] from='client.15412 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-11-30T23:09:56.991 DEBUG:teuthology.orchestra.run.smithi038:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:0dc074ce0b0b3b4f393f56dd32ef36884ebf45a9 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 3faf8b00-8fd3-11ee-95a2-87774f69a715 -- ceph orch ls -f json 2023-11-30T23:09:58.211 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:09:57 smithi038 conmon[81956]: cluster 2023-11-30T23:09:56.930167+0000 mgr.smithi038.ldalxq (mgr.14182) 717 : cluster [DBG] pgmap v475: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 1.1 KiB/s rd, 1 op/s 2023-11-30T23:09:58.262 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:09:57 smithi167 conmon[87022]: cluster 2023-11-30T23:09:56.930167+0000 mgr.smithi038.ldalxq (mgr.14182) 717 : cluster [DBG] pgmap v475: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 1.1 KiB/s rd, 1 op/s 2023-11-30T23:09:58.622 INFO:teuthology.orchestra.run.smithi038.stdout: 2023-11-30T23:09:58.623 INFO:teuthology.orchestra.run.smithi038.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2023-11-30T22:54:47.122758Z", "last_refresh": "2023-11-30T23:09:52.311067Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2023-11-30T22:54:42.674972Z", "last_refresh": "2023-11-30T23:09:48.452759Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2023-11-30T22:54:45.114633Z", "last_refresh": "2023-11-30T23:09:52.311222Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2023-11-30T23:04:36.503792Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi167.dxieha on smithi167: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2023-11-30T23:07:14.865206Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi167.igxkgw on smithi167: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi167-igxkgw\n/bin/podman: stderr Error: error inspecting object: no such container ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi167-igxkgw\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi167.igxkgw\n/bin/podman: stderr Error: error inspecting object: no such container ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi167.igxkgw\nDeploy daemon haproxy.nfs.foo.smithi167.igxkgw ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi167 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2023-11-30T23:05:21Z\" level=warning msg=\"failed, retrying in 1s ... (1/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-11-30T23:05:59Z\" level=warning msg=\"failed, retrying in 1s ... (2/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-11-30T23:06:37Z\" level=warning msg=\"failed, retrying in 1s ... (3/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi167 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-11-30T23:09:45.061230Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi038.ubrlmp on smithi038: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi038-ubrlmp\n/bin/podman: stderr Error: error inspecting object: no such container ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi038-ubrlmp\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi038.ubrlmp\n/bin/podman: stderr Error: error inspecting object: no such container ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi038.ubrlmp\nDeploy daemon haproxy.nfs.foo.smithi038.ubrlmp ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi038 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2023-11-30T23:07:52Z\" level=warning msg=\"failed, retrying in 1s ... (1/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-11-30T23:08:30Z\" level=warning msg=\"failed, retrying in 1s ... (2/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-11-30T23:09:07Z\" level=warning msg=\"failed, retrying in 1s ... (3/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi038 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-11-30T23:09:45.062547Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi038.vjkntq on smithi038: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2023-11-30T23:09:45.063688Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi167.ndkqyv on smithi167: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.38/16"}, "status": {"created": "2023-11-30T22:58:56.312786Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.38/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2023-11-30T22:54:41.668043Z", "last_refresh": "2023-11-30T23:09:48.452908Z", "running": 2, "size": 2}}, {"events": ["2023-11-30T22:55:50.759225Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi038:172.21.15.38=smithi038", "smithi167:172.21.15.167=smithi167"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2023-11-30T22:55:50.756456Z", "last_refresh": "2023-11-30T23:09:48.452987Z", "running": 2, "size": 2}}, {"events": ["2023-11-30T22:58:56.311581Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2023-11-30T22:58:56.308071Z", "last_refresh": "2023-11-30T23:09:52.311757Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2023-11-30T22:54:46.136630Z", "last_refresh": "2023-11-30T23:09:48.453061Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2023-11-30T22:56:33.258058Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2023-11-30T22:56:33.253117Z", "last_refresh": "2023-11-30T23:09:48.453131Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2023-11-30T22:54:43.949497Z", "last_refresh": "2023-11-30T23:09:52.311357Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2023-11-30T22:58:52.105721Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2023-11-30T22:58:59.793467Z", "last_refresh": "2023-11-30T23:09:48.453411Z", "ports": [8800], "running": 2, "size": 2}}] 2023-11-30T23:09:58.944 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:09:58 smithi038 conmon[81956]: audit 2023-11-30T23:09:58.618555+0000 mgr.smithi038.ldalxq 2023-11-30T23:09:58.944 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:09:58 smithi038 conmon[81956]: (mgr.14182) 718 : audit [DBG] from='client.15416 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-11-30T23:09:59.055 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2023-11-30T23:09:59.262 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:09:58 smithi167 conmon[87022]: audit 2023-11-30T23:09:58.618555+0000 mgr.smithi038.ldalxq (mgr.14182) 718 : audit [DBG] 2023-11-30T23:09:59.262 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:09:58 smithi167 conmon[87022]: from='client.15416 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-11-30T23:10:00.056 DEBUG:teuthology.orchestra.run.smithi038:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:0dc074ce0b0b3b4f393f56dd32ef36884ebf45a9 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 3faf8b00-8fd3-11ee-95a2-87774f69a715 -- ceph orch ls -f json 2023-11-30T23:10:00.084 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:09:59 smithi038 conmon[81956]: cluster 2023-11-30T23:09 2023-11-30T23:10:00.085 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:09:59 smithi038 conmon[81956]: :58.930685+0000 mgr.smithi038.ldalxq (mgr.14182) 719 : cluster [DBG] pgmap v476: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 1.5 KiB/s rd, 1 op/s 2023-11-30T23:10:00.262 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:09:59 smithi167 conmon[87022]: cluster 2023-11-30T23:09:58.930685+0000 mgr.smithi038.ldalxq (mgr.14182) 719 : cluster [DBG] 2023-11-30T23:10:00.262 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:09:59 smithi167 conmon[87022]: pgmap v476: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 1.5 KiB/s rd, 1 op/s 2023-11-30T23:10:00.983 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:10:00 smithi038 conmon[81956]: cluster 2023-11-30T23:10:00.000113+0000 mon.smithi038 (mon.0) 713 : cluster [INF] overall HEALTH_OK 2023-11-30T23:10:01.262 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:10:00 smithi167 conmon[87022]: cluster 2023-11-30T23:10:00.000113+0000 mon.smithi038 (mon.0) 713 : cluster [INF] overall HEALTH_OK 2023-11-30T23:10:01.881 INFO:teuthology.orchestra.run.smithi038.stdout: 2023-11-30T23:10:01.881 INFO:teuthology.orchestra.run.smithi038.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2023-11-30T22:54:47.122758Z", "last_refresh": "2023-11-30T23:09:52.311067Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2023-11-30T22:54:42.674972Z", "last_refresh": "2023-11-30T23:09:48.452759Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2023-11-30T22:54:45.114633Z", "last_refresh": "2023-11-30T23:09:52.311222Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2023-11-30T23:04:36.503792Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi167.dxieha on smithi167: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2023-11-30T23:07:14.865206Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi167.igxkgw on smithi167: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi167-igxkgw\n/bin/podman: stderr Error: error inspecting object: no such container ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi167-igxkgw\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi167.igxkgw\n/bin/podman: stderr Error: error inspecting object: no such container ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi167.igxkgw\nDeploy daemon haproxy.nfs.foo.smithi167.igxkgw ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi167 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2023-11-30T23:05:21Z\" level=warning msg=\"failed, retrying in 1s ... (1/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-11-30T23:05:59Z\" level=warning msg=\"failed, retrying in 1s ... (2/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-11-30T23:06:37Z\" level=warning msg=\"failed, retrying in 1s ... (3/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi167 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-11-30T23:09:45.061230Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi038.ubrlmp on smithi038: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi038-ubrlmp\n/bin/podman: stderr Error: error inspecting object: no such container ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi038-ubrlmp\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi038.ubrlmp\n/bin/podman: stderr Error: error inspecting object: no such container ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi038.ubrlmp\nDeploy daemon haproxy.nfs.foo.smithi038.ubrlmp ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi038 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2023-11-30T23:07:52Z\" level=warning msg=\"failed, retrying in 1s ... (1/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-11-30T23:08:30Z\" level=warning msg=\"failed, retrying in 1s ... (2/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-11-30T23:09:07Z\" level=warning msg=\"failed, retrying in 1s ... (3/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi038 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-11-30T23:09:45.062547Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi038.vjkntq on smithi038: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2023-11-30T23:09:45.063688Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi167.ndkqyv on smithi167: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.38/16"}, "status": {"created": "2023-11-30T22:58:56.312786Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.38/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2023-11-30T22:54:41.668043Z", "last_refresh": "2023-11-30T23:09:48.452908Z", "running": 2, "size": 2}}, {"events": ["2023-11-30T22:55:50.759225Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi038:172.21.15.38=smithi038", "smithi167:172.21.15.167=smithi167"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2023-11-30T22:55:50.756456Z", "last_refresh": "2023-11-30T23:09:48.452987Z", "running": 2, "size": 2}}, {"events": ["2023-11-30T22:58:56.311581Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2023-11-30T22:58:56.308071Z", "last_refresh": "2023-11-30T23:09:52.311757Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2023-11-30T22:54:46.136630Z", "last_refresh": "2023-11-30T23:09:48.453061Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2023-11-30T22:56:33.258058Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2023-11-30T22:56:33.253117Z", "last_refresh": "2023-11-30T23:09:48.453131Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2023-11-30T22:54:43.949497Z", "last_refresh": "2023-11-30T23:09:52.311357Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2023-11-30T22:58:52.105721Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2023-11-30T22:58:59.793467Z", "last_refresh": "2023-11-30T23:09:48.453411Z", "ports": [8800], "running": 2, "size": 2}}] 2023-11-30T23:10:02.124 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:10:01 smithi038 conmon[81956]: cluster 2023-11-30T23:10:00.931428+0000 mgr.smithi038.ldalxq 2023-11-30T23:10:02.125 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:10:01 smithi038 conmon[81956]: (mgr.14182) 720 : cluster [DBG] pgmap v477: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 1.5 KiB/s rd, 1 op/s 2023-11-30T23:10:02.262 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:10:01 smithi167 conmon[87022]: cluster 2023-11-30T23:10:00.931428+0000 mgr.smithi038.ldalxq (mgr.14182) 720 : cluster [DBG] 2023-11-30T23:10:02.262 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:10:01 smithi167 conmon[87022]: pgmap v477: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 1.5 KiB/s rd, 1 op/s 2023-11-30T23:10:02.326 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2023-11-30T23:10:03.262 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:10:02 smithi167 conmon[87022]: audit 2023-11-30T23:10:01.876955+0000 mgr.smithi038.ldalxq (mgr.14182) 721 2023-11-30T23:10:03.262 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:10:02 smithi167 conmon[87022]: : audit [DBG] from='client.15420 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-11-30T23:10:03.273 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:10:02 smithi038 conmon[81956]: audit 2023-11-30T23:10:01.876955 2023-11-30T23:10:03.273 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:10:02 smithi038 conmon[81956]: +0000 mgr.smithi038.ldalxq (mgr.14182) 721 : audit [DBG] from='client.15420 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-11-30T23:10:03.327 DEBUG:teuthology.orchestra.run.smithi038:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:0dc074ce0b0b3b4f393f56dd32ef36884ebf45a9 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 3faf8b00-8fd3-11ee-95a2-87774f69a715 -- ceph orch ls -f json 2023-11-30T23:10:04.232 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:10:03 smithi038 conmon[81956]: cluster 2023-11-30T23:10:02.932218+0000 2023-11-30T23:10:04.233 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:10:03 smithi038 conmon[81956]: mgr.smithi038.ldalxq (mgr.14182) 722 : cluster [DBG] pgmap v478: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 1.6 KiB/s rd, 1 op/s 2023-11-30T23:10:04.262 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:10:03 smithi167 conmon[87022]: cluster 2023-11-30T23:10:02.932218+0000 mgr.smithi038.ldalxq (mgr.14182) 722 : cluster [DBG] pgmap v478: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 1.6 KiB/s rd, 1 op/s 2023-11-30T23:10:05.062 INFO:teuthology.orchestra.run.smithi038.stdout: 2023-11-30T23:10:05.062 INFO:teuthology.orchestra.run.smithi038.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2023-11-30T22:54:47.122758Z", "last_refresh": "2023-11-30T23:09:52.311067Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2023-11-30T22:54:42.674972Z", "last_refresh": "2023-11-30T23:09:48.452759Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2023-11-30T22:54:45.114633Z", "last_refresh": "2023-11-30T23:09:52.311222Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2023-11-30T23:04:36.503792Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi167.dxieha on smithi167: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2023-11-30T23:07:14.865206Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi167.igxkgw on smithi167: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi167-igxkgw\n/bin/podman: stderr Error: error inspecting object: no such container ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi167-igxkgw\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi167.igxkgw\n/bin/podman: stderr Error: error inspecting object: no such container ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi167.igxkgw\nDeploy daemon haproxy.nfs.foo.smithi167.igxkgw ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi167 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2023-11-30T23:05:21Z\" level=warning msg=\"failed, retrying in 1s ... (1/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-11-30T23:05:59Z\" level=warning msg=\"failed, retrying in 1s ... (2/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-11-30T23:06:37Z\" level=warning msg=\"failed, retrying in 1s ... (3/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi167 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-11-30T23:09:45.061230Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi038.ubrlmp on smithi038: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi038-ubrlmp\n/bin/podman: stderr Error: error inspecting object: no such container ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi038-ubrlmp\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi038.ubrlmp\n/bin/podman: stderr Error: error inspecting object: no such container ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi038.ubrlmp\nDeploy daemon haproxy.nfs.foo.smithi038.ubrlmp ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi038 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2023-11-30T23:07:52Z\" level=warning msg=\"failed, retrying in 1s ... (1/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-11-30T23:08:30Z\" level=warning msg=\"failed, retrying in 1s ... (2/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-11-30T23:09:07Z\" level=warning msg=\"failed, retrying in 1s ... (3/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi038 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-11-30T23:09:45.062547Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi038.vjkntq on smithi038: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2023-11-30T23:09:45.063688Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi167.ndkqyv on smithi167: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.38/16"}, "status": {"created": "2023-11-30T22:58:56.312786Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.38/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2023-11-30T22:54:41.668043Z", "last_refresh": "2023-11-30T23:09:48.452908Z", "running": 2, "size": 2}}, {"events": ["2023-11-30T22:55:50.759225Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi038:172.21.15.38=smithi038", "smithi167:172.21.15.167=smithi167"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2023-11-30T22:55:50.756456Z", "last_refresh": "2023-11-30T23:09:48.452987Z", "running": 2, "size": 2}}, {"events": ["2023-11-30T22:58:56.311581Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2023-11-30T22:58:56.308071Z", "last_refresh": "2023-11-30T23:09:52.311757Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2023-11-30T22:54:46.136630Z", "last_refresh": "2023-11-30T23:09:48.453061Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2023-11-30T22:56:33.258058Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2023-11-30T22:56:33.253117Z", "last_refresh": "2023-11-30T23:09:48.453131Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2023-11-30T22:54:43.949497Z", "last_refresh": "2023-11-30T23:09:52.311357Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2023-11-30T22:58:52.105721Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2023-11-30T22:58:59.793467Z", "last_refresh": "2023-11-30T23:09:48.453411Z", "ports": [8800], "running": 2, "size": 2}}] 2023-11-30T23:10:05.487 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2023-11-30T23:10:06.262 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:10:05 smithi167 conmon[87022]: cluster 2023-11-30T23:10:04.932900+0000 mgr.smithi038.ldalxq (mgr.14182) 723 : cluster 2023-11-30T23:10:06.262 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:10:05 smithi167 conmon[87022]: [DBG] pgmap v479: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 1.5 KiB/s rd, 1 op/s 2023-11-30T23:10:06.262 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:10:05 smithi167 conmon[87022]: audit 2023-11-30T23:10:05.058084+0000 mgr.smithi038.ldalxq (mgr.14182) 724 : audit [DBG] from='client.15424 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-11-30T23:10:06.273 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:10:05 smithi038 conmon[81956]: cluster 2023-11-30T23:10:04.932900+0000 mgr.smithi038.ldalxq (mgr.14182) 723 : cluster [DBG] pgmap v479: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 1.5 KiB/s rd, 1 op/s 2023-11-30T23:10:06.274 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:10:05 smithi038 conmon[81956]: audit 2023-11-30T23:10:05.058084+0000 mgr.smithi038.ldalxq (mgr.14182) 724 : audit [DBG] from='client.15424 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-11-30T23:10:06.488 DEBUG:teuthology.orchestra.run.smithi038:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:0dc074ce0b0b3b4f393f56dd32ef36884ebf45a9 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 3faf8b00-8fd3-11ee-95a2-87774f69a715 -- ceph orch ls -f json 2023-11-30T23:10:08.186 INFO:teuthology.orchestra.run.smithi038.stdout: 2023-11-30T23:10:08.186 INFO:teuthology.orchestra.run.smithi038.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2023-11-30T22:54:47.122758Z", "last_refresh": "2023-11-30T23:09:52.311067Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2023-11-30T22:54:42.674972Z", "last_refresh": "2023-11-30T23:09:48.452759Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2023-11-30T22:54:45.114633Z", "last_refresh": "2023-11-30T23:09:52.311222Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2023-11-30T23:04:36.503792Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi167.dxieha on smithi167: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2023-11-30T23:07:14.865206Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi167.igxkgw on smithi167: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi167-igxkgw\n/bin/podman: stderr Error: error inspecting object: no such container ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi167-igxkgw\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi167.igxkgw\n/bin/podman: stderr Error: error inspecting object: no such container ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi167.igxkgw\nDeploy daemon haproxy.nfs.foo.smithi167.igxkgw ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi167 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2023-11-30T23:05:21Z\" level=warning msg=\"failed, retrying in 1s ... (1/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-11-30T23:05:59Z\" level=warning msg=\"failed, retrying in 1s ... (2/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-11-30T23:06:37Z\" level=warning msg=\"failed, retrying in 1s ... (3/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi167 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-11-30T23:09:45.061230Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi038.ubrlmp on smithi038: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi038-ubrlmp\n/bin/podman: stderr Error: error inspecting object: no such container ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi038-ubrlmp\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi038.ubrlmp\n/bin/podman: stderr Error: error inspecting object: no such container ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi038.ubrlmp\nDeploy daemon haproxy.nfs.foo.smithi038.ubrlmp ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi038 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2023-11-30T23:07:52Z\" level=warning msg=\"failed, retrying in 1s ... (1/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-11-30T23:08:30Z\" level=warning msg=\"failed, retrying in 1s ... (2/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-11-30T23:09:07Z\" level=warning msg=\"failed, retrying in 1s ... (3/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi038 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-11-30T23:09:45.062547Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi038.vjkntq on smithi038: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2023-11-30T23:09:45.063688Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi167.ndkqyv on smithi167: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.38/16"}, "status": {"created": "2023-11-30T22:58:56.312786Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.38/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2023-11-30T22:54:41.668043Z", "last_refresh": "2023-11-30T23:09:48.452908Z", "running": 2, "size": 2}}, {"events": ["2023-11-30T22:55:50.759225Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi038:172.21.15.38=smithi038", "smithi167:172.21.15.167=smithi167"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2023-11-30T22:55:50.756456Z", "last_refresh": "2023-11-30T23:09:48.452987Z", "running": 2, "size": 2}}, {"events": ["2023-11-30T22:58:56.311581Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2023-11-30T22:58:56.308071Z", "last_refresh": "2023-11-30T23:09:52.311757Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2023-11-30T22:54:46.136630Z", "last_refresh": "2023-11-30T23:09:48.453061Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2023-11-30T22:56:33.258058Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2023-11-30T22:56:33.253117Z", "last_refresh": "2023-11-30T23:09:48.453131Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2023-11-30T22:54:43.949497Z", "last_refresh": "2023-11-30T23:09:52.311357Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2023-11-30T22:58:52.105721Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2023-11-30T22:58:59.793467Z", "last_refresh": "2023-11-30T23:09:48.453411Z", "ports": [8800], "running": 2, "size": 2}}] 2023-11-30T23:10:08.211 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:10:07 smithi038 conmon[81956]: cluster 2023-11-30T23:10:06.933641+0000 mgr.smithi038.ldalxq (mgr.14182) 725 : cluster [DBG] pgmap v480: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 511 B/s rd, 0 op/s 2023-11-30T23:10:08.262 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:10:07 smithi167 conmon[87022]: cluster 2023-11-30T23:10:06.933641+0000 mgr.smithi038.ldalxq (mgr.14182) 725 : cluster [DBG] pgmap v480: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 511 B/s rd, 0 op/s 2023-11-30T23:10:08.548 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2023-11-30T23:10:08.944 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:10:08 smithi038 conmon[81956]: audit 2023-11-30T23:10:08.182198+0000 mgr.smithi038.ldalxq (mgr 2023-11-30T23:10:08.944 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:10:08 smithi038 conmon[81956]: .14182) 726 : audit [DBG] from='client.15428 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-11-30T23:10:09.262 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:10:08 smithi167 conmon[87022]: audit 2023-11-30T23:10:08.182198+0000 mgr.smithi038.ldalxq (mgr.14182) 726 : audit [DBG] from='client.15428 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-11-30T23:10:09.548 DEBUG:teuthology.orchestra.run.smithi038:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:0dc074ce0b0b3b4f393f56dd32ef36884ebf45a9 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 3faf8b00-8fd3-11ee-95a2-87774f69a715 -- ceph orch ls -f json 2023-11-30T23:10:10.024 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:10:09 smithi038 conmon[81956]: cluster 2023-11-30T23:10:08.934294+0000 mgr.smithi038.ldalxq 2023-11-30T23:10:10.024 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:10:09 smithi038 conmon[81956]: (mgr.14182) 727 : cluster [DBG] pgmap v481: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 511 B/s rd, 0 op/s 2023-11-30T23:10:10.262 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:10:09 smithi167 conmon[87022]: cluster 2023-11-30T23:10:08.934294+0000 mgr.smithi038.ldalxq (mgr.14182) 727 : cluster [DBG] pgmap v481: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 511 B/s rd, 0 op/s 2023-11-30T23:10:11.333 INFO:teuthology.orchestra.run.smithi038.stdout: 2023-11-30T23:10:11.333 INFO:teuthology.orchestra.run.smithi038.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2023-11-30T22:54:47.122758Z", "last_refresh": "2023-11-30T23:09:52.311067Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2023-11-30T22:54:42.674972Z", "last_refresh": "2023-11-30T23:09:48.452759Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2023-11-30T22:54:45.114633Z", "last_refresh": "2023-11-30T23:09:52.311222Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2023-11-30T23:04:36.503792Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi167.dxieha on smithi167: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2023-11-30T23:07:14.865206Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi167.igxkgw on smithi167: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi167-igxkgw\n/bin/podman: stderr Error: error inspecting object: no such container ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi167-igxkgw\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi167.igxkgw\n/bin/podman: stderr Error: error inspecting object: no such container ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi167.igxkgw\nDeploy daemon haproxy.nfs.foo.smithi167.igxkgw ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi167 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2023-11-30T23:05:21Z\" level=warning msg=\"failed, retrying in 1s ... (1/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-11-30T23:05:59Z\" level=warning msg=\"failed, retrying in 1s ... (2/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-11-30T23:06:37Z\" level=warning msg=\"failed, retrying in 1s ... (3/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi167 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-11-30T23:09:45.061230Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi038.ubrlmp on smithi038: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi038-ubrlmp\n/bin/podman: stderr Error: error inspecting object: no such container ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi038-ubrlmp\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi038.ubrlmp\n/bin/podman: stderr Error: error inspecting object: no such container ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi038.ubrlmp\nDeploy daemon haproxy.nfs.foo.smithi038.ubrlmp ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi038 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2023-11-30T23:07:52Z\" level=warning msg=\"failed, retrying in 1s ... (1/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-11-30T23:08:30Z\" level=warning msg=\"failed, retrying in 1s ... (2/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-11-30T23:09:07Z\" level=warning msg=\"failed, retrying in 1s ... (3/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi038 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-11-30T23:09:45.062547Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi038.vjkntq on smithi038: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2023-11-30T23:09:45.063688Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi167.ndkqyv on smithi167: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.38/16"}, "status": {"created": "2023-11-30T22:58:56.312786Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.38/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2023-11-30T22:54:41.668043Z", "last_refresh": "2023-11-30T23:09:48.452908Z", "running": 2, "size": 2}}, {"events": ["2023-11-30T22:55:50.759225Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi038:172.21.15.38=smithi038", "smithi167:172.21.15.167=smithi167"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2023-11-30T22:55:50.756456Z", "last_refresh": "2023-11-30T23:09:48.452987Z", "running": 2, "size": 2}}, {"events": ["2023-11-30T22:58:56.311581Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2023-11-30T22:58:56.308071Z", "last_refresh": "2023-11-30T23:09:52.311757Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2023-11-30T22:54:46.136630Z", "last_refresh": "2023-11-30T23:09:48.453061Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2023-11-30T22:56:33.258058Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2023-11-30T22:56:33.253117Z", "last_refresh": "2023-11-30T23:09:48.453131Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2023-11-30T22:54:43.949497Z", "last_refresh": "2023-11-30T23:09:52.311357Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2023-11-30T22:58:52.105721Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2023-11-30T22:58:59.793467Z", "last_refresh": "2023-11-30T23:09:48.453411Z", "ports": [8800], "running": 2, "size": 2}}] 2023-11-30T23:10:11.809 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2023-11-30T23:10:12.024 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:10:12 smithi038 conmon[81956]: cluster 2023-11-30T23:10:10.935048+0000 mgr.smithi038.ldalxq (mgr.14182) 728 : cluster [DBG] pgmap v482: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2023-11-30T23:10:12.024 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:10:12 smithi038 conmon[81956]: audit 2023-11-30T23:10:11.329319+0000 mgr.smithi038.ldalxq (mgr.14182) 729 : audit [DBG] from='client.15432 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-11-30T23:10:12.262 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:10:12 smithi167 conmon[87022]: cluster 2023-11-30T23:10:10.935048+0000 mgr.smithi038.ldalxq (mgr.14182) 728 : cluster [DBG] pgmap v482: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2023-11-30T23:10:12.262 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:10:12 smithi167 conmon[87022]: audit 2023-11-30T23:10:11.329319+0000 mgr.smithi038.ldalxq (mgr.14182) 729 : audit [DBG] from='client.15432 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-11-30T23:10:12.810 DEBUG:teuthology.orchestra.run.smithi038:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:0dc074ce0b0b3b4f393f56dd32ef36884ebf45a9 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 3faf8b00-8fd3-11ee-95a2-87774f69a715 -- ceph orch ls -f json 2023-11-30T23:10:14.262 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:10:14 smithi167 conmon[87022]: cluster 2023-11-30T23:10:12.935626+0000 mgr.smithi038.ldalxq (mgr.14182) 730 : cluster [DBG] 2023-11-30T23:10:14.262 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:10:14 smithi167 conmon[87022]: pgmap v483: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2023-11-30T23:10:14.273 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:10:14 smithi038 conmon[81956]: cluster 2023-11-30T23:10:12.935626+0000 mgr.smithi038.ldalxq (mgr.14182) 730 : cluster [DBG] pgmap v483: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2023-11-30T23:10:14.596 INFO:teuthology.orchestra.run.smithi038.stdout: 2023-11-30T23:10:14.596 INFO:teuthology.orchestra.run.smithi038.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2023-11-30T22:54:47.122758Z", "last_refresh": "2023-11-30T23:09:52.311067Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2023-11-30T22:54:42.674972Z", "last_refresh": "2023-11-30T23:09:48.452759Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2023-11-30T22:54:45.114633Z", "last_refresh": "2023-11-30T23:09:52.311222Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2023-11-30T23:04:36.503792Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi167.dxieha on smithi167: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2023-11-30T23:07:14.865206Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi167.igxkgw on smithi167: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi167-igxkgw\n/bin/podman: stderr Error: error inspecting object: no such container ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi167-igxkgw\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi167.igxkgw\n/bin/podman: stderr Error: error inspecting object: no such container ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi167.igxkgw\nDeploy daemon haproxy.nfs.foo.smithi167.igxkgw ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi167 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2023-11-30T23:05:21Z\" level=warning msg=\"failed, retrying in 1s ... (1/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-11-30T23:05:59Z\" level=warning msg=\"failed, retrying in 1s ... (2/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-11-30T23:06:37Z\" level=warning msg=\"failed, retrying in 1s ... (3/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi167 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-11-30T23:09:45.061230Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi038.ubrlmp on smithi038: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi038-ubrlmp\n/bin/podman: stderr Error: error inspecting object: no such container ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi038-ubrlmp\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi038.ubrlmp\n/bin/podman: stderr Error: error inspecting object: no such container ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi038.ubrlmp\nDeploy daemon haproxy.nfs.foo.smithi038.ubrlmp ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi038 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2023-11-30T23:07:52Z\" level=warning msg=\"failed, retrying in 1s ... (1/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-11-30T23:08:30Z\" level=warning msg=\"failed, retrying in 1s ... (2/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-11-30T23:09:07Z\" level=warning msg=\"failed, retrying in 1s ... (3/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi038 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-11-30T23:09:45.062547Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi038.vjkntq on smithi038: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2023-11-30T23:09:45.063688Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi167.ndkqyv on smithi167: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.38/16"}, "status": {"created": "2023-11-30T22:58:56.312786Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.38/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2023-11-30T22:54:41.668043Z", "last_refresh": "2023-11-30T23:09:48.452908Z", "running": 2, "size": 2}}, {"events": ["2023-11-30T22:55:50.759225Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi038:172.21.15.38=smithi038", "smithi167:172.21.15.167=smithi167"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2023-11-30T22:55:50.756456Z", "last_refresh": "2023-11-30T23:09:48.452987Z", "running": 2, "size": 2}}, {"events": ["2023-11-30T22:58:56.311581Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2023-11-30T22:58:56.308071Z", "last_refresh": "2023-11-30T23:09:52.311757Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2023-11-30T22:54:46.136630Z", "last_refresh": "2023-11-30T23:09:48.453061Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2023-11-30T22:56:33.258058Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2023-11-30T22:56:33.253117Z", "last_refresh": "2023-11-30T23:09:48.453131Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2023-11-30T22:54:43.949497Z", "last_refresh": "2023-11-30T23:09:52.311357Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2023-11-30T22:58:52.105721Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2023-11-30T22:58:59.793467Z", "last_refresh": "2023-11-30T23:09:48.453411Z", "ports": [8800], "running": 2, "size": 2}}] 2023-11-30T23:10:15.059 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2023-11-30T23:10:15.274 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:10:15 smithi038 conmon[81956]: audit 2023-11-30T23:10:14.592281+0000 mgr.smithi038.ldalxq (mgr.14182) 731 : audit [DBG] from='client.15436 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-11-30T23:10:15.512 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:10:15 smithi167 conmon[87022]: audit 2023-11-30T23:10:14.592281+0000 mgr.smithi038.ldalxq (mgr.14182) 731 : audit [DBG] 2023-11-30T23:10:15.512 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:10:15 smithi167 conmon[87022]: from='client.15436 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-11-30T23:10:16.060 DEBUG:teuthology.orchestra.run.smithi038:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:0dc074ce0b0b3b4f393f56dd32ef36884ebf45a9 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 3faf8b00-8fd3-11ee-95a2-87774f69a715 -- ceph orch ls -f json 2023-11-30T23:10:16.274 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:10:16 smithi038 conmon[81956]: cluster 2023-11-30T23:10:14.936527+0000 mgr.smithi038.ldalxq (mgr.14182) 732 : cluster [DBG] pgmap v484: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2023-11-30T23:10:16.512 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:10:16 smithi167 conmon[87022]: cluster 2023-11-30T23:10:14.936527+0000 mgr.smithi038.ldalxq (mgr.14182) 732 : cluster [DBG] pgmap v484: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2023-11-30T23:10:17.824 INFO:teuthology.orchestra.run.smithi038.stdout: 2023-11-30T23:10:17.824 INFO:teuthology.orchestra.run.smithi038.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2023-11-30T22:54:47.122758Z", "last_refresh": "2023-11-30T23:09:52.311067Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2023-11-30T22:54:42.674972Z", "last_refresh": "2023-11-30T23:09:48.452759Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2023-11-30T22:54:45.114633Z", "last_refresh": "2023-11-30T23:09:52.311222Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2023-11-30T23:04:36.503792Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi167.dxieha on smithi167: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2023-11-30T23:07:14.865206Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi167.igxkgw on smithi167: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi167-igxkgw\n/bin/podman: stderr Error: error inspecting object: no such container ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi167-igxkgw\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi167.igxkgw\n/bin/podman: stderr Error: error inspecting object: no such container ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi167.igxkgw\nDeploy daemon haproxy.nfs.foo.smithi167.igxkgw ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi167 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2023-11-30T23:05:21Z\" level=warning msg=\"failed, retrying in 1s ... (1/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-11-30T23:05:59Z\" level=warning msg=\"failed, retrying in 1s ... (2/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-11-30T23:06:37Z\" level=warning msg=\"failed, retrying in 1s ... (3/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi167 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-11-30T23:09:45.061230Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi038.ubrlmp on smithi038: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi038-ubrlmp\n/bin/podman: stderr Error: error inspecting object: no such container ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi038-ubrlmp\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi038.ubrlmp\n/bin/podman: stderr Error: error inspecting object: no such container ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi038.ubrlmp\nDeploy daemon haproxy.nfs.foo.smithi038.ubrlmp ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi038 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2023-11-30T23:07:52Z\" level=warning msg=\"failed, retrying in 1s ... (1/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-11-30T23:08:30Z\" level=warning msg=\"failed, retrying in 1s ... (2/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-11-30T23:09:07Z\" level=warning msg=\"failed, retrying in 1s ... (3/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi038 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-11-30T23:09:45.062547Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi038.vjkntq on smithi038: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2023-11-30T23:09:45.063688Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi167.ndkqyv on smithi167: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.38/16"}, "status": {"created": "2023-11-30T22:58:56.312786Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.38/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2023-11-30T22:54:41.668043Z", "last_refresh": "2023-11-30T23:09:48.452908Z", "running": 2, "size": 2}}, {"events": ["2023-11-30T22:55:50.759225Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi038:172.21.15.38=smithi038", "smithi167:172.21.15.167=smithi167"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2023-11-30T22:55:50.756456Z", "last_refresh": "2023-11-30T23:09:48.452987Z", "running": 2, "size": 2}}, {"events": ["2023-11-30T22:58:56.311581Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2023-11-30T22:58:56.308071Z", "last_refresh": "2023-11-30T23:09:52.311757Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2023-11-30T22:54:46.136630Z", "last_refresh": "2023-11-30T23:09:48.453061Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2023-11-30T22:56:33.258058Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2023-11-30T22:56:33.253117Z", "last_refresh": "2023-11-30T23:09:48.453131Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2023-11-30T22:54:43.949497Z", "last_refresh": "2023-11-30T23:09:52.311357Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2023-11-30T22:58:52.105721Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2023-11-30T22:58:59.793467Z", "last_refresh": "2023-11-30T23:09:48.453411Z", "ports": [8800], "running": 2, "size": 2}}] 2023-11-30T23:10:18.218 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:10:17 smithi038 conmon[81956]: cluster 2023-11-30T23:10:16.937134+0000 mgr.smithi038.ldalxq (mgr.14182) 733 2023-11-30T23:10:18.219 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:10:17 smithi038 conmon[81956]: : cluster [DBG] pgmap v485: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2023-11-30T23:10:18.261 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:10:17 smithi167 conmon[87022]: cluster 2023-11-30T23:10:16.937134+0000 mgr.smithi038.ldalxq (mgr.14182) 733 : cluster [DBG] pgmap v485: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2023-11-30T23:10:18.320 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2023-11-30T23:10:19.262 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:10:18 smithi167 conmon[87022]: audit 2023-11-30T23:10:17.819752+0000 2023-11-30T23:10:19.262 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:10:18 smithi167 conmon[87022]: mgr.smithi038.ldalxq (mgr.14182) 734 : audit [DBG] from='client.15440 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-11-30T23:10:19.274 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:10:18 smithi038 conmon[81956]: audit 2023-11-30T23:10:17.819752+0000 mgr.smithi038.ldalxq (mgr.14182) 734 : 2023-11-30T23:10:19.274 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:10:18 smithi038 conmon[81956]: audit [DBG] from='client.15440 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-11-30T23:10:19.321 DEBUG:teuthology.orchestra.run.smithi038:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:0dc074ce0b0b3b4f393f56dd32ef36884ebf45a9 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 3faf8b00-8fd3-11ee-95a2-87774f69a715 -- ceph orch ls -f json 2023-11-30T23:10:20.066 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:10:19 smithi038 conmon[81956]: cluster 2023-11-30T23:10:18 2023-11-30T23:10:20.066 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:10:19 smithi038 conmon[81956]: .937800+0000 mgr.smithi038.ldalxq (mgr.14182) 735 : cluster [DBG] pgmap v486: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2023-11-30T23:10:20.262 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:10:19 smithi167 conmon[87022]: cluster 2023-11-30T23:10:18.937800+0000 mgr.smithi038.ldalxq (mgr.14182) 735 : cluster [DBG] pgmap v486: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2023-11-30T23:10:20.262 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:10:19 smithi167 conmon[87022]: 2023-11-30T23:10:21.162 INFO:teuthology.orchestra.run.smithi038.stdout: 2023-11-30T23:10:21.163 INFO:teuthology.orchestra.run.smithi038.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2023-11-30T22:54:47.122758Z", "last_refresh": "2023-11-30T23:09:52.311067Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2023-11-30T22:54:42.674972Z", "last_refresh": "2023-11-30T23:09:48.452759Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2023-11-30T22:54:45.114633Z", "last_refresh": "2023-11-30T23:09:52.311222Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2023-11-30T23:04:36.503792Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi167.dxieha on smithi167: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2023-11-30T23:07:14.865206Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi167.igxkgw on smithi167: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi167-igxkgw\n/bin/podman: stderr Error: error inspecting object: no such container ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi167-igxkgw\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi167.igxkgw\n/bin/podman: stderr Error: error inspecting object: no such container ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi167.igxkgw\nDeploy daemon haproxy.nfs.foo.smithi167.igxkgw ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi167 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2023-11-30T23:05:21Z\" level=warning msg=\"failed, retrying in 1s ... (1/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-11-30T23:05:59Z\" level=warning msg=\"failed, retrying in 1s ... (2/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-11-30T23:06:37Z\" level=warning msg=\"failed, retrying in 1s ... (3/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi167 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-11-30T23:09:45.061230Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi038.ubrlmp on smithi038: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi038-ubrlmp\n/bin/podman: stderr Error: error inspecting object: no such container ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi038-ubrlmp\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi038.ubrlmp\n/bin/podman: stderr Error: error inspecting object: no such container ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi038.ubrlmp\nDeploy daemon haproxy.nfs.foo.smithi038.ubrlmp ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi038 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2023-11-30T23:07:52Z\" level=warning msg=\"failed, retrying in 1s ... (1/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-11-30T23:08:30Z\" level=warning msg=\"failed, retrying in 1s ... (2/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-11-30T23:09:07Z\" level=warning msg=\"failed, retrying in 1s ... (3/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi038 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-11-30T23:09:45.062547Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi038.vjkntq on smithi038: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2023-11-30T23:09:45.063688Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi167.ndkqyv on smithi167: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.38/16"}, "status": {"created": "2023-11-30T22:58:56.312786Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.38/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2023-11-30T22:54:41.668043Z", "last_refresh": "2023-11-30T23:09:48.452908Z", "running": 2, "size": 2}}, {"events": ["2023-11-30T22:55:50.759225Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi038:172.21.15.38=smithi038", "smithi167:172.21.15.167=smithi167"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2023-11-30T22:55:50.756456Z", "last_refresh": "2023-11-30T23:09:48.452987Z", "running": 2, "size": 2}}, {"events": ["2023-11-30T22:58:56.311581Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2023-11-30T22:58:56.308071Z", "last_refresh": "2023-11-30T23:09:52.311757Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2023-11-30T22:54:46.136630Z", "last_refresh": "2023-11-30T23:09:48.453061Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2023-11-30T22:56:33.258058Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2023-11-30T22:56:33.253117Z", "last_refresh": "2023-11-30T23:09:48.453131Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2023-11-30T22:54:43.949497Z", "last_refresh": "2023-11-30T23:09:52.311357Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2023-11-30T22:58:52.105721Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2023-11-30T22:58:59.793467Z", "last_refresh": "2023-11-30T23:09:48.453411Z", "ports": [8800], "running": 2, "size": 2}}] 2023-11-30T23:10:21.584 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2023-11-30T23:10:22.262 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:10:21 smithi167 conmon[87022]: cluster 2023-11-30T23:10:20.938521+0000 mgr.smithi038.ldalxq (mgr.14182) 736 : cluster 2023-11-30T23:10:22.262 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:10:21 smithi167 conmon[87022]: [DBG] pgmap v487: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2023-11-30T23:10:22.263 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:10:21 smithi167 conmon[87022]: audit 2023-11-30T23:10:21.158049+0000 mgr.smithi038.ldalxq (mgr.14182) 737 : audit [DBG] from='client.15444 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-11-30T23:10:22.274 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:10:21 smithi038 conmon[81956]: cluster 2023-11-30T23:10:20.938521+0000 mgr.smithi038.ldalxq (mgr.14182) 736 : cluster [DBG] pgmap v487: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2023-11-30T23:10:22.274 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:10:21 smithi038 conmon[81956]: audit 2023-11-30T23:10:21.158049+0000 mgr.smithi038.ldalxq (mgr.14182) 737 : audit [DBG] from='client.15444 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-11-30T23:10:22.585 DEBUG:teuthology.orchestra.run.smithi038:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:0dc074ce0b0b3b4f393f56dd32ef36884ebf45a9 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 3faf8b00-8fd3-11ee-95a2-87774f69a715 -- ceph orch ls -f json 2023-11-30T23:10:24.262 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:10:23 smithi167 conmon[87022]: cluster 2023-11-30T23:10:22.939071+0000 mgr.smithi038.ldalxq (mgr.14182) 738 : cluster [DBG] pgmap v488: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2023-11-30T23:10:24.262 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:10:23 smithi167 conmon[87022]: 2023-11-30T23:10:24.274 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:10:23 smithi038 conmon[81956]: cluster 2023-11-30T23:10:22.939071+0000 mgr.smithi038.ldalxq (mgr.14182) 738 : cluster [DBG] pgmap v488: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2023-11-30T23:10:24.418 INFO:teuthology.orchestra.run.smithi038.stdout: 2023-11-30T23:10:24.418 INFO:teuthology.orchestra.run.smithi038.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2023-11-30T22:54:47.122758Z", "last_refresh": "2023-11-30T23:09:52.311067Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2023-11-30T22:54:42.674972Z", "last_refresh": "2023-11-30T23:09:48.452759Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2023-11-30T22:54:45.114633Z", "last_refresh": "2023-11-30T23:09:52.311222Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2023-11-30T23:04:36.503792Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi167.dxieha on smithi167: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2023-11-30T23:07:14.865206Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi167.igxkgw on smithi167: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi167-igxkgw\n/bin/podman: stderr Error: error inspecting object: no such container ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi167-igxkgw\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi167.igxkgw\n/bin/podman: stderr Error: error inspecting object: no such container ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi167.igxkgw\nDeploy daemon haproxy.nfs.foo.smithi167.igxkgw ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi167 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2023-11-30T23:05:21Z\" level=warning msg=\"failed, retrying in 1s ... (1/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-11-30T23:05:59Z\" level=warning msg=\"failed, retrying in 1s ... (2/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-11-30T23:06:37Z\" level=warning msg=\"failed, retrying in 1s ... (3/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi167 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-11-30T23:09:45.061230Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi038.ubrlmp on smithi038: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi038-ubrlmp\n/bin/podman: stderr Error: error inspecting object: no such container ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi038-ubrlmp\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi038.ubrlmp\n/bin/podman: stderr Error: error inspecting object: no such container ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi038.ubrlmp\nDeploy daemon haproxy.nfs.foo.smithi038.ubrlmp ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi038 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2023-11-30T23:07:52Z\" level=warning msg=\"failed, retrying in 1s ... (1/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-11-30T23:08:30Z\" level=warning msg=\"failed, retrying in 1s ... (2/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-11-30T23:09:07Z\" level=warning msg=\"failed, retrying in 1s ... (3/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi038 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-11-30T23:09:45.062547Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi038.vjkntq on smithi038: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2023-11-30T23:09:45.063688Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi167.ndkqyv on smithi167: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.38/16"}, "status": {"created": "2023-11-30T22:58:56.312786Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.38/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2023-11-30T22:54:41.668043Z", "last_refresh": "2023-11-30T23:09:48.452908Z", "running": 2, "size": 2}}, {"events": ["2023-11-30T22:55:50.759225Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi038:172.21.15.38=smithi038", "smithi167:172.21.15.167=smithi167"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2023-11-30T22:55:50.756456Z", "last_refresh": "2023-11-30T23:09:48.452987Z", "running": 2, "size": 2}}, {"events": ["2023-11-30T22:58:56.311581Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2023-11-30T22:58:56.308071Z", "last_refresh": "2023-11-30T23:09:52.311757Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2023-11-30T22:54:46.136630Z", "last_refresh": "2023-11-30T23:09:48.453061Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2023-11-30T22:56:33.258058Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2023-11-30T22:56:33.253117Z", "last_refresh": "2023-11-30T23:09:48.453131Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2023-11-30T22:54:43.949497Z", "last_refresh": "2023-11-30T23:09:52.311357Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2023-11-30T22:58:52.105721Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2023-11-30T22:58:59.793467Z", "last_refresh": "2023-11-30T23:09:48.453411Z", "ports": [8800], "running": 2, "size": 2}}] 2023-11-30T23:10:24.836 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2023-11-30T23:10:25.261 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:10:25 smithi167 conmon[87022]: audit 2023-11-30T23:10:24.414231+0000 mgr.smithi038.ldalxq (mgr.14182) 739 : audit [DBG] 2023-11-30T23:10:25.262 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:10:25 smithi167 conmon[87022]: from='client.15448 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-11-30T23:10:25.274 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:10:25 smithi038 conmon[81956]: audit 2023-11-30T23:10:24.414231+0000 mgr.smithi038.ldalxq (mgr. 2023-11-30T23:10:25.274 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:10:25 smithi038 conmon[81956]: 14182) 739 : audit [DBG] from='client.15448 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-11-30T23:10:25.837 DEBUG:teuthology.orchestra.run.smithi038:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:0dc074ce0b0b3b4f393f56dd32ef36884ebf45a9 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 3faf8b00-8fd3-11ee-95a2-87774f69a715 -- ceph orch ls -f json 2023-11-30T23:10:26.262 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:10:26 smithi167 conmon[87022]: cluster 2023-11-30T23:10:24.939779+0000 mgr.smithi038.ldalxq (mgr.14182) 740 : cluster [DBG] pgmap v489: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2023-11-30T23:10:26.274 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:10:26 smithi038 conmon[81956]: cluster 2023-11-30T23:10:24.939779+0000 mgr.smithi038.ldalxq (mgr.14182) 740 : cluster 2023-11-30T23:10:26.274 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:10:26 smithi038 conmon[81956]: [DBG] pgmap v489: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2023-11-30T23:10:27.554 INFO:teuthology.orchestra.run.smithi038.stdout: 2023-11-30T23:10:27.555 INFO:teuthology.orchestra.run.smithi038.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2023-11-30T22:54:47.122758Z", "last_refresh": "2023-11-30T23:09:52.311067Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2023-11-30T22:54:42.674972Z", "last_refresh": "2023-11-30T23:09:48.452759Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2023-11-30T22:54:45.114633Z", "last_refresh": "2023-11-30T23:09:52.311222Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2023-11-30T23:04:36.503792Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi167.dxieha on smithi167: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2023-11-30T23:07:14.865206Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi167.igxkgw on smithi167: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi167-igxkgw\n/bin/podman: stderr Error: error inspecting object: no such container ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi167-igxkgw\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi167.igxkgw\n/bin/podman: stderr Error: error inspecting object: no such container ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi167.igxkgw\nDeploy daemon haproxy.nfs.foo.smithi167.igxkgw ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi167 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2023-11-30T23:05:21Z\" level=warning msg=\"failed, retrying in 1s ... (1/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-11-30T23:05:59Z\" level=warning msg=\"failed, retrying in 1s ... (2/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-11-30T23:06:37Z\" level=warning msg=\"failed, retrying in 1s ... (3/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi167 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-11-30T23:09:45.061230Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi038.ubrlmp on smithi038: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi038-ubrlmp\n/bin/podman: stderr Error: error inspecting object: no such container ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi038-ubrlmp\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi038.ubrlmp\n/bin/podman: stderr Error: error inspecting object: no such container ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi038.ubrlmp\nDeploy daemon haproxy.nfs.foo.smithi038.ubrlmp ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi038 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2023-11-30T23:07:52Z\" level=warning msg=\"failed, retrying in 1s ... (1/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-11-30T23:08:30Z\" level=warning msg=\"failed, retrying in 1s ... (2/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-11-30T23:09:07Z\" level=warning msg=\"failed, retrying in 1s ... (3/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi038 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-11-30T23:09:45.062547Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi038.vjkntq on smithi038: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2023-11-30T23:09:45.063688Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi167.ndkqyv on smithi167: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.38/16"}, "status": {"created": "2023-11-30T22:58:56.312786Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.38/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2023-11-30T22:54:41.668043Z", "last_refresh": "2023-11-30T23:09:48.452908Z", "running": 2, "size": 2}}, {"events": ["2023-11-30T22:55:50.759225Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi038:172.21.15.38=smithi038", "smithi167:172.21.15.167=smithi167"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2023-11-30T22:55:50.756456Z", "last_refresh": "2023-11-30T23:09:48.452987Z", "running": 2, "size": 2}}, {"events": ["2023-11-30T22:58:56.311581Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2023-11-30T22:58:56.308071Z", "last_refresh": "2023-11-30T23:09:52.311757Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2023-11-30T22:54:46.136630Z", "last_refresh": "2023-11-30T23:09:48.453061Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2023-11-30T22:56:33.258058Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2023-11-30T22:56:33.253117Z", "last_refresh": "2023-11-30T23:09:48.453131Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2023-11-30T22:54:43.949497Z", "last_refresh": "2023-11-30T23:09:52.311357Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2023-11-30T22:58:52.105721Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2023-11-30T22:58:59.793467Z", "last_refresh": "2023-11-30T23:09:48.453411Z", "ports": [8800], "running": 2, "size": 2}}] 2023-11-30T23:10:27.981 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:10:27 smithi038 conmon[81956]: cluster 2023-11-30T23:10:26.940317+0000 mgr.smithi038.ldalxq (mgr.14182) 741 : cluster [DBG] pgmap v490: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2023-11-30T23:10:27.981 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:10:27 smithi038 conmon[81956]: audit 2023-11-30T23:10:27.550244+0000 mgr.smithi038.ldalxq (mgr.14182) 742 : audit [DBG] from='client.15452 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-11-30T23:10:27.991 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2023-11-30T23:10:28.262 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:10:27 smithi167 conmon[87022]: cluster 2023-11-30T23:10:26.940317+0000 mgr.smithi038.ldalxq (mgr.14182) 741 : cluster [DBG] pgmap v490: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2023-11-30T23:10:28.262 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:10:27 smithi167 conmon[87022]: audit 2023-11-30T23:10:27.550244+0000 mgr.smithi038.ldalxq (mgr.14182) 742 : audit [DBG] from='client.15452 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-11-30T23:10:28.992 DEBUG:teuthology.orchestra.run.smithi038:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:0dc074ce0b0b3b4f393f56dd32ef36884ebf45a9 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 3faf8b00-8fd3-11ee-95a2-87774f69a715 -- ceph orch ls -f json 2023-11-30T23:10:30.262 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:10:30 smithi167 conmon[87022]: cluster 2023-11-30T23:10:28.941202+0000 mgr.smithi038.ldalxq (mgr.14182) 743 : cluster [DBG] pgmap v491: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2023-11-30T23:10:30.273 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:10:29 smithi038 conmon[81956]: cluster 2023-11-30T23:10:28.941202+0000 mgr.smithi038.ldalxq (mgr.14182) 743 : cluster [DBG] pgmap v491: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2023-11-30T23:10:30.788 INFO:teuthology.orchestra.run.smithi038.stdout: 2023-11-30T23:10:30.788 INFO:teuthology.orchestra.run.smithi038.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2023-11-30T22:54:47.122758Z", "last_refresh": "2023-11-30T23:09:52.311067Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2023-11-30T22:54:42.674972Z", "last_refresh": "2023-11-30T23:09:48.452759Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2023-11-30T22:54:45.114633Z", "last_refresh": "2023-11-30T23:09:52.311222Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2023-11-30T23:04:36.503792Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi167.dxieha on smithi167: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2023-11-30T23:07:14.865206Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi167.igxkgw on smithi167: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi167-igxkgw\n/bin/podman: stderr Error: error inspecting object: no such container ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi167-igxkgw\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi167.igxkgw\n/bin/podman: stderr Error: error inspecting object: no such container ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi167.igxkgw\nDeploy daemon haproxy.nfs.foo.smithi167.igxkgw ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi167 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2023-11-30T23:05:21Z\" level=warning msg=\"failed, retrying in 1s ... (1/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-11-30T23:05:59Z\" level=warning msg=\"failed, retrying in 1s ... (2/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-11-30T23:06:37Z\" level=warning msg=\"failed, retrying in 1s ... (3/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi167 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-11-30T23:09:45.061230Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi038.ubrlmp on smithi038: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi038-ubrlmp\n/bin/podman: stderr Error: error inspecting object: no such container ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi038-ubrlmp\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi038.ubrlmp\n/bin/podman: stderr Error: error inspecting object: no such container ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi038.ubrlmp\nDeploy daemon haproxy.nfs.foo.smithi038.ubrlmp ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi038 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2023-11-30T23:07:52Z\" level=warning msg=\"failed, retrying in 1s ... (1/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-11-30T23:08:30Z\" level=warning msg=\"failed, retrying in 1s ... (2/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-11-30T23:09:07Z\" level=warning msg=\"failed, retrying in 1s ... (3/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi038 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-11-30T23:09:45.062547Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi038.vjkntq on smithi038: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2023-11-30T23:09:45.063688Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi167.ndkqyv on smithi167: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.38/16"}, "status": {"created": "2023-11-30T22:58:56.312786Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.38/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2023-11-30T22:54:41.668043Z", "last_refresh": "2023-11-30T23:09:48.452908Z", "running": 2, "size": 2}}, {"events": ["2023-11-30T22:55:50.759225Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi038:172.21.15.38=smithi038", "smithi167:172.21.15.167=smithi167"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2023-11-30T22:55:50.756456Z", "last_refresh": "2023-11-30T23:09:48.452987Z", "running": 2, "size": 2}}, {"events": ["2023-11-30T22:58:56.311581Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2023-11-30T22:58:56.308071Z", "last_refresh": "2023-11-30T23:09:52.311757Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2023-11-30T22:54:46.136630Z", "last_refresh": "2023-11-30T23:09:48.453061Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2023-11-30T22:56:33.258058Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2023-11-30T22:56:33.253117Z", "last_refresh": "2023-11-30T23:09:48.453131Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2023-11-30T22:54:43.949497Z", "last_refresh": "2023-11-30T23:09:52.311357Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2023-11-30T22:58:52.105721Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2023-11-30T22:58:59.793467Z", "last_refresh": "2023-11-30T23:09:48.453411Z", "ports": [8800], "running": 2, "size": 2}}] 2023-11-30T23:10:31.243 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2023-11-30T23:10:32.244 DEBUG:teuthology.orchestra.run.smithi038:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:0dc074ce0b0b3b4f393f56dd32ef36884ebf45a9 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 3faf8b00-8fd3-11ee-95a2-87774f69a715 -- ceph orch ls -f json 2023-11-30T23:10:32.261 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:10:32 smithi167 conmon[87022]: audit 2023-11-30T23:10:30.783865+0000 mgr.smithi038.ldalxq (mgr.14182) 744 : audit [DBG] from='client.15456 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-11-30T23:10:32.262 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:10:32 smithi167 conmon[87022]: cluster 2023-11-30T23:10:30.942003+0000 mgr.smithi038.ldalxq (mgr.14182) 745 : cluster [DBG] pgmap v492: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2023-11-30T23:10:32.274 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:10:32 smithi038 conmon[81956]: audit 2023-11-30T23:10:30.783865+0000 mgr.smithi038.ldalxq (mgr.14182) 744 : audit [DBG] from='client.15456 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-11-30T23:10:32.274 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:10:32 smithi038 conmon[81956]: cluster 2023-11-30T23:10:30.942003+0000 mgr.smithi038.ldalxq (mgr.14182) 745 : cluster [DBG] pgmap v492: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2023-11-30T23:10:34.049 INFO:teuthology.orchestra.run.smithi038.stdout: 2023-11-30T23:10:34.049 INFO:teuthology.orchestra.run.smithi038.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2023-11-30T22:54:47.122758Z", "last_refresh": "2023-11-30T23:09:52.311067Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2023-11-30T22:54:42.674972Z", "last_refresh": "2023-11-30T23:09:48.452759Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2023-11-30T22:54:45.114633Z", "last_refresh": "2023-11-30T23:09:52.311222Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2023-11-30T23:04:36.503792Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi167.dxieha on smithi167: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2023-11-30T23:07:14.865206Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi167.igxkgw on smithi167: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi167-igxkgw\n/bin/podman: stderr Error: error inspecting object: no such container ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi167-igxkgw\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi167.igxkgw\n/bin/podman: stderr Error: error inspecting object: no such container ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi167.igxkgw\nDeploy daemon haproxy.nfs.foo.smithi167.igxkgw ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi167 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2023-11-30T23:05:21Z\" level=warning msg=\"failed, retrying in 1s ... (1/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-11-30T23:05:59Z\" level=warning msg=\"failed, retrying in 1s ... (2/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-11-30T23:06:37Z\" level=warning msg=\"failed, retrying in 1s ... (3/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi167 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-11-30T23:09:45.061230Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi038.ubrlmp on smithi038: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi038-ubrlmp\n/bin/podman: stderr Error: error inspecting object: no such container ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi038-ubrlmp\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi038.ubrlmp\n/bin/podman: stderr Error: error inspecting object: no such container ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi038.ubrlmp\nDeploy daemon haproxy.nfs.foo.smithi038.ubrlmp ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi038 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2023-11-30T23:07:52Z\" level=warning msg=\"failed, retrying in 1s ... (1/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-11-30T23:08:30Z\" level=warning msg=\"failed, retrying in 1s ... (2/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-11-30T23:09:07Z\" level=warning msg=\"failed, retrying in 1s ... (3/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi038 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-11-30T23:09:45.062547Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi038.vjkntq on smithi038: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2023-11-30T23:09:45.063688Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi167.ndkqyv on smithi167: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.38/16"}, "status": {"created": "2023-11-30T22:58:56.312786Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.38/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2023-11-30T22:54:41.668043Z", "last_refresh": "2023-11-30T23:09:48.452908Z", "running": 2, "size": 2}}, {"events": ["2023-11-30T22:55:50.759225Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi038:172.21.15.38=smithi038", "smithi167:172.21.15.167=smithi167"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2023-11-30T22:55:50.756456Z", "last_refresh": "2023-11-30T23:09:48.452987Z", "running": 2, "size": 2}}, {"events": ["2023-11-30T22:58:56.311581Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2023-11-30T22:58:56.308071Z", "last_refresh": "2023-11-30T23:09:52.311757Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2023-11-30T22:54:46.136630Z", "last_refresh": "2023-11-30T23:09:48.453061Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2023-11-30T22:56:33.258058Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2023-11-30T22:56:33.253117Z", "last_refresh": "2023-11-30T23:09:48.453131Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2023-11-30T22:54:43.949497Z", "last_refresh": "2023-11-30T23:09:52.311357Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2023-11-30T22:58:52.105721Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2023-11-30T22:58:59.793467Z", "last_refresh": "2023-11-30T23:09:48.453411Z", "ports": [8800], "running": 2, "size": 2}}] 2023-11-30T23:10:34.274 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:10:34 smithi038 conmon[81956]: cluster 2023-11-30T23:10:32.942720+0000 2023-11-30T23:10:34.274 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:10:34 smithi038 conmon[81956]: mgr.smithi038.ldalxq (mgr.14182) 746 : cluster [DBG] pgmap v493: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2023-11-30T23:10:34.508 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2023-11-30T23:10:34.511 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:10:34 smithi167 conmon[87022]: cluster 2023-11-30T23:10:32.942720+0000 mgr.smithi038.ldalxq (mgr.14182) 746 : cluster [DBG] 2023-11-30T23:10:34.511 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:10:34 smithi167 conmon[87022]: pgmap v493: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2023-11-30T23:10:35.509 DEBUG:teuthology.orchestra.run.smithi038:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:0dc074ce0b0b3b4f393f56dd32ef36884ebf45a9 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 3faf8b00-8fd3-11ee-95a2-87774f69a715 -- ceph orch ls -f json 2023-11-30T23:10:35.511 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:10:35 smithi167 conmon[87022]: audit 2023-11-30T23:10:34.045181+0000 mgr.smithi038.ldalxq (mgr.14182) 747 : audit [DBG] 2023-11-30T23:10:35.512 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:10:35 smithi167 conmon[87022]: from='client.15460 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-11-30T23:10:35.523 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:10:35 smithi038 conmon[81956]: audit 2023-11-30T23:10:34.045181+0000 mgr.smithi038.ldalxq (mgr.14182) 747 : audit [DBG] from='client.15460 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-11-30T23:10:36.437 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:10:36 smithi038 conmon[81956]: cluster 2023-11-30T23:10:34.943452+0000 mgr.smithi038.ldalxq ( 2023-11-30T23:10:36.437 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:10:36 smithi038 conmon[81956]: mgr.14182) 748 : cluster [DBG] pgmap v494: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2023-11-30T23:10:36.512 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:10:36 smithi167 conmon[87022]: cluster 2023-11-30T23:10:34.943452+0000 mgr.smithi038.ldalxq (mgr.14182) 748 : cluster [DBG] pgmap v494: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2023-11-30T23:10:37.296 INFO:teuthology.orchestra.run.smithi038.stdout: 2023-11-30T23:10:37.297 INFO:teuthology.orchestra.run.smithi038.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2023-11-30T22:54:47.122758Z", "last_refresh": "2023-11-30T23:09:52.311067Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2023-11-30T22:54:42.674972Z", "last_refresh": "2023-11-30T23:09:48.452759Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2023-11-30T22:54:45.114633Z", "last_refresh": "2023-11-30T23:09:52.311222Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2023-11-30T23:04:36.503792Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi167.dxieha on smithi167: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2023-11-30T23:07:14.865206Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi167.igxkgw on smithi167: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi167-igxkgw\n/bin/podman: stderr Error: error inspecting object: no such container ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi167-igxkgw\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi167.igxkgw\n/bin/podman: stderr Error: error inspecting object: no such container ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi167.igxkgw\nDeploy daemon haproxy.nfs.foo.smithi167.igxkgw ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi167 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2023-11-30T23:05:21Z\" level=warning msg=\"failed, retrying in 1s ... (1/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-11-30T23:05:59Z\" level=warning msg=\"failed, retrying in 1s ... (2/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-11-30T23:06:37Z\" level=warning msg=\"failed, retrying in 1s ... (3/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi167 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-11-30T23:09:45.061230Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi038.ubrlmp on smithi038: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi038-ubrlmp\n/bin/podman: stderr Error: error inspecting object: no such container ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi038-ubrlmp\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi038.ubrlmp\n/bin/podman: stderr Error: error inspecting object: no such container ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi038.ubrlmp\nDeploy daemon haproxy.nfs.foo.smithi038.ubrlmp ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi038 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2023-11-30T23:07:52Z\" level=warning msg=\"failed, retrying in 1s ... (1/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-11-30T23:08:30Z\" level=warning msg=\"failed, retrying in 1s ... (2/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-11-30T23:09:07Z\" level=warning msg=\"failed, retrying in 1s ... (3/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi038 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-11-30T23:09:45.062547Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi038.vjkntq on smithi038: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2023-11-30T23:09:45.063688Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi167.ndkqyv on smithi167: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.38/16"}, "status": {"created": "2023-11-30T22:58:56.312786Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.38/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2023-11-30T22:54:41.668043Z", "last_refresh": "2023-11-30T23:09:48.452908Z", "running": 2, "size": 2}}, {"events": ["2023-11-30T22:55:50.759225Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi038:172.21.15.38=smithi038", "smithi167:172.21.15.167=smithi167"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2023-11-30T22:55:50.756456Z", "last_refresh": "2023-11-30T23:09:48.452987Z", "running": 2, "size": 2}}, {"events": ["2023-11-30T22:58:56.311581Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2023-11-30T22:58:56.308071Z", "last_refresh": "2023-11-30T23:09:52.311757Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2023-11-30T22:54:46.136630Z", "last_refresh": "2023-11-30T23:09:48.453061Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2023-11-30T22:56:33.258058Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2023-11-30T22:56:33.253117Z", "last_refresh": "2023-11-30T23:09:48.453131Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2023-11-30T22:54:43.949497Z", "last_refresh": "2023-11-30T23:09:52.311357Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2023-11-30T22:58:52.105721Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2023-11-30T22:58:59.793467Z", "last_refresh": "2023-11-30T23:09:48.453411Z", "ports": [8800], "running": 2, "size": 2}}] 2023-11-30T23:10:37.760 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2023-11-30T23:10:38.024 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:10:37 smithi038 conmon[81956]: cluster 2023-11-30T23:10:36.944022+0000 mgr.smithi038.ldalxq (mgr.14182) 749 : cluster [DBG] pgmap v495: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2023-11-30T23:10:38.024 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:10:37 smithi038 conmon[81956]: audit 2023-11-30T23:10:37.292723+0000 mgr.smithi038.ldalxq (mgr.14182) 750 : audit [DBG] from='client.15464 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-11-30T23:10:38.262 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:10:37 smithi167 conmon[87022]: cluster 2023-11-30T23:10:36.944022+0000 mgr.smithi038.ldalxq (mgr.14182) 749 : cluster [DBG] pgmap v495: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2023-11-30T23:10:38.262 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:10:37 smithi167 conmon[87022]: audit 2023-11-30T23:10:37.292723+0000 mgr.smithi038.ldalxq (mgr.14182) 750 : audit [DBG] from='client.15464 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-11-30T23:10:38.761 DEBUG:teuthology.orchestra.run.smithi038:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:0dc074ce0b0b3b4f393f56dd32ef36884ebf45a9 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 3faf8b00-8fd3-11ee-95a2-87774f69a715 -- ceph orch ls -f json 2023-11-30T23:10:40.262 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:10:40 smithi167 conmon[87022]: cluster 2023-11-30T23:10:38.944728+0000 mgr.smithi038.ldalxq (mgr.14182) 751 : cluster [DBG] pgmap v496: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2023-11-30T23:10:40.274 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:10:40 smithi038 conmon[81956]: cluster 2023-11-30T23:10:38.944728+0000 mgr.smithi038.ldalxq (mgr.14182) 751 : cluster [DBG] pgmap v496: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2023-11-30T23:10:40.510 INFO:teuthology.orchestra.run.smithi038.stdout: 2023-11-30T23:10:40.510 INFO:teuthology.orchestra.run.smithi038.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2023-11-30T22:54:47.122758Z", "last_refresh": "2023-11-30T23:09:52.311067Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2023-11-30T22:54:42.674972Z", "last_refresh": "2023-11-30T23:09:48.452759Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2023-11-30T22:54:45.114633Z", "last_refresh": "2023-11-30T23:09:52.311222Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2023-11-30T23:04:36.503792Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi167.dxieha on smithi167: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2023-11-30T23:07:14.865206Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi167.igxkgw on smithi167: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi167-igxkgw\n/bin/podman: stderr Error: error inspecting object: no such container ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi167-igxkgw\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi167.igxkgw\n/bin/podman: stderr Error: error inspecting object: no such container ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi167.igxkgw\nDeploy daemon haproxy.nfs.foo.smithi167.igxkgw ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi167 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2023-11-30T23:05:21Z\" level=warning msg=\"failed, retrying in 1s ... (1/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-11-30T23:05:59Z\" level=warning msg=\"failed, retrying in 1s ... (2/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-11-30T23:06:37Z\" level=warning msg=\"failed, retrying in 1s ... (3/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi167 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-11-30T23:09:45.061230Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi038.ubrlmp on smithi038: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi038-ubrlmp\n/bin/podman: stderr Error: error inspecting object: no such container ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi038-ubrlmp\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi038.ubrlmp\n/bin/podman: stderr Error: error inspecting object: no such container ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi038.ubrlmp\nDeploy daemon haproxy.nfs.foo.smithi038.ubrlmp ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi038 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2023-11-30T23:07:52Z\" level=warning msg=\"failed, retrying in 1s ... (1/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-11-30T23:08:30Z\" level=warning msg=\"failed, retrying in 1s ... (2/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-11-30T23:09:07Z\" level=warning msg=\"failed, retrying in 1s ... (3/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi038 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-11-30T23:09:45.062547Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi038.vjkntq on smithi038: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2023-11-30T23:09:45.063688Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi167.ndkqyv on smithi167: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.38/16"}, "status": {"created": "2023-11-30T22:58:56.312786Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.38/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2023-11-30T22:54:41.668043Z", "last_refresh": "2023-11-30T23:09:48.452908Z", "running": 2, "size": 2}}, {"events": ["2023-11-30T22:55:50.759225Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi038:172.21.15.38=smithi038", "smithi167:172.21.15.167=smithi167"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2023-11-30T22:55:50.756456Z", "last_refresh": "2023-11-30T23:09:48.452987Z", "running": 2, "size": 2}}, {"events": ["2023-11-30T22:58:56.311581Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2023-11-30T22:58:56.308071Z", "last_refresh": "2023-11-30T23:09:52.311757Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2023-11-30T22:54:46.136630Z", "last_refresh": "2023-11-30T23:09:48.453061Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2023-11-30T22:56:33.258058Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2023-11-30T22:56:33.253117Z", "last_refresh": "2023-11-30T23:09:48.453131Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2023-11-30T22:54:43.949497Z", "last_refresh": "2023-11-30T23:09:52.311357Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2023-11-30T22:58:52.105721Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2023-11-30T22:58:59.793467Z", "last_refresh": "2023-11-30T23:09:48.453411Z", "ports": [8800], "running": 2, "size": 2}}] 2023-11-30T23:10:40.909 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2023-11-30T23:10:41.274 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:10:41 smithi038 conmon[81956]: audit 2023-11-30T23:10:40.505525+0000 mgr.smithi038.ldalxq (mgr.14182) 2023-11-30T23:10:41.274 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:10:41 smithi038 conmon[81956]: 752 : audit [DBG] from='client.15468 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-11-30T23:10:41.512 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:10:41 smithi167 conmon[87022]: audit 2023-11-30T23:10:40.505525+0000 mgr.smithi038.ldalxq (mgr.14182) 752 : audit [DBG] from='client.15468 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-11-30T23:10:41.911 DEBUG:teuthology.orchestra.run.smithi038:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:0dc074ce0b0b3b4f393f56dd32ef36884ebf45a9 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 3faf8b00-8fd3-11ee-95a2-87774f69a715 -- ceph orch ls -f json 2023-11-30T23:10:42.269 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:10:42 smithi167 conmon[87022]: cluster 2023-11-30T23:10:40.945498+0000 mgr.smithi038.ldalxq (mgr.14182) 753 : cluster [DBG] pgmap v497: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2023-11-30T23:10:42.274 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:10:42 smithi038 conmon[81956]: cluster 2023-11-30T23:10:40.945498+0000 mgr.smithi038.ldalxq (mgr.14182) 753 : cluster 2023-11-30T23:10:42.274 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:10:42 smithi038 conmon[81956]: [DBG] pgmap v497: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2023-11-30T23:10:43.641 INFO:teuthology.orchestra.run.smithi038.stdout: 2023-11-30T23:10:43.641 INFO:teuthology.orchestra.run.smithi038.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2023-11-30T22:54:47.122758Z", "last_refresh": "2023-11-30T23:09:52.311067Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2023-11-30T22:54:42.674972Z", "last_refresh": "2023-11-30T23:09:48.452759Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2023-11-30T22:54:45.114633Z", "last_refresh": "2023-11-30T23:09:52.311222Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2023-11-30T23:04:36.503792Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi167.dxieha on smithi167: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2023-11-30T23:07:14.865206Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi167.igxkgw on smithi167: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi167-igxkgw\n/bin/podman: stderr Error: error inspecting object: no such container ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi167-igxkgw\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi167.igxkgw\n/bin/podman: stderr Error: error inspecting object: no such container ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi167.igxkgw\nDeploy daemon haproxy.nfs.foo.smithi167.igxkgw ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi167 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2023-11-30T23:05:21Z\" level=warning msg=\"failed, retrying in 1s ... (1/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-11-30T23:05:59Z\" level=warning msg=\"failed, retrying in 1s ... (2/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-11-30T23:06:37Z\" level=warning msg=\"failed, retrying in 1s ... (3/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi167 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-11-30T23:09:45.061230Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi038.ubrlmp on smithi038: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi038-ubrlmp\n/bin/podman: stderr Error: error inspecting object: no such container ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi038-ubrlmp\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi038.ubrlmp\n/bin/podman: stderr Error: error inspecting object: no such container ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi038.ubrlmp\nDeploy daemon haproxy.nfs.foo.smithi038.ubrlmp ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi038 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2023-11-30T23:07:52Z\" level=warning msg=\"failed, retrying in 1s ... (1/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-11-30T23:08:30Z\" level=warning msg=\"failed, retrying in 1s ... (2/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-11-30T23:09:07Z\" level=warning msg=\"failed, retrying in 1s ... (3/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi038 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-11-30T23:09:45.062547Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi038.vjkntq on smithi038: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2023-11-30T23:09:45.063688Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi167.ndkqyv on smithi167: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.38/16"}, "status": {"created": "2023-11-30T22:58:56.312786Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.38/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2023-11-30T22:54:41.668043Z", "last_refresh": "2023-11-30T23:09:48.452908Z", "running": 2, "size": 2}}, {"events": ["2023-11-30T22:55:50.759225Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi038:172.21.15.38=smithi038", "smithi167:172.21.15.167=smithi167"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2023-11-30T22:55:50.756456Z", "last_refresh": "2023-11-30T23:09:48.452987Z", "running": 2, "size": 2}}, {"events": ["2023-11-30T22:58:56.311581Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2023-11-30T22:58:56.308071Z", "last_refresh": "2023-11-30T23:09:52.311757Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2023-11-30T22:54:46.136630Z", "last_refresh": "2023-11-30T23:09:48.453061Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2023-11-30T22:56:33.258058Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2023-11-30T22:56:33.253117Z", "last_refresh": "2023-11-30T23:09:48.453131Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2023-11-30T22:54:43.949497Z", "last_refresh": "2023-11-30T23:09:52.311357Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2023-11-30T22:58:52.105721Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2023-11-30T22:58:59.793467Z", "last_refresh": "2023-11-30T23:09:48.453411Z", "ports": [8800], "running": 2, "size": 2}}] 2023-11-30T23:10:44.067 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2023-11-30T23:10:44.273 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:10:44 smithi038 conmon[81956]: cluster 2023-11-30T23:10:42.946030+0000 mgr.smithi038.ldalxq (mgr.14182) 754 : cluster [DBG] pgmap v498: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2023-11-30T23:10:44.274 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:10:44 smithi038 conmon[81956]: audit 2023-11-30T23:10:43.636159+0000 mgr.smithi038.ldalxq (mgr.14182) 755 : audit [DBG] from='client.15472 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-11-30T23:10:44.512 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:10:44 smithi167 conmon[87022]: cluster 2023-11-30T23:10:42.946030+0000 mgr.smithi038.ldalxq (mgr.14182) 754 : cluster [DBG] pgmap v498: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2023-11-30T23:10:44.512 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:10:44 smithi167 conmon[87022]: audit 2023-11-30T23:10:43.636159+0000 2023-11-30T23:10:44.512 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:10:44 smithi167 conmon[87022]: mgr.smithi038.ldalxq (mgr.14182) 755 : audit [DBG] from='client.15472 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-11-30T23:10:45.068 DEBUG:teuthology.orchestra.run.smithi038:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:0dc074ce0b0b3b4f393f56dd32ef36884ebf45a9 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 3faf8b00-8fd3-11ee-95a2-87774f69a715 -- ceph orch ls -f json 2023-11-30T23:10:46.274 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:10:46 smithi038 conmon[81956]: cluster 2023-11-30T23:10:44.946853+0000 mgr.smithi038.ldalxq (mgr.14182) 756 : cluster [DBG] pgmap v499: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2023-11-30T23:10:46.512 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:10:46 smithi167 conmon[87022]: cluster 2023-11-30T23:10:44.946853+0000 mgr.smithi038.ldalxq (mgr.14182) 756 : cluster [DBG] pgmap v499: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2023-11-30T23:10:46.880 INFO:teuthology.orchestra.run.smithi038.stdout: 2023-11-30T23:10:46.880 INFO:teuthology.orchestra.run.smithi038.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2023-11-30T22:54:47.122758Z", "last_refresh": "2023-11-30T23:09:52.311067Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2023-11-30T22:54:42.674972Z", "last_refresh": "2023-11-30T23:09:48.452759Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2023-11-30T22:54:45.114633Z", "last_refresh": "2023-11-30T23:09:52.311222Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2023-11-30T23:04:36.503792Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi167.dxieha on smithi167: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2023-11-30T23:07:14.865206Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi167.igxkgw on smithi167: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi167-igxkgw\n/bin/podman: stderr Error: error inspecting object: no such container ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi167-igxkgw\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi167.igxkgw\n/bin/podman: stderr Error: error inspecting object: no such container ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi167.igxkgw\nDeploy daemon haproxy.nfs.foo.smithi167.igxkgw ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi167 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2023-11-30T23:05:21Z\" level=warning msg=\"failed, retrying in 1s ... (1/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-11-30T23:05:59Z\" level=warning msg=\"failed, retrying in 1s ... (2/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-11-30T23:06:37Z\" level=warning msg=\"failed, retrying in 1s ... (3/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi167 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-11-30T23:09:45.061230Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi038.ubrlmp on smithi038: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi038-ubrlmp\n/bin/podman: stderr Error: error inspecting object: no such container ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi038-ubrlmp\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi038.ubrlmp\n/bin/podman: stderr Error: error inspecting object: no such container ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi038.ubrlmp\nDeploy daemon haproxy.nfs.foo.smithi038.ubrlmp ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi038 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2023-11-30T23:07:52Z\" level=warning msg=\"failed, retrying in 1s ... (1/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-11-30T23:08:30Z\" level=warning msg=\"failed, retrying in 1s ... (2/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-11-30T23:09:07Z\" level=warning msg=\"failed, retrying in 1s ... (3/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi038 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-11-30T23:09:45.062547Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi038.vjkntq on smithi038: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2023-11-30T23:09:45.063688Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi167.ndkqyv on smithi167: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.38/16"}, "status": {"created": "2023-11-30T22:58:56.312786Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.38/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2023-11-30T22:54:41.668043Z", "last_refresh": "2023-11-30T23:09:48.452908Z", "running": 2, "size": 2}}, {"events": ["2023-11-30T22:55:50.759225Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi038:172.21.15.38=smithi038", "smithi167:172.21.15.167=smithi167"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2023-11-30T22:55:50.756456Z", "last_refresh": "2023-11-30T23:09:48.452987Z", "running": 2, "size": 2}}, {"events": ["2023-11-30T22:58:56.311581Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2023-11-30T22:58:56.308071Z", "last_refresh": "2023-11-30T23:09:52.311757Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2023-11-30T22:54:46.136630Z", "last_refresh": "2023-11-30T23:09:48.453061Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2023-11-30T22:56:33.258058Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2023-11-30T22:56:33.253117Z", "last_refresh": "2023-11-30T23:09:48.453131Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2023-11-30T22:54:43.949497Z", "last_refresh": "2023-11-30T23:09:52.311357Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2023-11-30T22:58:52.105721Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2023-11-30T22:58:59.793467Z", "last_refresh": "2023-11-30T23:09:48.453411Z", "ports": [8800], "running": 2, "size": 2}}] 2023-11-30T23:10:47.332 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2023-11-30T23:10:48.262 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:10:47 smithi167 conmon[87022]: audit 2023-11-30T23:10:46.875440+0000 2023-11-30T23:10:48.262 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:10:47 smithi167 conmon[87022]: mgr.smithi038.ldalxq (mgr.14182) 757 : audit [DBG] from='client.15476 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-11-30T23:10:48.262 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:10:47 smithi167 conmon[87022]: cluster 2023-11-30T23:10:46.947368+0000 mgr.smithi038.ldalxq (mgr.14182) 758 : cluster [DBG] pgmap v500: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2023-11-30T23:10:48.274 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:10:47 smithi038 conmon[81956]: audit 2023-11-30T23:10:46.875440+0000 mgr.smithi038.ldalxq (mgr.14182) 757 : 2023-11-30T23:10:48.274 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:10:47 smithi038 conmon[81956]: audit [DBG] from='client.15476 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-11-30T23:10:48.274 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:10:47 smithi038 conmon[81956]: cluster 2023-11-30T23:10:46.947368+0000 mgr.smithi038.ldalxq (mgr.14182) 758 : cluster [DBG] pgmap v500: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2023-11-30T23:10:48.333 DEBUG:teuthology.orchestra.run.smithi038:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:0dc074ce0b0b3b4f393f56dd32ef36884ebf45a9 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 3faf8b00-8fd3-11ee-95a2-87774f69a715 -- ceph orch ls -f json 2023-11-30T23:10:49.933 INFO:teuthology.orchestra.run.smithi038.stdout: 2023-11-30T23:10:49.933 INFO:teuthology.orchestra.run.smithi038.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2023-11-30T22:54:47.122758Z", "last_refresh": "2023-11-30T23:09:52.311067Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2023-11-30T22:54:42.674972Z", "last_refresh": "2023-11-30T23:09:48.452759Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2023-11-30T22:54:45.114633Z", "last_refresh": "2023-11-30T23:09:52.311222Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2023-11-30T23:04:36.503792Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi167.dxieha on smithi167: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2023-11-30T23:07:14.865206Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi167.igxkgw on smithi167: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi167-igxkgw\n/bin/podman: stderr Error: error inspecting object: no such container ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi167-igxkgw\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi167.igxkgw\n/bin/podman: stderr Error: error inspecting object: no such container ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi167.igxkgw\nDeploy daemon haproxy.nfs.foo.smithi167.igxkgw ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi167 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2023-11-30T23:05:21Z\" level=warning msg=\"failed, retrying in 1s ... (1/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-11-30T23:05:59Z\" level=warning msg=\"failed, retrying in 1s ... (2/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-11-30T23:06:37Z\" level=warning msg=\"failed, retrying in 1s ... (3/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi167 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-11-30T23:09:45.061230Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi038.ubrlmp on smithi038: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi038-ubrlmp\n/bin/podman: stderr Error: error inspecting object: no such container ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi038-ubrlmp\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi038.ubrlmp\n/bin/podman: stderr Error: error inspecting object: no such container ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi038.ubrlmp\nDeploy daemon haproxy.nfs.foo.smithi038.ubrlmp ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi038 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2023-11-30T23:07:52Z\" level=warning msg=\"failed, retrying in 1s ... (1/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-11-30T23:08:30Z\" level=warning msg=\"failed, retrying in 1s ... (2/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-11-30T23:09:07Z\" level=warning msg=\"failed, retrying in 1s ... (3/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi038 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-11-30T23:09:45.062547Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi038.vjkntq on smithi038: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2023-11-30T23:09:45.063688Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi167.ndkqyv on smithi167: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.38/16"}, "status": {"created": "2023-11-30T22:58:56.312786Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.38/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2023-11-30T22:54:41.668043Z", "last_refresh": "2023-11-30T23:09:48.452908Z", "running": 2, "size": 2}}, {"events": ["2023-11-30T22:55:50.759225Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi038:172.21.15.38=smithi038", "smithi167:172.21.15.167=smithi167"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2023-11-30T22:55:50.756456Z", "last_refresh": "2023-11-30T23:09:48.452987Z", "running": 2, "size": 2}}, {"events": ["2023-11-30T22:58:56.311581Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2023-11-30T22:58:56.308071Z", "last_refresh": "2023-11-30T23:09:52.311757Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2023-11-30T22:54:46.136630Z", "last_refresh": "2023-11-30T23:09:48.453061Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2023-11-30T22:56:33.258058Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2023-11-30T22:56:33.253117Z", "last_refresh": "2023-11-30T23:09:48.453131Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2023-11-30T22:54:43.949497Z", "last_refresh": "2023-11-30T23:09:52.311357Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2023-11-30T22:58:52.105721Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2023-11-30T22:58:59.793467Z", "last_refresh": "2023-11-30T23:09:48.453411Z", "ports": [8800], "running": 2, "size": 2}}] 2023-11-30T23:10:50.261 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:10:50 smithi167 conmon[87022]: cluster 2023-11-30T23:10:48.947886+0000 mgr.smithi038.ldalxq (mgr.14182) 759 : cluster [DBG] pgmap v501: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2023-11-30T23:10:50.273 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:10:50 smithi038 conmon[81956]: cluster 2023-11-30T23:10:48.947886+0000 mgr.smithi038.ldalxq (mgr.14182) 759 : cluster [DBG] pgmap v501: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2023-11-30T23:10:50.298 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2023-11-30T23:10:51.262 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:10:51 smithi167 conmon[87022]: audit 2023-11-30T23:10:49.928592+0000 mgr.smithi038.ldalxq (mgr.14182) 760 : audit [DBG] from='client.15480 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-11-30T23:10:51.273 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:10:51 smithi038 conmon[81956]: audit 2023-11-30T23:10:49.928592+0000 mgr.smithi038.ldalxq (mgr.14182 2023-11-30T23:10:51.274 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:10:51 smithi038 conmon[81956]: ) 760 : audit [DBG] from='client.15480 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-11-30T23:10:51.299 DEBUG:teuthology.orchestra.run.smithi038:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:0dc074ce0b0b3b4f393f56dd32ef36884ebf45a9 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 3faf8b00-8fd3-11ee-95a2-87774f69a715 -- ceph orch ls -f json 2023-11-30T23:10:52.269 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:10:52 smithi167 conmon[87022]: cluster 2023-11-30T23:10:50.948713+0000 mgr.smithi038.ldalxq (mgr.14182) 761 : cluster [DBG] pgmap v502: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2023-11-30T23:10:52.307 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:10:52 smithi038 conmon[81956]: cluster 2023-11-30T23:10:50.948713+0000 2023-11-30T23:10:52.308 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:10:52 smithi038 conmon[81956]: mgr.smithi038.ldalxq (mgr.14182) 761 : cluster [DBG] pgmap v502: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2023-11-30T23:10:53.132 INFO:teuthology.orchestra.run.smithi038.stdout: 2023-11-30T23:10:53.132 INFO:teuthology.orchestra.run.smithi038.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2023-11-30T22:54:47.122758Z", "last_refresh": "2023-11-30T23:09:52.311067Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2023-11-30T22:54:42.674972Z", "last_refresh": "2023-11-30T23:09:48.452759Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2023-11-30T22:54:45.114633Z", "last_refresh": "2023-11-30T23:09:52.311222Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2023-11-30T23:04:36.503792Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi167.dxieha on smithi167: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2023-11-30T23:07:14.865206Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi167.igxkgw on smithi167: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi167-igxkgw\n/bin/podman: stderr Error: error inspecting object: no such container ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi167-igxkgw\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi167.igxkgw\n/bin/podman: stderr Error: error inspecting object: no such container ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi167.igxkgw\nDeploy daemon haproxy.nfs.foo.smithi167.igxkgw ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi167 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2023-11-30T23:05:21Z\" level=warning msg=\"failed, retrying in 1s ... (1/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-11-30T23:05:59Z\" level=warning msg=\"failed, retrying in 1s ... (2/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-11-30T23:06:37Z\" level=warning msg=\"failed, retrying in 1s ... (3/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi167 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-11-30T23:09:45.061230Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi038.ubrlmp on smithi038: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi038-ubrlmp\n/bin/podman: stderr Error: error inspecting object: no such container ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi038-ubrlmp\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi038.ubrlmp\n/bin/podman: stderr Error: error inspecting object: no such container ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi038.ubrlmp\nDeploy daemon haproxy.nfs.foo.smithi038.ubrlmp ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi038 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2023-11-30T23:07:52Z\" level=warning msg=\"failed, retrying in 1s ... (1/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-11-30T23:08:30Z\" level=warning msg=\"failed, retrying in 1s ... (2/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-11-30T23:09:07Z\" level=warning msg=\"failed, retrying in 1s ... (3/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi038 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-11-30T23:09:45.062547Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi038.vjkntq on smithi038: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2023-11-30T23:09:45.063688Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi167.ndkqyv on smithi167: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.38/16"}, "status": {"created": "2023-11-30T22:58:56.312786Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.38/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2023-11-30T22:54:41.668043Z", "last_refresh": "2023-11-30T23:09:48.452908Z", "running": 2, "size": 2}}, {"events": ["2023-11-30T22:55:50.759225Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi038:172.21.15.38=smithi038", "smithi167:172.21.15.167=smithi167"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2023-11-30T22:55:50.756456Z", "last_refresh": "2023-11-30T23:09:48.452987Z", "running": 2, "size": 2}}, {"events": ["2023-11-30T22:58:56.311581Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2023-11-30T22:58:56.308071Z", "last_refresh": "2023-11-30T23:09:52.311757Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2023-11-30T22:54:46.136630Z", "last_refresh": "2023-11-30T23:09:48.453061Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2023-11-30T22:56:33.258058Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2023-11-30T22:56:33.253117Z", "last_refresh": "2023-11-30T23:09:48.453131Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2023-11-30T22:54:43.949497Z", "last_refresh": "2023-11-30T23:09:52.311357Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2023-11-30T22:58:52.105721Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2023-11-30T22:58:59.793467Z", "last_refresh": "2023-11-30T23:09:48.453411Z", "ports": [8800], "running": 2, "size": 2}}] 2023-11-30T23:10:53.555 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2023-11-30T23:10:54.274 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:10:54 smithi038 conmon[81956]: cluster 2023-11-30T23:10:52.949247+0000 mgr.smithi038.ldalxq (mgr.14182) 762 : cluster [DBG] pgmap v503: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2023-11-30T23:10:54.274 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:10:54 smithi038 conmon[81956]: audit 2023-11-30T23:10:53.128139+0000 mgr.smithi038.ldalxq (mgr.14182) 763 : audit [DBG] from='client.15484 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-11-30T23:10:54.512 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:10:54 smithi167 conmon[87022]: cluster 2023-11-30T23:10:52.949247+0000 mgr.smithi038.ldalxq (mgr.14182) 762 : cluster [DBG] pgmap v503: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2023-11-30T23:10:54.512 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:10:54 smithi167 conmon[87022]: 2023-11-30T23:10:54.512 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:10:54 smithi167 conmon[87022]: audit 2023-11-30T23:10:53.128139+0000 mgr.smithi038.ldalxq (mgr.14182) 763 : audit [DBG] from='client.15484 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-11-30T23:10:54.556 DEBUG:teuthology.orchestra.run.smithi038:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:0dc074ce0b0b3b4f393f56dd32ef36884ebf45a9 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 3faf8b00-8fd3-11ee-95a2-87774f69a715 -- ceph orch ls -f json 2023-11-30T23:10:56.274 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:10:56 smithi038 conmon[81956]: cluster 2023-11-30T23:10:54.949960+0000 mgr.smithi038.ldalxq (mgr.14182) 764 : cluster [DBG] pgmap v504: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2023-11-30T23:10:56.344 INFO:teuthology.orchestra.run.smithi038.stdout: 2023-11-30T23:10:56.345 INFO:teuthology.orchestra.run.smithi038.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2023-11-30T22:54:47.122758Z", "last_refresh": "2023-11-30T23:09:52.311067Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2023-11-30T22:54:42.674972Z", "last_refresh": "2023-11-30T23:09:48.452759Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2023-11-30T22:54:45.114633Z", "last_refresh": "2023-11-30T23:09:52.311222Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2023-11-30T23:04:36.503792Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi167.dxieha on smithi167: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2023-11-30T23:07:14.865206Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi167.igxkgw on smithi167: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi167-igxkgw\n/bin/podman: stderr Error: error inspecting object: no such container ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi167-igxkgw\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi167.igxkgw\n/bin/podman: stderr Error: error inspecting object: no such container ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi167.igxkgw\nDeploy daemon haproxy.nfs.foo.smithi167.igxkgw ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi167 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2023-11-30T23:05:21Z\" level=warning msg=\"failed, retrying in 1s ... (1/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-11-30T23:05:59Z\" level=warning msg=\"failed, retrying in 1s ... (2/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-11-30T23:06:37Z\" level=warning msg=\"failed, retrying in 1s ... (3/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi167 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-11-30T23:09:45.061230Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi038.ubrlmp on smithi038: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi038-ubrlmp\n/bin/podman: stderr Error: error inspecting object: no such container ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi038-ubrlmp\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi038.ubrlmp\n/bin/podman: stderr Error: error inspecting object: no such container ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi038.ubrlmp\nDeploy daemon haproxy.nfs.foo.smithi038.ubrlmp ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi038 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2023-11-30T23:07:52Z\" level=warning msg=\"failed, retrying in 1s ... (1/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-11-30T23:08:30Z\" level=warning msg=\"failed, retrying in 1s ... (2/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-11-30T23:09:07Z\" level=warning msg=\"failed, retrying in 1s ... (3/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi038 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-11-30T23:09:45.062547Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi038.vjkntq on smithi038: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2023-11-30T23:09:45.063688Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi167.ndkqyv on smithi167: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.38/16"}, "status": {"created": "2023-11-30T22:58:56.312786Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.38/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2023-11-30T22:54:41.668043Z", "last_refresh": "2023-11-30T23:09:48.452908Z", "running": 2, "size": 2}}, {"events": ["2023-11-30T22:55:50.759225Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi038:172.21.15.38=smithi038", "smithi167:172.21.15.167=smithi167"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2023-11-30T22:55:50.756456Z", "last_refresh": "2023-11-30T23:09:48.452987Z", "running": 2, "size": 2}}, {"events": ["2023-11-30T22:58:56.311581Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2023-11-30T22:58:56.308071Z", "last_refresh": "2023-11-30T23:09:52.311757Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2023-11-30T22:54:46.136630Z", "last_refresh": "2023-11-30T23:09:48.453061Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2023-11-30T22:56:33.258058Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2023-11-30T22:56:33.253117Z", "last_refresh": "2023-11-30T23:09:48.453131Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2023-11-30T22:54:43.949497Z", "last_refresh": "2023-11-30T23:09:52.311357Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2023-11-30T22:58:52.105721Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2023-11-30T22:58:59.793467Z", "last_refresh": "2023-11-30T23:09:48.453411Z", "ports": [8800], "running": 2, "size": 2}}] 2023-11-30T23:10:56.512 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:10:56 smithi167 conmon[87022]: cluster 2023-11-30T23:10:54.949960+0000 2023-11-30T23:10:56.512 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:10:56 smithi167 conmon[87022]: mgr.smithi038.ldalxq (mgr.14182) 764 : cluster [DBG] pgmap v504: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2023-11-30T23:10:56.817 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2023-11-30T23:10:57.274 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:10:57 smithi038 conmon[81956]: audit 2023-11-30T23:10:56.340097+0000 mgr.smithi038.ldalxq (mgr.14182) 765 : audit [DBG] from='client.15488 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-11-30T23:10:57.511 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:10:57 smithi167 conmon[87022]: audit 2023-11-30T23:10:56.340097+0000 mgr.smithi038.ldalxq (mgr.14182) 765 : audit [DBG] from='client.15488 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-11-30T23:10:57.818 DEBUG:teuthology.orchestra.run.smithi038:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:0dc074ce0b0b3b4f393f56dd32ef36884ebf45a9 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 3faf8b00-8fd3-11ee-95a2-87774f69a715 -- ceph orch ls -f json 2023-11-30T23:10:58.274 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:10:58 smithi038 conmon[81956]: cluster 2023-11-30T23:10:56.950467+0000 mgr.smithi038.ldalxq (mgr.14182) 766 : cluster [DBG] pgmap v505: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2023-11-30T23:10:58.512 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:10:58 smithi167 conmon[87022]: cluster 2023-11-30T23:10:56.950467+0000 mgr.smithi038.ldalxq (mgr.14182) 766 : cluster [DBG] 2023-11-30T23:10:58.512 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:10:58 smithi167 conmon[87022]: pgmap v505: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2023-11-30T23:10:59.646 INFO:teuthology.orchestra.run.smithi038.stdout: 2023-11-30T23:10:59.647 INFO:teuthology.orchestra.run.smithi038.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2023-11-30T22:54:47.122758Z", "last_refresh": "2023-11-30T23:09:52.311067Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2023-11-30T22:54:42.674972Z", "last_refresh": "2023-11-30T23:09:48.452759Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2023-11-30T22:54:45.114633Z", "last_refresh": "2023-11-30T23:09:52.311222Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2023-11-30T23:04:36.503792Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi167.dxieha on smithi167: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2023-11-30T23:07:14.865206Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi167.igxkgw on smithi167: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi167-igxkgw\n/bin/podman: stderr Error: error inspecting object: no such container ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi167-igxkgw\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi167.igxkgw\n/bin/podman: stderr Error: error inspecting object: no such container ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi167.igxkgw\nDeploy daemon haproxy.nfs.foo.smithi167.igxkgw ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi167 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2023-11-30T23:05:21Z\" level=warning msg=\"failed, retrying in 1s ... (1/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-11-30T23:05:59Z\" level=warning msg=\"failed, retrying in 1s ... (2/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-11-30T23:06:37Z\" level=warning msg=\"failed, retrying in 1s ... (3/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi167 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-11-30T23:09:45.061230Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi038.ubrlmp on smithi038: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi038-ubrlmp\n/bin/podman: stderr Error: error inspecting object: no such container ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi038-ubrlmp\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi038.ubrlmp\n/bin/podman: stderr Error: error inspecting object: no such container ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi038.ubrlmp\nDeploy daemon haproxy.nfs.foo.smithi038.ubrlmp ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi038 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2023-11-30T23:07:52Z\" level=warning msg=\"failed, retrying in 1s ... (1/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-11-30T23:08:30Z\" level=warning msg=\"failed, retrying in 1s ... (2/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-11-30T23:09:07Z\" level=warning msg=\"failed, retrying in 1s ... (3/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi038 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-11-30T23:09:45.062547Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi038.vjkntq on smithi038: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2023-11-30T23:09:45.063688Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi167.ndkqyv on smithi167: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.38/16"}, "status": {"created": "2023-11-30T22:58:56.312786Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.38/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2023-11-30T22:54:41.668043Z", "last_refresh": "2023-11-30T23:09:48.452908Z", "running": 2, "size": 2}}, {"events": ["2023-11-30T22:55:50.759225Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi038:172.21.15.38=smithi038", "smithi167:172.21.15.167=smithi167"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2023-11-30T22:55:50.756456Z", "last_refresh": "2023-11-30T23:09:48.452987Z", "running": 2, "size": 2}}, {"events": ["2023-11-30T22:58:56.311581Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2023-11-30T22:58:56.308071Z", "last_refresh": "2023-11-30T23:09:52.311757Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2023-11-30T22:54:46.136630Z", "last_refresh": "2023-11-30T23:09:48.453061Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2023-11-30T22:56:33.258058Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2023-11-30T22:56:33.253117Z", "last_refresh": "2023-11-30T23:09:48.453131Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2023-11-30T22:54:43.949497Z", "last_refresh": "2023-11-30T23:09:52.311357Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2023-11-30T22:58:52.105721Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2023-11-30T22:58:59.793467Z", "last_refresh": "2023-11-30T23:09:48.453411Z", "ports": [8800], "running": 2, "size": 2}}] 2023-11-30T23:11:00.081 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2023-11-30T23:11:00.274 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:11:00 smithi038 conmon[81956]: cluster 2023-11-30T23:10:58.951257+0000 mgr.smithi038.ldalxq (mgr.14182) 767 : cluster [DBG] pgmap v506: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2023-11-30T23:11:00.274 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:11:00 smithi038 conmon[81956]: audit 2023-11-30T23:10:59.642425+0000 mgr.smithi038.ldalxq (mgr.14182) 768 : audit [DBG] from='client.15492 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-11-30T23:11:00.512 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:11:00 smithi167 conmon[87022]: cluster 2023-11-30T23:10:58.951257+0000 mgr.smithi038.ldalxq (mgr.14182) 767 : cluster [DBG] pgmap v506: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2023-11-30T23:11:00.512 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:11:00 smithi167 conmon[87022]: audit 2023-11-30T23:10:59.642425+0000 mgr.smithi038.ldalxq (mgr.14182) 768 : audit [DBG] from='client.15492 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-11-30T23:11:01.083 DEBUG:teuthology.orchestra.run.smithi038:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:0dc074ce0b0b3b4f393f56dd32ef36884ebf45a9 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 3faf8b00-8fd3-11ee-95a2-87774f69a715 -- ceph orch ls -f json 2023-11-30T23:11:02.274 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:11:02 smithi038 conmon[81956]: cluster 2023-11-30T23:11:00. 2023-11-30T23:11:02.274 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:11:02 smithi038 conmon[81956]: 952141+0000 mgr.smithi038.ldalxq (mgr.14182) 769 : cluster [DBG] pgmap v507: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2023-11-30T23:11:02.512 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:11:02 smithi167 conmon[87022]: cluster 2023-11-30T23:11:00.952141+0000 mgr.smithi038.ldalxq (mgr.14182) 769 : cluster [DBG] pgmap v507: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2023-11-30T23:11:02.795 INFO:teuthology.orchestra.run.smithi038.stdout: 2023-11-30T23:11:02.796 INFO:teuthology.orchestra.run.smithi038.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2023-11-30T22:54:47.122758Z", "last_refresh": "2023-11-30T23:09:52.311067Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2023-11-30T22:54:42.674972Z", "last_refresh": "2023-11-30T23:09:48.452759Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2023-11-30T22:54:45.114633Z", "last_refresh": "2023-11-30T23:09:52.311222Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2023-11-30T23:04:36.503792Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi167.dxieha on smithi167: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2023-11-30T23:07:14.865206Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi167.igxkgw on smithi167: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi167-igxkgw\n/bin/podman: stderr Error: error inspecting object: no such container ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi167-igxkgw\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi167.igxkgw\n/bin/podman: stderr Error: error inspecting object: no such container ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi167.igxkgw\nDeploy daemon haproxy.nfs.foo.smithi167.igxkgw ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi167 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2023-11-30T23:05:21Z\" level=warning msg=\"failed, retrying in 1s ... (1/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-11-30T23:05:59Z\" level=warning msg=\"failed, retrying in 1s ... (2/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-11-30T23:06:37Z\" level=warning msg=\"failed, retrying in 1s ... (3/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi167 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-11-30T23:09:45.061230Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi038.ubrlmp on smithi038: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi038-ubrlmp\n/bin/podman: stderr Error: error inspecting object: no such container ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi038-ubrlmp\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi038.ubrlmp\n/bin/podman: stderr Error: error inspecting object: no such container ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi038.ubrlmp\nDeploy daemon haproxy.nfs.foo.smithi038.ubrlmp ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi038 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2023-11-30T23:07:52Z\" level=warning msg=\"failed, retrying in 1s ... (1/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-11-30T23:08:30Z\" level=warning msg=\"failed, retrying in 1s ... (2/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-11-30T23:09:07Z\" level=warning msg=\"failed, retrying in 1s ... (3/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi038 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-11-30T23:09:45.062547Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi038.vjkntq on smithi038: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2023-11-30T23:09:45.063688Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi167.ndkqyv on smithi167: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.38/16"}, "status": {"created": "2023-11-30T22:58:56.312786Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.38/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2023-11-30T22:54:41.668043Z", "last_refresh": "2023-11-30T23:09:48.452908Z", "running": 2, "size": 2}}, {"events": ["2023-11-30T22:55:50.759225Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi038:172.21.15.38=smithi038", "smithi167:172.21.15.167=smithi167"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2023-11-30T22:55:50.756456Z", "last_refresh": "2023-11-30T23:09:48.452987Z", "running": 2, "size": 2}}, {"events": ["2023-11-30T22:58:56.311581Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2023-11-30T22:58:56.308071Z", "last_refresh": "2023-11-30T23:09:52.311757Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2023-11-30T22:54:46.136630Z", "last_refresh": "2023-11-30T23:09:48.453061Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2023-11-30T22:56:33.258058Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2023-11-30T22:56:33.253117Z", "last_refresh": "2023-11-30T23:09:48.453131Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2023-11-30T22:54:43.949497Z", "last_refresh": "2023-11-30T23:09:52.311357Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2023-11-30T22:58:52.105721Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2023-11-30T22:58:59.793467Z", "last_refresh": "2023-11-30T23:09:48.453411Z", "ports": [8800], "running": 2, "size": 2}}] 2023-11-30T23:11:03.234 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2023-11-30T23:11:04.235 DEBUG:teuthology.orchestra.run.smithi038:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:0dc074ce0b0b3b4f393f56dd32ef36884ebf45a9 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 3faf8b00-8fd3-11ee-95a2-87774f69a715 -- ceph orch ls -f json 2023-11-30T23:11:04.512 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:11:04 smithi167 conmon[87022]: audit 2023-11-30T23:11:02.791670+0000 mgr.smithi038.ldalxq (mgr.14182) 770 : audit [DBG] from='client.15496 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-11-30T23:11:04.512 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:11:04 smithi167 conmon[87022]: cluster 2023-11-30T23:11:02.952709+0000 mgr.smithi038.ldalxq (mgr.14182) 771 : cluster [DBG] pgmap v508: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2023-11-30T23:11:04.524 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:11:04 smithi038 conmon[81956]: audit 2023-11-30T23:11:02.791670+0000 mgr.smithi038.ldalxq (mgr.14182) 770 : audit [DBG] from='client.15496 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-11-30T23:11:04.524 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:11:04 smithi038 conmon[81956]: cluster 2023-11-30T23:11:02.952709+0000 mgr.smithi038.ldalxq (mgr.14182) 771 : cluster [DBG] pgmap v508: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2023-11-30T23:11:05.945 INFO:teuthology.orchestra.run.smithi038.stdout: 2023-11-30T23:11:05.945 INFO:teuthology.orchestra.run.smithi038.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2023-11-30T22:54:47.122758Z", "last_refresh": "2023-11-30T23:09:52.311067Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2023-11-30T22:54:42.674972Z", "last_refresh": "2023-11-30T23:09:48.452759Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2023-11-30T22:54:45.114633Z", "last_refresh": "2023-11-30T23:09:52.311222Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2023-11-30T23:04:36.503792Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi167.dxieha on smithi167: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2023-11-30T23:07:14.865206Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi167.igxkgw on smithi167: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi167-igxkgw\n/bin/podman: stderr Error: error inspecting object: no such container ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi167-igxkgw\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi167.igxkgw\n/bin/podman: stderr Error: error inspecting object: no such container ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi167.igxkgw\nDeploy daemon haproxy.nfs.foo.smithi167.igxkgw ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi167 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2023-11-30T23:05:21Z\" level=warning msg=\"failed, retrying in 1s ... (1/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-11-30T23:05:59Z\" level=warning msg=\"failed, retrying in 1s ... (2/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-11-30T23:06:37Z\" level=warning msg=\"failed, retrying in 1s ... (3/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi167 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-11-30T23:09:45.061230Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi038.ubrlmp on smithi038: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi038-ubrlmp\n/bin/podman: stderr Error: error inspecting object: no such container ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi038-ubrlmp\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi038.ubrlmp\n/bin/podman: stderr Error: error inspecting object: no such container ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi038.ubrlmp\nDeploy daemon haproxy.nfs.foo.smithi038.ubrlmp ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi038 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2023-11-30T23:07:52Z\" level=warning msg=\"failed, retrying in 1s ... (1/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-11-30T23:08:30Z\" level=warning msg=\"failed, retrying in 1s ... (2/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-11-30T23:09:07Z\" level=warning msg=\"failed, retrying in 1s ... (3/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi038 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-11-30T23:09:45.062547Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi038.vjkntq on smithi038: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2023-11-30T23:09:45.063688Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi167.ndkqyv on smithi167: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.38/16"}, "status": {"created": "2023-11-30T22:58:56.312786Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.38/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2023-11-30T22:54:41.668043Z", "last_refresh": "2023-11-30T23:09:48.452908Z", "running": 2, "size": 2}}, {"events": ["2023-11-30T22:55:50.759225Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi038:172.21.15.38=smithi038", "smithi167:172.21.15.167=smithi167"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2023-11-30T22:55:50.756456Z", "last_refresh": "2023-11-30T23:09:48.452987Z", "running": 2, "size": 2}}, {"events": ["2023-11-30T22:58:56.311581Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2023-11-30T22:58:56.308071Z", "last_refresh": "2023-11-30T23:09:52.311757Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2023-11-30T22:54:46.136630Z", "last_refresh": "2023-11-30T23:09:48.453061Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2023-11-30T22:56:33.258058Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2023-11-30T22:56:33.253117Z", "last_refresh": "2023-11-30T23:09:48.453131Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2023-11-30T22:54:43.949497Z", "last_refresh": "2023-11-30T23:09:52.311357Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2023-11-30T22:58:52.105721Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2023-11-30T22:58:59.793467Z", "last_refresh": "2023-11-30T23:09:48.453411Z", "ports": [8800], "running": 2, "size": 2}}] 2023-11-30T23:11:06.274 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:11:06 smithi038 conmon[81956]: cluster 2023-11-30T23:11:04.953591+0000 mgr.smithi038.ldalxq (mgr.14182) 772 : cluster [DBG] pgmap v509: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2023-11-30T23:11:06.390 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2023-11-30T23:11:06.512 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:11:06 smithi167 conmon[87022]: cluster 2023-11-30T23:11:04.953591+0000 mgr.smithi038.ldalxq (mgr.14182) 772 : cluster [DBG] 2023-11-30T23:11:06.512 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:11:06 smithi167 conmon[87022]: pgmap v509: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2023-11-30T23:11:07.391 DEBUG:teuthology.orchestra.run.smithi038:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:0dc074ce0b0b3b4f393f56dd32ef36884ebf45a9 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 3faf8b00-8fd3-11ee-95a2-87774f69a715 -- ceph orch ls -f json 2023-11-30T23:11:07.422 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:11:07 smithi038 conmon[81956]: audit 2023-11-30T23:11:05.940958+0000 mgr.smithi038.ldalxq (mgr.14182) 773 : audit [DBG] from='client.15500 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-11-30T23:11:07.512 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:11:07 smithi167 conmon[87022]: audit 2023-11-30T23:11:05.940958+0000 mgr.smithi038.ldalxq (mgr.14182) 773 : audit [DBG] from='client.15500 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-11-30T23:11:07.512 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:11:07 smithi167 conmon[87022]: 2023-11-30T23:11:08.274 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:11:08 smithi038 conmon[81956]: cluster 2023-11-30T23:11:06.954121+0000 mgr.smithi038.ldalxq (mgr.14182) 774 : cluster [DBG] pgmap v510: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2023-11-30T23:11:08.512 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:11:08 smithi167 conmon[87022]: cluster 2023-11-30T23:11:06.954121+0000 mgr.smithi038.ldalxq (mgr.14182) 774 : cluster [DBG] pgmap v510: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2023-11-30T23:11:09.278 INFO:teuthology.orchestra.run.smithi038.stdout: 2023-11-30T23:11:09.278 INFO:teuthology.orchestra.run.smithi038.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2023-11-30T22:54:47.122758Z", "last_refresh": "2023-11-30T23:09:52.311067Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2023-11-30T22:54:42.674972Z", "last_refresh": "2023-11-30T23:09:48.452759Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2023-11-30T22:54:45.114633Z", "last_refresh": "2023-11-30T23:09:52.311222Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2023-11-30T23:04:36.503792Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi167.dxieha on smithi167: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2023-11-30T23:07:14.865206Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi167.igxkgw on smithi167: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi167-igxkgw\n/bin/podman: stderr Error: error inspecting object: no such container ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi167-igxkgw\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi167.igxkgw\n/bin/podman: stderr Error: error inspecting object: no such container ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi167.igxkgw\nDeploy daemon haproxy.nfs.foo.smithi167.igxkgw ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi167 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2023-11-30T23:05:21Z\" level=warning msg=\"failed, retrying in 1s ... (1/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-11-30T23:05:59Z\" level=warning msg=\"failed, retrying in 1s ... (2/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-11-30T23:06:37Z\" level=warning msg=\"failed, retrying in 1s ... (3/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi167 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-11-30T23:09:45.061230Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi038.ubrlmp on smithi038: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi038-ubrlmp\n/bin/podman: stderr Error: error inspecting object: no such container ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi038-ubrlmp\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi038.ubrlmp\n/bin/podman: stderr Error: error inspecting object: no such container ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi038.ubrlmp\nDeploy daemon haproxy.nfs.foo.smithi038.ubrlmp ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi038 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2023-11-30T23:07:52Z\" level=warning msg=\"failed, retrying in 1s ... (1/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-11-30T23:08:30Z\" level=warning msg=\"failed, retrying in 1s ... (2/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-11-30T23:09:07Z\" level=warning msg=\"failed, retrying in 1s ... (3/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi038 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-11-30T23:09:45.062547Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi038.vjkntq on smithi038: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2023-11-30T23:09:45.063688Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi167.ndkqyv on smithi167: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.38/16"}, "status": {"created": "2023-11-30T22:58:56.312786Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.38/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2023-11-30T22:54:41.668043Z", "last_refresh": "2023-11-30T23:09:48.452908Z", "running": 2, "size": 2}}, {"events": ["2023-11-30T22:55:50.759225Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi038:172.21.15.38=smithi038", "smithi167:172.21.15.167=smithi167"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2023-11-30T22:55:50.756456Z", "last_refresh": "2023-11-30T23:09:48.452987Z", "running": 2, "size": 2}}, {"events": ["2023-11-30T22:58:56.311581Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2023-11-30T22:58:56.308071Z", "last_refresh": "2023-11-30T23:09:52.311757Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2023-11-30T22:54:46.136630Z", "last_refresh": "2023-11-30T23:09:48.453061Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2023-11-30T22:56:33.258058Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2023-11-30T22:56:33.253117Z", "last_refresh": "2023-11-30T23:09:48.453131Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2023-11-30T22:54:43.949497Z", "last_refresh": "2023-11-30T23:09:52.311357Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2023-11-30T22:58:52.105721Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2023-11-30T22:58:59.793467Z", "last_refresh": "2023-11-30T23:09:48.453411Z", "ports": [8800], "running": 2, "size": 2}}] 2023-11-30T23:11:09.852 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2023-11-30T23:11:10.512 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:11:10 smithi167 conmon[87022]: cluster 2023-11-30T23:11:08.954660+0000 mgr.smithi038.ldalxq (mgr.14182) 775 : cluster [DBG] pgmap v511: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2023-11-30T23:11:10.512 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:11:10 smithi167 conmon[87022]: 2023-11-30T23:11:10.512 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:11:10 smithi167 conmon[87022]: audit 2023-11-30T23:11:09.273971+0000 mgr.smithi038.ldalxq (mgr.14182) 776 : audit [DBG] from='client.15504 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-11-30T23:11:10.524 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:11:10 smithi038 conmon[81956]: cluster 2023-11-30T23:11:08.954660+0000 mgr.smithi038.ldalxq (mgr.14182) 775 2023-11-30T23:11:10.524 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:11:10 smithi038 conmon[81956]: : cluster [DBG] pgmap v511: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2023-11-30T23:11:10.525 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:11:10 smithi038 conmon[81956]: audit 2023-11-30T23:11:09.273971+0000 mgr.smithi038.ldalxq (mgr.14182) 776 : audit [DBG] from='client.15504 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-11-30T23:11:10.854 DEBUG:teuthology.orchestra.run.smithi038:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:0dc074ce0b0b3b4f393f56dd32ef36884ebf45a9 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 3faf8b00-8fd3-11ee-95a2-87774f69a715 -- ceph orch ls -f json 2023-11-30T23:11:12.331 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:11:12 smithi038 conmon[81956]: cluster 2023-11-30T23:11:10.955397+0000 mgr.smithi038.ldalxq (mgr.14182) 777 : 2023-11-30T23:11:12.331 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:11:12 smithi038 conmon[81956]: cluster [DBG] pgmap v512: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2023-11-30T23:11:12.512 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:11:12 smithi167 conmon[87022]: cluster 2023-11-30T23:11:10.955397+0000 mgr.smithi038.ldalxq (mgr.14182) 777 : cluster [DBG] pgmap v512: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2023-11-30T23:11:12.667 INFO:teuthology.orchestra.run.smithi038.stdout: 2023-11-30T23:11:12.668 INFO:teuthology.orchestra.run.smithi038.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2023-11-30T22:54:47.122758Z", "last_refresh": "2023-11-30T23:09:52.311067Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2023-11-30T22:54:42.674972Z", "last_refresh": "2023-11-30T23:09:48.452759Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2023-11-30T22:54:45.114633Z", "last_refresh": "2023-11-30T23:09:52.311222Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2023-11-30T23:04:36.503792Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi167.dxieha on smithi167: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2023-11-30T23:07:14.865206Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi167.igxkgw on smithi167: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi167-igxkgw\n/bin/podman: stderr Error: error inspecting object: no such container ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi167-igxkgw\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi167.igxkgw\n/bin/podman: stderr Error: error inspecting object: no such container ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi167.igxkgw\nDeploy daemon haproxy.nfs.foo.smithi167.igxkgw ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi167 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2023-11-30T23:05:21Z\" level=warning msg=\"failed, retrying in 1s ... (1/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-11-30T23:05:59Z\" level=warning msg=\"failed, retrying in 1s ... (2/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-11-30T23:06:37Z\" level=warning msg=\"failed, retrying in 1s ... (3/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi167 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-11-30T23:09:45.061230Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi038.ubrlmp on smithi038: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi038-ubrlmp\n/bin/podman: stderr Error: error inspecting object: no such container ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi038-ubrlmp\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi038.ubrlmp\n/bin/podman: stderr Error: error inspecting object: no such container ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi038.ubrlmp\nDeploy daemon haproxy.nfs.foo.smithi038.ubrlmp ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi038 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2023-11-30T23:07:52Z\" level=warning msg=\"failed, retrying in 1s ... (1/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-11-30T23:08:30Z\" level=warning msg=\"failed, retrying in 1s ... (2/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-11-30T23:09:07Z\" level=warning msg=\"failed, retrying in 1s ... (3/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi038 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-11-30T23:09:45.062547Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi038.vjkntq on smithi038: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2023-11-30T23:09:45.063688Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi167.ndkqyv on smithi167: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.38/16"}, "status": {"created": "2023-11-30T22:58:56.312786Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.38/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2023-11-30T22:54:41.668043Z", "last_refresh": "2023-11-30T23:09:48.452908Z", "running": 2, "size": 2}}, {"events": ["2023-11-30T22:55:50.759225Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi038:172.21.15.38=smithi038", "smithi167:172.21.15.167=smithi167"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2023-11-30T22:55:50.756456Z", "last_refresh": "2023-11-30T23:09:48.452987Z", "running": 2, "size": 2}}, {"events": ["2023-11-30T22:58:56.311581Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2023-11-30T22:58:56.308071Z", "last_refresh": "2023-11-30T23:09:52.311757Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2023-11-30T22:54:46.136630Z", "last_refresh": "2023-11-30T23:09:48.453061Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2023-11-30T22:56:33.258058Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2023-11-30T22:56:33.253117Z", "last_refresh": "2023-11-30T23:09:48.453131Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2023-11-30T22:54:43.949497Z", "last_refresh": "2023-11-30T23:09:52.311357Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2023-11-30T22:58:52.105721Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2023-11-30T22:58:59.793467Z", "last_refresh": "2023-11-30T23:09:48.453411Z", "ports": [8800], "running": 2, "size": 2}}] 2023-11-30T23:11:13.114 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2023-11-30T23:11:13.512 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:11:13 smithi167 conmon[87022]: audit 2023-11-30T23:11:12.663993+0000 mgr.smithi038.ldalxq (mgr.14182) 778 : audit [DBG] from='client.15508 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-11-30T23:11:13.524 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:11:13 smithi038 conmon[81956]: audit 2023-11-30T23:11:12.663993+0000 mgr.smithi038.ldalxq (mgr.14182) 778 : audit [DBG] from='client.15508 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-11-30T23:11:14.117 DEBUG:teuthology.orchestra.run.smithi038:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:0dc074ce0b0b3b4f393f56dd32ef36884ebf45a9 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 3faf8b00-8fd3-11ee-95a2-87774f69a715 -- ceph orch ls -f json 2023-11-30T23:11:14.512 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:11:14 smithi167 conmon[87022]: cluster 2023-11-30T23:11:12.955969+0000 mgr.smithi038.ldalxq (mgr.14182) 779 : cluster 2023-11-30T23:11:14.512 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:11:14 smithi167 conmon[87022]: [DBG] pgmap v513: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2023-11-30T23:11:14.523 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:11:14 smithi038 conmon[81956]: cluster 2023-11-30T23:11:12.955969+0000 mgr.smithi038.ldalxq (mgr.14182) 2023-11-30T23:11:14.524 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:11:14 smithi038 conmon[81956]: 779 : cluster [DBG] pgmap v513: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2023-11-30T23:11:15.903 INFO:teuthology.orchestra.run.smithi038.stdout: 2023-11-30T23:11:15.904 INFO:teuthology.orchestra.run.smithi038.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2023-11-30T22:54:47.122758Z", "last_refresh": "2023-11-30T23:09:52.311067Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2023-11-30T22:54:42.674972Z", "last_refresh": "2023-11-30T23:09:48.452759Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2023-11-30T22:54:45.114633Z", "last_refresh": "2023-11-30T23:09:52.311222Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2023-11-30T23:04:36.503792Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi167.dxieha on smithi167: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2023-11-30T23:07:14.865206Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi167.igxkgw on smithi167: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi167-igxkgw\n/bin/podman: stderr Error: error inspecting object: no such container ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi167-igxkgw\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi167.igxkgw\n/bin/podman: stderr Error: error inspecting object: no such container ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi167.igxkgw\nDeploy daemon haproxy.nfs.foo.smithi167.igxkgw ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi167 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2023-11-30T23:05:21Z\" level=warning msg=\"failed, retrying in 1s ... (1/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-11-30T23:05:59Z\" level=warning msg=\"failed, retrying in 1s ... (2/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-11-30T23:06:37Z\" level=warning msg=\"failed, retrying in 1s ... (3/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi167 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-11-30T23:09:45.061230Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi038.ubrlmp on smithi038: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi038-ubrlmp\n/bin/podman: stderr Error: error inspecting object: no such container ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi038-ubrlmp\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi038.ubrlmp\n/bin/podman: stderr Error: error inspecting object: no such container ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi038.ubrlmp\nDeploy daemon haproxy.nfs.foo.smithi038.ubrlmp ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi038 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2023-11-30T23:07:52Z\" level=warning msg=\"failed, retrying in 1s ... (1/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-11-30T23:08:30Z\" level=warning msg=\"failed, retrying in 1s ... (2/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-11-30T23:09:07Z\" level=warning msg=\"failed, retrying in 1s ... (3/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi038 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-11-30T23:09:45.062547Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi038.vjkntq on smithi038: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2023-11-30T23:09:45.063688Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi167.ndkqyv on smithi167: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.38/16"}, "status": {"created": "2023-11-30T22:58:56.312786Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.38/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2023-11-30T22:54:41.668043Z", "last_refresh": "2023-11-30T23:09:48.452908Z", "running": 2, "size": 2}}, {"events": ["2023-11-30T22:55:50.759225Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi038:172.21.15.38=smithi038", "smithi167:172.21.15.167=smithi167"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2023-11-30T22:55:50.756456Z", "last_refresh": "2023-11-30T23:09:48.452987Z", "running": 2, "size": 2}}, {"events": ["2023-11-30T22:58:56.311581Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2023-11-30T22:58:56.308071Z", "last_refresh": "2023-11-30T23:09:52.311757Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2023-11-30T22:54:46.136630Z", "last_refresh": "2023-11-30T23:09:48.453061Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2023-11-30T22:56:33.258058Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2023-11-30T22:56:33.253117Z", "last_refresh": "2023-11-30T23:09:48.453131Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2023-11-30T22:54:43.949497Z", "last_refresh": "2023-11-30T23:09:52.311357Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2023-11-30T22:58:52.105721Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2023-11-30T22:58:59.793467Z", "last_refresh": "2023-11-30T23:09:48.453411Z", "ports": [8800], "running": 2, "size": 2}}] 2023-11-30T23:11:16.274 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:11:16 smithi038 conmon[81956]: cluster 2023-11-30T23:11:14.956742+0000 mgr.smithi038.ldalxq (mgr.14182) 780 : cluster [DBG] pgmap v514: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2023-11-30T23:11:16.378 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2023-11-30T23:11:16.512 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:11:16 smithi167 conmon[87022]: cluster 2023-11-30T23:11:14.956742+0000 mgr.smithi038.ldalxq (mgr.14182) 780 : cluster [DBG] pgmap v514: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2023-11-30T23:11:16.512 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:11:16 smithi167 conmon[87022]: 2023-11-30T23:11:17.379 DEBUG:teuthology.orchestra.run.smithi038:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:0dc074ce0b0b3b4f393f56dd32ef36884ebf45a9 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 3faf8b00-8fd3-11ee-95a2-87774f69a715 -- ceph orch ls -f json 2023-11-30T23:11:17.410 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:11:17 smithi038 conmon[81956]: audit 2023-11-30T23:11:15.899494+0000 mgr.smithi038.ldalxq (mgr.14182) 781 : audit [DBG] from='client.15512 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-11-30T23:11:17.512 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:11:17 smithi167 conmon[87022]: audit 2023-11-30T23:11:15.899494+0000 mgr.smithi038.ldalxq (mgr.14182) 781 : audit [DBG] from='client.15512 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-11-30T23:11:18.256 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:11:18 smithi038 conmon[81956]: cluster 2023-11-30T23:11:16.957360 2023-11-30T23:11:18.256 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:11:18 smithi038 conmon[81956]: +0000 mgr.smithi038.ldalxq (mgr.14182) 782 : cluster [DBG] pgmap v515: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2023-11-30T23:11:18.512 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:11:18 smithi167 conmon[87022]: cluster 2023-11-30T23:11:16.957360+0000 mgr.smithi038.ldalxq (mgr.14182) 782 : cluster [DBG] pgmap v515: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2023-11-30T23:11:19.084 INFO:teuthology.orchestra.run.smithi038.stdout: 2023-11-30T23:11:19.084 INFO:teuthology.orchestra.run.smithi038.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2023-11-30T22:54:47.122758Z", "last_refresh": "2023-11-30T23:09:52.311067Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2023-11-30T22:54:42.674972Z", "last_refresh": "2023-11-30T23:09:48.452759Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2023-11-30T22:54:45.114633Z", "last_refresh": "2023-11-30T23:09:52.311222Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2023-11-30T23:04:36.503792Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi167.dxieha on smithi167: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2023-11-30T23:07:14.865206Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi167.igxkgw on smithi167: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi167-igxkgw\n/bin/podman: stderr Error: error inspecting object: no such container ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi167-igxkgw\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi167.igxkgw\n/bin/podman: stderr Error: error inspecting object: no such container ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi167.igxkgw\nDeploy daemon haproxy.nfs.foo.smithi167.igxkgw ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi167 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2023-11-30T23:05:21Z\" level=warning msg=\"failed, retrying in 1s ... (1/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-11-30T23:05:59Z\" level=warning msg=\"failed, retrying in 1s ... (2/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-11-30T23:06:37Z\" level=warning msg=\"failed, retrying in 1s ... (3/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi167 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-11-30T23:09:45.061230Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi038.ubrlmp on smithi038: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi038-ubrlmp\n/bin/podman: stderr Error: error inspecting object: no such container ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi038-ubrlmp\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi038.ubrlmp\n/bin/podman: stderr Error: error inspecting object: no such container ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi038.ubrlmp\nDeploy daemon haproxy.nfs.foo.smithi038.ubrlmp ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi038 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2023-11-30T23:07:52Z\" level=warning msg=\"failed, retrying in 1s ... (1/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-11-30T23:08:30Z\" level=warning msg=\"failed, retrying in 1s ... (2/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-11-30T23:09:07Z\" level=warning msg=\"failed, retrying in 1s ... (3/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi038 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-11-30T23:09:45.062547Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi038.vjkntq on smithi038: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2023-11-30T23:09:45.063688Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi167.ndkqyv on smithi167: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.38/16"}, "status": {"created": "2023-11-30T22:58:56.312786Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.38/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2023-11-30T22:54:41.668043Z", "last_refresh": "2023-11-30T23:09:48.452908Z", "running": 2, "size": 2}}, {"events": ["2023-11-30T22:55:50.759225Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi038:172.21.15.38=smithi038", "smithi167:172.21.15.167=smithi167"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2023-11-30T22:55:50.756456Z", "last_refresh": "2023-11-30T23:09:48.452987Z", "running": 2, "size": 2}}, {"events": ["2023-11-30T22:58:56.311581Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2023-11-30T22:58:56.308071Z", "last_refresh": "2023-11-30T23:09:52.311757Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2023-11-30T22:54:46.136630Z", "last_refresh": "2023-11-30T23:09:48.453061Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2023-11-30T22:56:33.258058Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2023-11-30T22:56:33.253117Z", "last_refresh": "2023-11-30T23:09:48.453131Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2023-11-30T22:54:43.949497Z", "last_refresh": "2023-11-30T23:09:52.311357Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2023-11-30T22:58:52.105721Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2023-11-30T22:58:59.793467Z", "last_refresh": "2023-11-30T23:09:48.453411Z", "ports": [8800], "running": 2, "size": 2}}] 2023-11-30T23:11:19.542 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2023-11-30T23:11:20.514 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:11:20 smithi167 conmon[87022]: cluster 2023-11-30T23:11:18.957877+0000 mgr.smithi038.ldalxq (mgr.14182) 783 : cluster [DBG] pgmap v516: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2023-11-30T23:11:20.514 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:11:20 smithi167 conmon[87022]: audit 2023-11-30T23:11:19.080220+0000 mgr.smithi038.ldalxq (mgr.14182) 784 : audit [DBG] from='client.15516 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-11-30T23:11:20.524 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:11:20 smithi038 conmon[81956]: cluster 2023-11-30T23:11:18.957877+0000 mgr.smithi038.ldalxq (mgr.14182) 783 : cluster [DBG] pgmap v516: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2023-11-30T23:11:20.524 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:11:20 smithi038 conmon[81956]: audit 2023-11-30T23:11:19.080220+0000 mgr.smithi038.ldalxq (mgr.14182) 784 : audit [DBG] from='client.15516 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-11-30T23:11:20.543 DEBUG:teuthology.orchestra.run.smithi038:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:0dc074ce0b0b3b4f393f56dd32ef36884ebf45a9 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 3faf8b00-8fd3-11ee-95a2-87774f69a715 -- ceph orch ls -f json 2023-11-30T23:11:22.253 INFO:teuthology.orchestra.run.smithi038.stdout: 2023-11-30T23:11:22.253 INFO:teuthology.orchestra.run.smithi038.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2023-11-30T22:54:47.122758Z", "last_refresh": "2023-11-30T23:09:52.311067Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2023-11-30T22:54:42.674972Z", "last_refresh": "2023-11-30T23:09:48.452759Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2023-11-30T22:54:45.114633Z", "last_refresh": "2023-11-30T23:09:52.311222Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2023-11-30T23:04:36.503792Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi167.dxieha on smithi167: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2023-11-30T23:07:14.865206Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi167.igxkgw on smithi167: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi167-igxkgw\n/bin/podman: stderr Error: error inspecting object: no such container ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi167-igxkgw\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi167.igxkgw\n/bin/podman: stderr Error: error inspecting object: no such container ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi167.igxkgw\nDeploy daemon haproxy.nfs.foo.smithi167.igxkgw ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi167 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2023-11-30T23:05:21Z\" level=warning msg=\"failed, retrying in 1s ... (1/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-11-30T23:05:59Z\" level=warning msg=\"failed, retrying in 1s ... (2/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-11-30T23:06:37Z\" level=warning msg=\"failed, retrying in 1s ... (3/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi167 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-11-30T23:09:45.061230Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi038.ubrlmp on smithi038: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi038-ubrlmp\n/bin/podman: stderr Error: error inspecting object: no such container ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi038-ubrlmp\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi038.ubrlmp\n/bin/podman: stderr Error: error inspecting object: no such container ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi038.ubrlmp\nDeploy daemon haproxy.nfs.foo.smithi038.ubrlmp ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi038 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2023-11-30T23:07:52Z\" level=warning msg=\"failed, retrying in 1s ... (1/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-11-30T23:08:30Z\" level=warning msg=\"failed, retrying in 1s ... (2/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-11-30T23:09:07Z\" level=warning msg=\"failed, retrying in 1s ... (3/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi038 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-11-30T23:09:45.062547Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi038.vjkntq on smithi038: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2023-11-30T23:09:45.063688Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi167.ndkqyv on smithi167: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.38/16"}, "status": {"created": "2023-11-30T22:58:56.312786Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.38/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2023-11-30T22:54:41.668043Z", "last_refresh": "2023-11-30T23:09:48.452908Z", "running": 2, "size": 2}}, {"events": ["2023-11-30T22:55:50.759225Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi038:172.21.15.38=smithi038", "smithi167:172.21.15.167=smithi167"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2023-11-30T22:55:50.756456Z", "last_refresh": "2023-11-30T23:09:48.452987Z", "running": 2, "size": 2}}, {"events": ["2023-11-30T22:58:56.311581Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2023-11-30T22:58:56.308071Z", "last_refresh": "2023-11-30T23:09:52.311757Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2023-11-30T22:54:46.136630Z", "last_refresh": "2023-11-30T23:09:48.453061Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2023-11-30T22:56:33.258058Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2023-11-30T22:56:33.253117Z", "last_refresh": "2023-11-30T23:09:48.453131Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2023-11-30T22:54:43.949497Z", "last_refresh": "2023-11-30T23:09:52.311357Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2023-11-30T22:58:52.105721Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2023-11-30T22:58:59.793467Z", "last_refresh": "2023-11-30T23:09:48.453411Z", "ports": [8800], "running": 2, "size": 2}}] 2023-11-30T23:11:22.471 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:11:22 smithi038 conmon[81956]: cluster 2023-11-30T23:11:20. 2023-11-30T23:11:22.471 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:11:22 smithi038 conmon[81956]: 958680+0000 mgr.smithi038.ldalxq (mgr.14182) 785 : cluster [DBG] pgmap v517: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2023-11-30T23:11:22.512 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:11:22 smithi167 conmon[87022]: cluster 2023-11-30T23:11:20.958680+0000 mgr.smithi038.ldalxq (mgr.14182) 785 : cluster [DBG] pgmap v517: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2023-11-30T23:11:22.697 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2023-11-30T23:11:23.512 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:11:23 smithi167 conmon[87022]: audit 2023-11-30T23:11:22.249027+0000 mgr.smithi038.ldalxq (mgr.14182) 786 : audit [DBG] from='client.15520 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-11-30T23:11:23.524 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:11:23 smithi038 conmon[81956]: audit 2023-11-30T23:11:22.249027+0000 mgr.smithi038.ldalxq (mgr.14182) 786 : audit [DBG] from='client.15520 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-11-30T23:11:23.698 DEBUG:teuthology.orchestra.run.smithi038:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:0dc074ce0b0b3b4f393f56dd32ef36884ebf45a9 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 3faf8b00-8fd3-11ee-95a2-87774f69a715 -- ceph orch ls -f json 2023-11-30T23:11:24.405 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:11:24 smithi038 conmon[81956]: cluster 2023-11-30T23:11:22.959298+0000 mgr.smithi038.ldalxq (mgr.14182) 787 : cluster [DBG] pgmap v518: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2023-11-30T23:11:24.512 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:11:24 smithi167 conmon[87022]: cluster 2023-11-30T23:11:22.959298+0000 mgr.smithi038.ldalxq (mgr.14182) 787 : cluster [DBG] pgmap v518: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2023-11-30T23:11:25.476 INFO:teuthology.orchestra.run.smithi038.stdout: 2023-11-30T23:11:25.476 INFO:teuthology.orchestra.run.smithi038.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2023-11-30T22:54:47.122758Z", "last_refresh": "2023-11-30T23:09:52.311067Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2023-11-30T22:54:42.674972Z", "last_refresh": "2023-11-30T23:09:48.452759Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2023-11-30T22:54:45.114633Z", "last_refresh": "2023-11-30T23:09:52.311222Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2023-11-30T23:04:36.503792Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi167.dxieha on smithi167: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2023-11-30T23:07:14.865206Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi167.igxkgw on smithi167: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi167-igxkgw\n/bin/podman: stderr Error: error inspecting object: no such container ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi167-igxkgw\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi167.igxkgw\n/bin/podman: stderr Error: error inspecting object: no such container ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi167.igxkgw\nDeploy daemon haproxy.nfs.foo.smithi167.igxkgw ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi167 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2023-11-30T23:05:21Z\" level=warning msg=\"failed, retrying in 1s ... (1/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-11-30T23:05:59Z\" level=warning msg=\"failed, retrying in 1s ... (2/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-11-30T23:06:37Z\" level=warning msg=\"failed, retrying in 1s ... (3/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi167 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-11-30T23:09:45.061230Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi038.ubrlmp on smithi038: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi038-ubrlmp\n/bin/podman: stderr Error: error inspecting object: no such container ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi038-ubrlmp\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi038.ubrlmp\n/bin/podman: stderr Error: error inspecting object: no such container ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi038.ubrlmp\nDeploy daemon haproxy.nfs.foo.smithi038.ubrlmp ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi038 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2023-11-30T23:07:52Z\" level=warning msg=\"failed, retrying in 1s ... (1/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-11-30T23:08:30Z\" level=warning msg=\"failed, retrying in 1s ... (2/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-11-30T23:09:07Z\" level=warning msg=\"failed, retrying in 1s ... (3/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi038 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-11-30T23:09:45.062547Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi038.vjkntq on smithi038: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2023-11-30T23:09:45.063688Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi167.ndkqyv on smithi167: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.38/16"}, "status": {"created": "2023-11-30T22:58:56.312786Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.38/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2023-11-30T22:54:41.668043Z", "last_refresh": "2023-11-30T23:09:48.452908Z", "running": 2, "size": 2}}, {"events": ["2023-11-30T22:55:50.759225Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi038:172.21.15.38=smithi038", "smithi167:172.21.15.167=smithi167"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2023-11-30T22:55:50.756456Z", "last_refresh": "2023-11-30T23:09:48.452987Z", "running": 2, "size": 2}}, {"events": ["2023-11-30T22:58:56.311581Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2023-11-30T22:58:56.308071Z", "last_refresh": "2023-11-30T23:09:52.311757Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2023-11-30T22:54:46.136630Z", "last_refresh": "2023-11-30T23:09:48.453061Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2023-11-30T22:56:33.258058Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2023-11-30T22:56:33.253117Z", "last_refresh": "2023-11-30T23:09:48.453131Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2023-11-30T22:54:43.949497Z", "last_refresh": "2023-11-30T23:09:52.311357Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2023-11-30T22:58:52.105721Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2023-11-30T22:58:59.793467Z", "last_refresh": "2023-11-30T23:09:48.453411Z", "ports": [8800], "running": 2, "size": 2}}] 2023-11-30T23:11:25.947 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2023-11-30T23:11:26.274 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:11:26 smithi038 conmon[81956]: cluster 2023-11-30T23:11:24.959976+0000 mgr.smithi038.ldalxq (mgr.14182) 788 : cluster [DBG] pgmap v519: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2023-11-30T23:11:26.274 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:11:26 smithi038 conmon[81956]: audit 2023-11-30T23:11:25.471894+0000 mgr.smithi038.ldalxq (mgr.14182) 789 : audit [DBG] from='client.15524 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-11-30T23:11:26.512 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:11:26 smithi167 conmon[87022]: cluster 2023-11-30T23:11:24.959976+0000 mgr.smithi038.ldalxq (mgr.14182) 788 : cluster [DBG] 2023-11-30T23:11:26.512 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:11:26 smithi167 conmon[87022]: pgmap v519: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2023-11-30T23:11:26.512 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:11:26 smithi167 conmon[87022]: audit 2023-11-30T23:11:25.471894+0000 mgr.smithi038.ldalxq (mgr.14182) 789 : audit [DBG] from='client.15524 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-11-30T23:11:26.948 DEBUG:teuthology.orchestra.run.smithi038:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:0dc074ce0b0b3b4f393f56dd32ef36884ebf45a9 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 3faf8b00-8fd3-11ee-95a2-87774f69a715 -- ceph orch ls -f json 2023-11-30T23:11:28.240 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:11:27 smithi038 conmon[81956]: cluster 2023-11-30T23:11:26.960549+0000 mgr.smithi038.ldalxq (mgr.14182) 790 : cluster [DBG] pgmap v520: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2023-11-30T23:11:28.262 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:11:27 smithi167 conmon[87022]: cluster 2023-11-30T23:11:26.960549+0000 mgr.smithi038.ldalxq (mgr.14182) 790 : cluster [DBG] pgmap v520: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2023-11-30T23:11:28.644 INFO:teuthology.orchestra.run.smithi038.stdout: 2023-11-30T23:11:28.645 INFO:teuthology.orchestra.run.smithi038.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2023-11-30T22:54:47.122758Z", "last_refresh": "2023-11-30T23:09:52.311067Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2023-11-30T22:54:42.674972Z", "last_refresh": "2023-11-30T23:09:48.452759Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2023-11-30T22:54:45.114633Z", "last_refresh": "2023-11-30T23:09:52.311222Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2023-11-30T23:04:36.503792Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi167.dxieha on smithi167: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2023-11-30T23:07:14.865206Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi167.igxkgw on smithi167: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi167-igxkgw\n/bin/podman: stderr Error: error inspecting object: no such container ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi167-igxkgw\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi167.igxkgw\n/bin/podman: stderr Error: error inspecting object: no such container ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi167.igxkgw\nDeploy daemon haproxy.nfs.foo.smithi167.igxkgw ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi167 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2023-11-30T23:05:21Z\" level=warning msg=\"failed, retrying in 1s ... (1/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-11-30T23:05:59Z\" level=warning msg=\"failed, retrying in 1s ... (2/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-11-30T23:06:37Z\" level=warning msg=\"failed, retrying in 1s ... (3/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi167 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-11-30T23:09:45.061230Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi038.ubrlmp on smithi038: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi038-ubrlmp\n/bin/podman: stderr Error: error inspecting object: no such container ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi038-ubrlmp\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi038.ubrlmp\n/bin/podman: stderr Error: error inspecting object: no such container ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi038.ubrlmp\nDeploy daemon haproxy.nfs.foo.smithi038.ubrlmp ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi038 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2023-11-30T23:07:52Z\" level=warning msg=\"failed, retrying in 1s ... (1/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-11-30T23:08:30Z\" level=warning msg=\"failed, retrying in 1s ... (2/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-11-30T23:09:07Z\" level=warning msg=\"failed, retrying in 1s ... (3/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi038 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-11-30T23:09:45.062547Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi038.vjkntq on smithi038: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2023-11-30T23:09:45.063688Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi167.ndkqyv on smithi167: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.38/16"}, "status": {"created": "2023-11-30T22:58:56.312786Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.38/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2023-11-30T22:54:41.668043Z", "last_refresh": "2023-11-30T23:09:48.452908Z", "running": 2, "size": 2}}, {"events": ["2023-11-30T22:55:50.759225Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi038:172.21.15.38=smithi038", "smithi167:172.21.15.167=smithi167"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2023-11-30T22:55:50.756456Z", "last_refresh": "2023-11-30T23:09:48.452987Z", "running": 2, "size": 2}}, {"events": ["2023-11-30T22:58:56.311581Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2023-11-30T22:58:56.308071Z", "last_refresh": "2023-11-30T23:09:52.311757Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2023-11-30T22:54:46.136630Z", "last_refresh": "2023-11-30T23:09:48.453061Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2023-11-30T22:56:33.258058Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2023-11-30T22:56:33.253117Z", "last_refresh": "2023-11-30T23:09:48.453131Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2023-11-30T22:54:43.949497Z", "last_refresh": "2023-11-30T23:09:52.311357Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2023-11-30T22:58:52.105721Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2023-11-30T22:58:59.793467Z", "last_refresh": "2023-11-30T23:09:48.453411Z", "ports": [8800], "running": 2, "size": 2}}] 2023-11-30T23:11:28.944 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:11:28 smithi038 conmon[81956]: audit 2023-11-30T23:11:28.640880+0000 2023-11-30T23:11:28.944 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:11:28 smithi038 conmon[81956]: mgr.smithi038.ldalxq (mgr.14182) 791 : audit [DBG] from='client.15528 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-11-30T23:11:29.097 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2023-11-30T23:11:29.262 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:11:28 smithi167 conmon[87022]: audit 2023-11-30T23:11:28.640880+0000 mgr.smithi038.ldalxq (mgr.14182) 791 : audit [DBG] from='client.15528 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-11-30T23:11:30.098 DEBUG:teuthology.orchestra.run.smithi038:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:0dc074ce0b0b3b4f393f56dd32ef36884ebf45a9 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 3faf8b00-8fd3-11ee-95a2-87774f69a715 -- ceph orch ls -f json 2023-11-30T23:11:30.128 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:11:29 smithi038 conmon[81956]: cluster 2023-11-30T23:11:28.961066+0000 mgr.smithi038.ldalxq (mgr.14182) 792 2023-11-30T23:11:30.128 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:11:29 smithi038 conmon[81956]: : cluster [DBG] pgmap v521: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2023-11-30T23:11:30.262 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:11:29 smithi167 conmon[87022]: cluster 2023-11-30T23:11:28.961066+0000 mgr.smithi038.ldalxq (mgr.14182) 792 : cluster [DBG] 2023-11-30T23:11:30.262 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:11:29 smithi167 conmon[87022]: pgmap v521: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2023-11-30T23:11:31.787 INFO:teuthology.orchestra.run.smithi038.stdout: 2023-11-30T23:11:31.788 INFO:teuthology.orchestra.run.smithi038.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2023-11-30T22:54:47.122758Z", "last_refresh": "2023-11-30T23:09:52.311067Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2023-11-30T22:54:42.674972Z", "last_refresh": "2023-11-30T23:09:48.452759Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2023-11-30T22:54:45.114633Z", "last_refresh": "2023-11-30T23:09:52.311222Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2023-11-30T23:04:36.503792Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi167.dxieha on smithi167: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2023-11-30T23:07:14.865206Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi167.igxkgw on smithi167: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi167-igxkgw\n/bin/podman: stderr Error: error inspecting object: no such container ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi167-igxkgw\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi167.igxkgw\n/bin/podman: stderr Error: error inspecting object: no such container ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi167.igxkgw\nDeploy daemon haproxy.nfs.foo.smithi167.igxkgw ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi167 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2023-11-30T23:05:21Z\" level=warning msg=\"failed, retrying in 1s ... (1/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-11-30T23:05:59Z\" level=warning msg=\"failed, retrying in 1s ... (2/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-11-30T23:06:37Z\" level=warning msg=\"failed, retrying in 1s ... (3/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi167 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-11-30T23:09:45.061230Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi038.ubrlmp on smithi038: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi038-ubrlmp\n/bin/podman: stderr Error: error inspecting object: no such container ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi038-ubrlmp\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi038.ubrlmp\n/bin/podman: stderr Error: error inspecting object: no such container ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi038.ubrlmp\nDeploy daemon haproxy.nfs.foo.smithi038.ubrlmp ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi038 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2023-11-30T23:07:52Z\" level=warning msg=\"failed, retrying in 1s ... (1/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-11-30T23:08:30Z\" level=warning msg=\"failed, retrying in 1s ... (2/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-11-30T23:09:07Z\" level=warning msg=\"failed, retrying in 1s ... (3/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi038 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-11-30T23:09:45.062547Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi038.vjkntq on smithi038: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2023-11-30T23:09:45.063688Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi167.ndkqyv on smithi167: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.38/16"}, "status": {"created": "2023-11-30T22:58:56.312786Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.38/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2023-11-30T22:54:41.668043Z", "last_refresh": "2023-11-30T23:09:48.452908Z", "running": 2, "size": 2}}, {"events": ["2023-11-30T22:55:50.759225Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi038:172.21.15.38=smithi038", "smithi167:172.21.15.167=smithi167"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2023-11-30T22:55:50.756456Z", "last_refresh": "2023-11-30T23:09:48.452987Z", "running": 2, "size": 2}}, {"events": ["2023-11-30T22:58:56.311581Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2023-11-30T22:58:56.308071Z", "last_refresh": "2023-11-30T23:09:52.311757Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2023-11-30T22:54:46.136630Z", "last_refresh": "2023-11-30T23:09:48.453061Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2023-11-30T22:56:33.258058Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2023-11-30T22:56:33.253117Z", "last_refresh": "2023-11-30T23:09:48.453131Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2023-11-30T22:54:43.949497Z", "last_refresh": "2023-11-30T23:09:52.311357Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2023-11-30T22:58:52.105721Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2023-11-30T22:58:59.793467Z", "last_refresh": "2023-11-30T23:09:48.453411Z", "ports": [8800], "running": 2, "size": 2}}] 2023-11-30T23:11:32.258 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2023-11-30T23:11:32.269 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:11:32 smithi167 conmon[87022]: cluster 2023-11-30T23:11:30.961782+0000 mgr.smithi038.ldalxq (mgr.14182) 793 : cluster [DBG] pgmap v522: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2023-11-30T23:11:32.273 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:11:32 smithi038 conmon[81956]: cluster 2023-11-30T23:11:30.961782+0000 mgr.smithi038.ldalxq (mgr.14182) 793 : cluster [DBG] pgmap v522: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2023-11-30T23:11:33.258 DEBUG:teuthology.orchestra.run.smithi038:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:0dc074ce0b0b3b4f393f56dd32ef36884ebf45a9 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 3faf8b00-8fd3-11ee-95a2-87774f69a715 -- ceph orch ls -f json 2023-11-30T23:11:33.316 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:11:33 smithi038 conmon[81956]: audit 2023-11-30T23:11:31.783072+0000 mgr.smithi038.ldalxq (mgr.14182) 794 : audit [DBG] from='client.15532 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-11-30T23:11:33.316 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:11:33 smithi038 conmon[81956]: 2023-11-30T23:11:33.512 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:11:33 smithi167 conmon[87022]: audit 2023-11-30T23:11:31.783072+0000 mgr.smithi038.ldalxq (mgr.14182) 794 : audit [DBG] from='client.15532 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-11-30T23:11:34.211 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:11:34 smithi038 conmon[81956]: cluster 2023-11-30T23:11:32.962520+0000 2023-11-30T23:11:34.211 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:11:34 smithi038 conmon[81956]: mgr.smithi038.ldalxq (mgr.14182) 795 : cluster [DBG] pgmap v523: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2023-11-30T23:11:34.512 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:11:34 smithi167 conmon[87022]: cluster 2023-11-30T23:11:32.962520+0000 mgr.smithi038.ldalxq (mgr.14182) 795 : cluster [DBG] pgmap v523: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2023-11-30T23:11:35.039 INFO:teuthology.orchestra.run.smithi038.stdout: 2023-11-30T23:11:35.039 INFO:teuthology.orchestra.run.smithi038.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2023-11-30T22:54:47.122758Z", "last_refresh": "2023-11-30T23:09:52.311067Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2023-11-30T22:54:42.674972Z", "last_refresh": "2023-11-30T23:09:48.452759Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2023-11-30T22:54:45.114633Z", "last_refresh": "2023-11-30T23:09:52.311222Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2023-11-30T23:04:36.503792Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi167.dxieha on smithi167: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2023-11-30T23:07:14.865206Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi167.igxkgw on smithi167: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi167-igxkgw\n/bin/podman: stderr Error: error inspecting object: no such container ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi167-igxkgw\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi167.igxkgw\n/bin/podman: stderr Error: error inspecting object: no such container ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi167.igxkgw\nDeploy daemon haproxy.nfs.foo.smithi167.igxkgw ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi167 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2023-11-30T23:05:21Z\" level=warning msg=\"failed, retrying in 1s ... (1/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-11-30T23:05:59Z\" level=warning msg=\"failed, retrying in 1s ... (2/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-11-30T23:06:37Z\" level=warning msg=\"failed, retrying in 1s ... (3/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi167 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-11-30T23:09:45.061230Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi038.ubrlmp on smithi038: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi038-ubrlmp\n/bin/podman: stderr Error: error inspecting object: no such container ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi038-ubrlmp\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi038.ubrlmp\n/bin/podman: stderr Error: error inspecting object: no such container ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi038.ubrlmp\nDeploy daemon haproxy.nfs.foo.smithi038.ubrlmp ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi038 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2023-11-30T23:07:52Z\" level=warning msg=\"failed, retrying in 1s ... (1/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-11-30T23:08:30Z\" level=warning msg=\"failed, retrying in 1s ... (2/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-11-30T23:09:07Z\" level=warning msg=\"failed, retrying in 1s ... (3/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi038 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-11-30T23:09:45.062547Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi038.vjkntq on smithi038: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2023-11-30T23:09:45.063688Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi167.ndkqyv on smithi167: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.38/16"}, "status": {"created": "2023-11-30T22:58:56.312786Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.38/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2023-11-30T22:54:41.668043Z", "last_refresh": "2023-11-30T23:09:48.452908Z", "running": 2, "size": 2}}, {"events": ["2023-11-30T22:55:50.759225Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi038:172.21.15.38=smithi038", "smithi167:172.21.15.167=smithi167"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2023-11-30T22:55:50.756456Z", "last_refresh": "2023-11-30T23:09:48.452987Z", "running": 2, "size": 2}}, {"events": ["2023-11-30T22:58:56.311581Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2023-11-30T22:58:56.308071Z", "last_refresh": "2023-11-30T23:09:52.311757Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2023-11-30T22:54:46.136630Z", "last_refresh": "2023-11-30T23:09:48.453061Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2023-11-30T22:56:33.258058Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2023-11-30T22:56:33.253117Z", "last_refresh": "2023-11-30T23:09:48.453131Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2023-11-30T22:54:43.949497Z", "last_refresh": "2023-11-30T23:09:52.311357Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2023-11-30T22:58:52.105721Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2023-11-30T22:58:59.793467Z", "last_refresh": "2023-11-30T23:09:48.453411Z", "ports": [8800], "running": 2, "size": 2}}] 2023-11-30T23:11:35.537 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2023-11-30T23:11:36.513 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:11:36 smithi167 conmon[87022]: cluster 2023-11-30T23:11:34.963178+0000 mgr.smithi038.ldalxq (mgr.14182) 796 : cluster [DBG] pgmap v524: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2023-11-30T23:11:36.514 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:11:36 smithi167 conmon[87022]: audit 2023-11-30T23:11:35. 2023-11-30T23:11:36.514 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:11:36 smithi167 conmon[87022]: 035347+0000 mgr.smithi038.ldalxq (mgr.14182) 797 : audit [DBG] from='client.15536 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-11-30T23:11:36.523 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:11:36 smithi038 conmon[81956]: cluster 2023-11-30T23:11:34.963178+0000 mgr.smithi038.ldalxq (mgr.14182) 796 : cluster [DBG] pgmap v524: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2023-11-30T23:11:36.524 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:11:36 smithi038 conmon[81956]: audit 2023-11-30T23:11:35.035347+0000 mgr.smithi038.ldalxq (mgr.14182) 797 : audit [DBG] from='client.15536 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-11-30T23:11:36.537 DEBUG:teuthology.orchestra.run.smithi038:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:0dc074ce0b0b3b4f393f56dd32ef36884ebf45a9 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 3faf8b00-8fd3-11ee-95a2-87774f69a715 -- ceph orch ls -f json 2023-11-30T23:11:38.262 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:11:37 smithi167 conmon[87022]: cluster 2023-11-30T23:11:36.963868+0000 mgr.smithi038.ldalxq (mgr.14182) 798 : cluster [DBG] pgmap v525: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2023-11-30T23:11:38.274 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:11:37 smithi038 conmon[81956]: cluster 2023-11-30T23:11:36.963868+0000 2023-11-30T23:11:38.274 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:11:37 smithi038 conmon[81956]: mgr.smithi038.ldalxq (mgr.14182) 798 : cluster [DBG] pgmap v525: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2023-11-30T23:11:38.291 INFO:teuthology.orchestra.run.smithi038.stdout: 2023-11-30T23:11:38.291 INFO:teuthology.orchestra.run.smithi038.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2023-11-30T22:54:47.122758Z", "last_refresh": "2023-11-30T23:09:52.311067Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2023-11-30T22:54:42.674972Z", "last_refresh": "2023-11-30T23:09:48.452759Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2023-11-30T22:54:45.114633Z", "last_refresh": "2023-11-30T23:09:52.311222Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2023-11-30T23:04:36.503792Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi167.dxieha on smithi167: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2023-11-30T23:07:14.865206Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi167.igxkgw on smithi167: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi167-igxkgw\n/bin/podman: stderr Error: error inspecting object: no such container ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi167-igxkgw\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi167.igxkgw\n/bin/podman: stderr Error: error inspecting object: no such container ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi167.igxkgw\nDeploy daemon haproxy.nfs.foo.smithi167.igxkgw ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi167 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2023-11-30T23:05:21Z\" level=warning msg=\"failed, retrying in 1s ... (1/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-11-30T23:05:59Z\" level=warning msg=\"failed, retrying in 1s ... (2/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-11-30T23:06:37Z\" level=warning msg=\"failed, retrying in 1s ... (3/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi167 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-11-30T23:09:45.061230Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi038.ubrlmp on smithi038: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi038-ubrlmp\n/bin/podman: stderr Error: error inspecting object: no such container ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi038-ubrlmp\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi038.ubrlmp\n/bin/podman: stderr Error: error inspecting object: no such container ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi038.ubrlmp\nDeploy daemon haproxy.nfs.foo.smithi038.ubrlmp ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi038 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2023-11-30T23:07:52Z\" level=warning msg=\"failed, retrying in 1s ... (1/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-11-30T23:08:30Z\" level=warning msg=\"failed, retrying in 1s ... (2/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-11-30T23:09:07Z\" level=warning msg=\"failed, retrying in 1s ... (3/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi038 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-11-30T23:09:45.062547Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi038.vjkntq on smithi038: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2023-11-30T23:09:45.063688Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi167.ndkqyv on smithi167: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.38/16"}, "status": {"created": "2023-11-30T22:58:56.312786Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.38/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2023-11-30T22:54:41.668043Z", "last_refresh": "2023-11-30T23:09:48.452908Z", "running": 2, "size": 2}}, {"events": ["2023-11-30T22:55:50.759225Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi038:172.21.15.38=smithi038", "smithi167:172.21.15.167=smithi167"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2023-11-30T22:55:50.756456Z", "last_refresh": "2023-11-30T23:09:48.452987Z", "running": 2, "size": 2}}, {"events": ["2023-11-30T22:58:56.311581Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2023-11-30T22:58:56.308071Z", "last_refresh": "2023-11-30T23:09:52.311757Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2023-11-30T22:54:46.136630Z", "last_refresh": "2023-11-30T23:09:48.453061Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2023-11-30T22:56:33.258058Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2023-11-30T22:56:33.253117Z", "last_refresh": "2023-11-30T23:09:48.453131Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2023-11-30T22:54:43.949497Z", "last_refresh": "2023-11-30T23:09:52.311357Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2023-11-30T22:58:52.105721Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2023-11-30T22:58:59.793467Z", "last_refresh": "2023-11-30T23:09:48.453411Z", "ports": [8800], "running": 2, "size": 2}}] 2023-11-30T23:11:38.788 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2023-11-30T23:11:39.024 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:11:38 smithi038 conmon[81956]: audit 2023-11-30T23:11:38.287686+0000 mgr.smithi038.ldalxq (mgr.14182) 799 : audit [DBG] from='client.15540 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-11-30T23:11:39.261 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:11:38 smithi167 conmon[87022]: audit 2023-11-30T23:11:38.287686+0000 mgr.smithi038.ldalxq (mgr.14182) 799 : audit [DBG] from='client.15540 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-11-30T23:11:39.789 DEBUG:teuthology.orchestra.run.smithi038:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:0dc074ce0b0b3b4f393f56dd32ef36884ebf45a9 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 3faf8b00-8fd3-11ee-95a2-87774f69a715 -- ceph orch ls -f json 2023-11-30T23:11:40.265 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:11:39 smithi167 conmon[87022]: cluster 2023-11-30T23:11:38.964699+0000 mgr.smithi038.ldalxq (mgr.14182) 800 : cluster [DBG] pgmap v526: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2023-11-30T23:11:40.274 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:11:39 smithi038 conmon[81956]: cluster 2023-11-30T23:11:38 2023-11-30T23:11:40.274 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:11:39 smithi038 conmon[81956]: .964699+0000 mgr.smithi038.ldalxq (mgr.14182) 800 : cluster [DBG] pgmap v526: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2023-11-30T23:11:41.714 INFO:teuthology.orchestra.run.smithi038.stdout: 2023-11-30T23:11:41.714 INFO:teuthology.orchestra.run.smithi038.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2023-11-30T22:54:47.122758Z", "last_refresh": "2023-11-30T23:09:52.311067Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2023-11-30T22:54:42.674972Z", "last_refresh": "2023-11-30T23:09:48.452759Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2023-11-30T22:54:45.114633Z", "last_refresh": "2023-11-30T23:09:52.311222Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2023-11-30T23:04:36.503792Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi167.dxieha on smithi167: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2023-11-30T23:07:14.865206Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi167.igxkgw on smithi167: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi167-igxkgw\n/bin/podman: stderr Error: error inspecting object: no such container ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi167-igxkgw\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi167.igxkgw\n/bin/podman: stderr Error: error inspecting object: no such container ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi167.igxkgw\nDeploy daemon haproxy.nfs.foo.smithi167.igxkgw ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi167 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2023-11-30T23:05:21Z\" level=warning msg=\"failed, retrying in 1s ... (1/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-11-30T23:05:59Z\" level=warning msg=\"failed, retrying in 1s ... (2/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-11-30T23:06:37Z\" level=warning msg=\"failed, retrying in 1s ... (3/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi167 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-11-30T23:09:45.061230Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi038.ubrlmp on smithi038: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi038-ubrlmp\n/bin/podman: stderr Error: error inspecting object: no such container ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi038-ubrlmp\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi038.ubrlmp\n/bin/podman: stderr Error: error inspecting object: no such container ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi038.ubrlmp\nDeploy daemon haproxy.nfs.foo.smithi038.ubrlmp ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi038 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2023-11-30T23:07:52Z\" level=warning msg=\"failed, retrying in 1s ... (1/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-11-30T23:08:30Z\" level=warning msg=\"failed, retrying in 1s ... (2/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-11-30T23:09:07Z\" level=warning msg=\"failed, retrying in 1s ... (3/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi038 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-11-30T23:09:45.062547Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi038.vjkntq on smithi038: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2023-11-30T23:09:45.063688Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi167.ndkqyv on smithi167: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.38/16"}, "status": {"created": "2023-11-30T22:58:56.312786Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.38/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2023-11-30T22:54:41.668043Z", "last_refresh": "2023-11-30T23:09:48.452908Z", "running": 2, "size": 2}}, {"events": ["2023-11-30T22:55:50.759225Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi038:172.21.15.38=smithi038", "smithi167:172.21.15.167=smithi167"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2023-11-30T22:55:50.756456Z", "last_refresh": "2023-11-30T23:09:48.452987Z", "running": 2, "size": 2}}, {"events": ["2023-11-30T22:58:56.311581Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2023-11-30T22:58:56.308071Z", "last_refresh": "2023-11-30T23:09:52.311757Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2023-11-30T22:54:46.136630Z", "last_refresh": "2023-11-30T23:09:48.453061Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2023-11-30T22:56:33.258058Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2023-11-30T22:56:33.253117Z", "last_refresh": "2023-11-30T23:09:48.453131Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2023-11-30T22:54:43.949497Z", "last_refresh": "2023-11-30T23:09:52.311357Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2023-11-30T22:58:52.105721Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2023-11-30T22:58:59.793467Z", "last_refresh": "2023-11-30T23:09:48.453411Z", "ports": [8800], "running": 2, "size": 2}}] 2023-11-30T23:11:42.256 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2023-11-30T23:11:42.274 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:11:42 smithi038 conmon[81956]: cluster 2023-11-30T23:11:40.965409+0000 mgr.smithi038.ldalxq (mgr.14182) 801 : cluster [DBG] pgmap v527: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2023-11-30T23:11:42.274 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:11:42 smithi038 conmon[81956]: audit 2023-11-30T23:11:41.709945+0000 mgr.smithi038.ldalxq (mgr.14182) 802 : audit [DBG] from='client.15544 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-11-30T23:11:42.512 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:11:42 smithi167 conmon[87022]: cluster 2023-11-30T23:11:40.965409+0000 mgr.smithi038.ldalxq (mgr.14182) 801 : cluster [DBG] pgmap v527: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2023-11-30T23:11:42.512 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:11:42 smithi167 conmon[87022]: audit 2023-11-30T23:11:41.709945+0000 mgr.smithi038.ldalxq (mgr.14182) 802 : audit [DBG] from='client.15544 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-11-30T23:11:43.257 DEBUG:teuthology.orchestra.run.smithi038:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:0dc074ce0b0b3b4f393f56dd32ef36884ebf45a9 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 3faf8b00-8fd3-11ee-95a2-87774f69a715 -- ceph orch ls -f json 2023-11-30T23:11:44.168 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:11:44 smithi038 conmon[81956]: cluster 2023-11-30T23:11:42.966190+0000 2023-11-30T23:11:44.168 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:11:44 smithi038 conmon[81956]: mgr.smithi038.ldalxq (mgr.14182) 803 : cluster [DBG] pgmap v528: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2023-11-30T23:11:44.512 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:11:44 smithi167 conmon[87022]: cluster 2023-11-30T23:11:42.966190+0000 mgr.smithi038.ldalxq (mgr.14182) 803 : cluster [DBG] pgmap v528: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2023-11-30T23:11:45.007 INFO:teuthology.orchestra.run.smithi038.stdout: 2023-11-30T23:11:45.007 INFO:teuthology.orchestra.run.smithi038.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2023-11-30T22:54:47.122758Z", "last_refresh": "2023-11-30T23:09:52.311067Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2023-11-30T22:54:42.674972Z", "last_refresh": "2023-11-30T23:09:48.452759Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2023-11-30T22:54:45.114633Z", "last_refresh": "2023-11-30T23:09:52.311222Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2023-11-30T23:04:36.503792Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi167.dxieha on smithi167: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2023-11-30T23:07:14.865206Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi167.igxkgw on smithi167: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi167-igxkgw\n/bin/podman: stderr Error: error inspecting object: no such container ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi167-igxkgw\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi167.igxkgw\n/bin/podman: stderr Error: error inspecting object: no such container ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi167.igxkgw\nDeploy daemon haproxy.nfs.foo.smithi167.igxkgw ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi167 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2023-11-30T23:05:21Z\" level=warning msg=\"failed, retrying in 1s ... (1/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-11-30T23:05:59Z\" level=warning msg=\"failed, retrying in 1s ... (2/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-11-30T23:06:37Z\" level=warning msg=\"failed, retrying in 1s ... (3/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi167 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-11-30T23:09:45.061230Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi038.ubrlmp on smithi038: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi038-ubrlmp\n/bin/podman: stderr Error: error inspecting object: no such container ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi038-ubrlmp\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi038.ubrlmp\n/bin/podman: stderr Error: error inspecting object: no such container ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi038.ubrlmp\nDeploy daemon haproxy.nfs.foo.smithi038.ubrlmp ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi038 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2023-11-30T23:07:52Z\" level=warning msg=\"failed, retrying in 1s ... (1/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-11-30T23:08:30Z\" level=warning msg=\"failed, retrying in 1s ... (2/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-11-30T23:09:07Z\" level=warning msg=\"failed, retrying in 1s ... (3/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi038 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-11-30T23:09:45.062547Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi038.vjkntq on smithi038: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2023-11-30T23:09:45.063688Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi167.ndkqyv on smithi167: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.38/16"}, "status": {"created": "2023-11-30T22:58:56.312786Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.38/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2023-11-30T22:54:41.668043Z", "last_refresh": "2023-11-30T23:09:48.452908Z", "running": 2, "size": 2}}, {"events": ["2023-11-30T22:55:50.759225Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi038:172.21.15.38=smithi038", "smithi167:172.21.15.167=smithi167"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2023-11-30T22:55:50.756456Z", "last_refresh": "2023-11-30T23:09:48.452987Z", "running": 2, "size": 2}}, {"events": ["2023-11-30T22:58:56.311581Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2023-11-30T22:58:56.308071Z", "last_refresh": "2023-11-30T23:09:52.311757Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2023-11-30T22:54:46.136630Z", "last_refresh": "2023-11-30T23:09:48.453061Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2023-11-30T22:56:33.258058Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2023-11-30T22:56:33.253117Z", "last_refresh": "2023-11-30T23:09:48.453131Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2023-11-30T22:54:43.949497Z", "last_refresh": "2023-11-30T23:09:52.311357Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2023-11-30T22:58:52.105721Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2023-11-30T22:58:59.793467Z", "last_refresh": "2023-11-30T23:09:48.453411Z", "ports": [8800], "running": 2, "size": 2}}] 2023-11-30T23:11:45.413 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2023-11-30T23:11:46.414 DEBUG:teuthology.orchestra.run.smithi038:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:0dc074ce0b0b3b4f393f56dd32ef36884ebf45a9 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 3faf8b00-8fd3-11ee-95a2-87774f69a715 -- ceph orch ls -f json 2023-11-30T23:11:46.446 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:11:46 smithi038 conmon[81956]: cluster 2023-11-30T23:11:44.966831+0000 mgr.smithi038.ldalxq (mgr.14182) 804 : cluster [DBG] pgmap v529: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2023-11-30T23:11:46.446 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:11:46 smithi038 conmon[81956]: audit 2023-11-30T23:11:45.002920+0000 mgr.smithi038.ldalxq (mgr.14182) 805 : audit [DBG] from='client.15548 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-11-30T23:11:46.512 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:11:46 smithi167 conmon[87022]: cluster 2023-11-30T23:11:44.966831+0000 mgr.smithi038.ldalxq (mgr.14182) 804 : cluster [DBG] pgmap v529: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2023-11-30T23:11:46.512 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:11:46 smithi167 conmon[87022]: audit 2023-11-30T23:11:45.002920+0000 mgr.smithi038.ldalxq (mgr.14182) 805 : audit [DBG] from='client.15548 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-11-30T23:11:48.023 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:11:47 smithi038 conmon[81956]: cluster 2023-11-30T23:11: 2023-11-30T23:11:48.024 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:11:47 smithi038 conmon[81956]: 46.967378+0000 mgr.smithi038.ldalxq (mgr.14182) 806 : cluster [DBG] pgmap v530: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2023-11-30T23:11:48.155 INFO:teuthology.orchestra.run.smithi038.stdout: 2023-11-30T23:11:48.155 INFO:teuthology.orchestra.run.smithi038.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2023-11-30T22:54:47.122758Z", "last_refresh": "2023-11-30T23:09:52.311067Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2023-11-30T22:54:42.674972Z", "last_refresh": "2023-11-30T23:09:48.452759Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2023-11-30T22:54:45.114633Z", "last_refresh": "2023-11-30T23:09:52.311222Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2023-11-30T23:04:36.503792Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi167.dxieha on smithi167: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2023-11-30T23:07:14.865206Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi167.igxkgw on smithi167: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi167-igxkgw\n/bin/podman: stderr Error: error inspecting object: no such container ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi167-igxkgw\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi167.igxkgw\n/bin/podman: stderr Error: error inspecting object: no such container ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi167.igxkgw\nDeploy daemon haproxy.nfs.foo.smithi167.igxkgw ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi167 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2023-11-30T23:05:21Z\" level=warning msg=\"failed, retrying in 1s ... (1/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-11-30T23:05:59Z\" level=warning msg=\"failed, retrying in 1s ... (2/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-11-30T23:06:37Z\" level=warning msg=\"failed, retrying in 1s ... (3/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi167 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-11-30T23:09:45.061230Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi038.ubrlmp on smithi038: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi038-ubrlmp\n/bin/podman: stderr Error: error inspecting object: no such container ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi038-ubrlmp\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi038.ubrlmp\n/bin/podman: stderr Error: error inspecting object: no such container ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi038.ubrlmp\nDeploy daemon haproxy.nfs.foo.smithi038.ubrlmp ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi038 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2023-11-30T23:07:52Z\" level=warning msg=\"failed, retrying in 1s ... (1/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-11-30T23:08:30Z\" level=warning msg=\"failed, retrying in 1s ... (2/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-11-30T23:09:07Z\" level=warning msg=\"failed, retrying in 1s ... (3/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi038 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-11-30T23:09:45.062547Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi038.vjkntq on smithi038: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2023-11-30T23:09:45.063688Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi167.ndkqyv on smithi167: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.38/16"}, "status": {"created": "2023-11-30T22:58:56.312786Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.38/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2023-11-30T22:54:41.668043Z", "last_refresh": "2023-11-30T23:09:48.452908Z", "running": 2, "size": 2}}, {"events": ["2023-11-30T22:55:50.759225Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi038:172.21.15.38=smithi038", "smithi167:172.21.15.167=smithi167"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2023-11-30T22:55:50.756456Z", "last_refresh": "2023-11-30T23:09:48.452987Z", "running": 2, "size": 2}}, {"events": ["2023-11-30T22:58:56.311581Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2023-11-30T22:58:56.308071Z", "last_refresh": "2023-11-30T23:09:52.311757Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2023-11-30T22:54:46.136630Z", "last_refresh": "2023-11-30T23:09:48.453061Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2023-11-30T22:56:33.258058Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2023-11-30T22:56:33.253117Z", "last_refresh": "2023-11-30T23:09:48.453131Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2023-11-30T22:54:43.949497Z", "last_refresh": "2023-11-30T23:09:52.311357Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2023-11-30T22:58:52.105721Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2023-11-30T22:58:59.793467Z", "last_refresh": "2023-11-30T23:09:48.453411Z", "ports": [8800], "running": 2, "size": 2}}] 2023-11-30T23:11:48.262 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:11:47 smithi167 conmon[87022]: cluster 2023-11-30T23:11:46.967378+0000 mgr.smithi038.ldalxq (mgr.14182) 806 : cluster [DBG] pgmap v530: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2023-11-30T23:11:48.575 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2023-11-30T23:11:49.262 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:11:48 smithi167 conmon[87022]: audit 2023-11-30T23:11:48.151209+0000 mgr.smithi038.ldalxq (mgr.14182) 807 : audit [DBG] from='client.15552 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-11-30T23:11:49.273 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:11:48 smithi038 conmon[81956]: audit 2023-11-30T23:11:48.151209+0000 mgr.smithi038.ldalxq (mgr 2023-11-30T23:11:49.274 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:11:48 smithi038 conmon[81956]: .14182) 807 : audit [DBG] from='client.15552 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-11-30T23:11:49.575 DEBUG:teuthology.orchestra.run.smithi038:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:0dc074ce0b0b3b4f393f56dd32ef36884ebf45a9 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 3faf8b00-8fd3-11ee-95a2-87774f69a715 -- ceph orch ls -f json 2023-11-30T23:11:50.024 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:11:49 smithi038 conmon[81956]: cluster 2023-11-30T23:11:48.968104+0000 mgr.smithi038.ldalxq (mgr.14182) 808 : cluster [DBG] pgmap v531: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2023-11-30T23:11:50.262 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:11:49 smithi167 conmon[87022]: cluster 2023-11-30T23:11:48.968104+0000 mgr.smithi038.ldalxq (mgr.14182) 808 : cluster [DBG] pgmap v531: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2023-11-30T23:11:51.278 INFO:teuthology.orchestra.run.smithi038.stdout: 2023-11-30T23:11:51.278 INFO:teuthology.orchestra.run.smithi038.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2023-11-30T22:54:47.122758Z", "last_refresh": "2023-11-30T23:09:52.311067Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2023-11-30T22:54:42.674972Z", "last_refresh": "2023-11-30T23:09:48.452759Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2023-11-30T22:54:45.114633Z", "last_refresh": "2023-11-30T23:09:52.311222Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2023-11-30T23:04:36.503792Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi167.dxieha on smithi167: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2023-11-30T23:07:14.865206Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi167.igxkgw on smithi167: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi167-igxkgw\n/bin/podman: stderr Error: error inspecting object: no such container ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi167-igxkgw\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi167.igxkgw\n/bin/podman: stderr Error: error inspecting object: no such container ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi167.igxkgw\nDeploy daemon haproxy.nfs.foo.smithi167.igxkgw ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi167 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2023-11-30T23:05:21Z\" level=warning msg=\"failed, retrying in 1s ... (1/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-11-30T23:05:59Z\" level=warning msg=\"failed, retrying in 1s ... (2/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-11-30T23:06:37Z\" level=warning msg=\"failed, retrying in 1s ... (3/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi167 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-11-30T23:09:45.061230Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi038.ubrlmp on smithi038: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi038-ubrlmp\n/bin/podman: stderr Error: error inspecting object: no such container ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi038-ubrlmp\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi038.ubrlmp\n/bin/podman: stderr Error: error inspecting object: no such container ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi038.ubrlmp\nDeploy daemon haproxy.nfs.foo.smithi038.ubrlmp ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi038 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2023-11-30T23:07:52Z\" level=warning msg=\"failed, retrying in 1s ... (1/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-11-30T23:08:30Z\" level=warning msg=\"failed, retrying in 1s ... (2/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-11-30T23:09:07Z\" level=warning msg=\"failed, retrying in 1s ... (3/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi038 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-11-30T23:09:45.062547Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi038.vjkntq on smithi038: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2023-11-30T23:09:45.063688Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi167.ndkqyv on smithi167: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.38/16"}, "status": {"created": "2023-11-30T22:58:56.312786Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.38/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2023-11-30T22:54:41.668043Z", "last_refresh": "2023-11-30T23:09:48.452908Z", "running": 2, "size": 2}}, {"events": ["2023-11-30T22:55:50.759225Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi038:172.21.15.38=smithi038", "smithi167:172.21.15.167=smithi167"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2023-11-30T22:55:50.756456Z", "last_refresh": "2023-11-30T23:09:48.452987Z", "running": 2, "size": 2}}, {"events": ["2023-11-30T22:58:56.311581Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2023-11-30T22:58:56.308071Z", "last_refresh": "2023-11-30T23:09:52.311757Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2023-11-30T22:54:46.136630Z", "last_refresh": "2023-11-30T23:09:48.453061Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2023-11-30T22:56:33.258058Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2023-11-30T22:56:33.253117Z", "last_refresh": "2023-11-30T23:09:48.453131Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2023-11-30T22:54:43.949497Z", "last_refresh": "2023-11-30T23:09:52.311357Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2023-11-30T22:58:52.105721Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2023-11-30T22:58:59.793467Z", "last_refresh": "2023-11-30T23:09:48.453411Z", "ports": [8800], "running": 2, "size": 2}}] 2023-11-30T23:11:51.729 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2023-11-30T23:11:52.513 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:11:52 smithi167 conmon[87022]: cluster 2023-11-30T23:11:50.968740+0000 mgr.smithi038.ldalxq (mgr.14182) 809 : cluster [DBG] pgmap v532: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2023-11-30T23:11:52.513 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:11:52 smithi167 conmon[87022]: audit 2023-11-30T23:11:51.273665+0000 mgr.smithi038.ldalxq (mgr.14182) 810 : audit [DBG] from='client.15556 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-11-30T23:11:52.524 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:11:52 smithi038 conmon[81956]: cluster 2023-11-30T23:11:50.968740+0000 mgr.smithi038.ldalxq (mgr.14182) 809 : cluster [DBG] pgmap v532: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2023-11-30T23:11:52.524 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:11:52 smithi038 conmon[81956]: audit 2023-11-30T23:11:51.273665+0000 mgr.smithi038.ldalxq (mgr.14182) 810 : audit [DBG] from='client.15556 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-11-30T23:11:52.731 DEBUG:teuthology.orchestra.run.smithi038:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:0dc074ce0b0b3b4f393f56dd32ef36884ebf45a9 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 3faf8b00-8fd3-11ee-95a2-87774f69a715 -- ceph orch ls -f json 2023-11-30T23:11:54.512 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:11:54 smithi167 conmon[87022]: cluster 2023-11-30T23:11:52.969290+0000 mgr.smithi038.ldalxq (mgr.14182) 811 : cluster [DBG] pgmap v533: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2023-11-30T23:11:54.524 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:11:54 smithi038 conmon[81956]: cluster 2023-11-30T23:11:52.969290+0000 mgr.smithi038.ldalxq (mgr.14182) 811 : cluster [DBG] pgmap v533: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2023-11-30T23:11:54.530 INFO:teuthology.orchestra.run.smithi038.stdout: 2023-11-30T23:11:54.531 INFO:teuthology.orchestra.run.smithi038.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2023-11-30T22:54:47.122758Z", "last_refresh": "2023-11-30T23:09:52.311067Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2023-11-30T22:54:42.674972Z", "last_refresh": "2023-11-30T23:09:48.452759Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2023-11-30T22:54:45.114633Z", "last_refresh": "2023-11-30T23:09:52.311222Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2023-11-30T23:04:36.503792Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi167.dxieha on smithi167: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2023-11-30T23:07:14.865206Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi167.igxkgw on smithi167: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi167-igxkgw\n/bin/podman: stderr Error: error inspecting object: no such container ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi167-igxkgw\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi167.igxkgw\n/bin/podman: stderr Error: error inspecting object: no such container ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi167.igxkgw\nDeploy daemon haproxy.nfs.foo.smithi167.igxkgw ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi167 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2023-11-30T23:05:21Z\" level=warning msg=\"failed, retrying in 1s ... (1/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-11-30T23:05:59Z\" level=warning msg=\"failed, retrying in 1s ... (2/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-11-30T23:06:37Z\" level=warning msg=\"failed, retrying in 1s ... (3/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi167 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-11-30T23:09:45.061230Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi038.ubrlmp on smithi038: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi038-ubrlmp\n/bin/podman: stderr Error: error inspecting object: no such container ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi038-ubrlmp\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi038.ubrlmp\n/bin/podman: stderr Error: error inspecting object: no such container ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi038.ubrlmp\nDeploy daemon haproxy.nfs.foo.smithi038.ubrlmp ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi038 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2023-11-30T23:07:52Z\" level=warning msg=\"failed, retrying in 1s ... (1/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-11-30T23:08:30Z\" level=warning msg=\"failed, retrying in 1s ... (2/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-11-30T23:09:07Z\" level=warning msg=\"failed, retrying in 1s ... (3/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi038 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-11-30T23:09:45.062547Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi038.vjkntq on smithi038: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2023-11-30T23:09:45.063688Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi167.ndkqyv on smithi167: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.38/16"}, "status": {"created": "2023-11-30T22:58:56.312786Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.38/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2023-11-30T22:54:41.668043Z", "last_refresh": "2023-11-30T23:09:48.452908Z", "running": 2, "size": 2}}, {"events": ["2023-11-30T22:55:50.759225Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi038:172.21.15.38=smithi038", "smithi167:172.21.15.167=smithi167"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2023-11-30T22:55:50.756456Z", "last_refresh": "2023-11-30T23:09:48.452987Z", "running": 2, "size": 2}}, {"events": ["2023-11-30T22:58:56.311581Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2023-11-30T22:58:56.308071Z", "last_refresh": "2023-11-30T23:09:52.311757Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2023-11-30T22:54:46.136630Z", "last_refresh": "2023-11-30T23:09:48.453061Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2023-11-30T22:56:33.258058Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2023-11-30T22:56:33.253117Z", "last_refresh": "2023-11-30T23:09:48.453131Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2023-11-30T22:54:43.949497Z", "last_refresh": "2023-11-30T23:09:52.311357Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2023-11-30T22:58:52.105721Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2023-11-30T22:58:59.793467Z", "last_refresh": "2023-11-30T23:09:48.453411Z", "ports": [8800], "running": 2, "size": 2}}] 2023-11-30T23:11:55.178 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:11:55 smithi038 conmon[81956]: audit 2023-11-30T23:11:54.526502+0000 2023-11-30T23:11:55.179 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:11:55 smithi038 conmon[81956]: mgr.smithi038.ldalxq (mgr.14182) 812 : audit [DBG] from='client.15560 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-11-30T23:11:55.181 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2023-11-30T23:11:55.512 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:11:55 smithi167 conmon[87022]: audit 2023-11-30T23:11:54.526502+0000 mgr.smithi038.ldalxq (mgr.14182) 812 : audit [DBG] from='client.15560 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-11-30T23:11:56.182 DEBUG:teuthology.orchestra.run.smithi038:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:0dc074ce0b0b3b4f393f56dd32ef36884ebf45a9 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 3faf8b00-8fd3-11ee-95a2-87774f69a715 -- ceph orch ls -f json 2023-11-30T23:11:56.512 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:11:56 smithi167 conmon[87022]: cluster 2023-11-30T23:11:54.970007+0000 mgr.smithi038.ldalxq (mgr.14182) 813 : cluster [DBG] pgmap v534: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2023-11-30T23:11:56.523 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:11:56 smithi038 conmon[81956]: cluster 2023-11-30T23:11:54.970007+0000 mgr.smithi038.ldalxq (mgr.14182) 813 : cluster [DBG] pgmap v534: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2023-11-30T23:11:57.767 INFO:teuthology.orchestra.run.smithi038.stdout: 2023-11-30T23:11:57.768 INFO:teuthology.orchestra.run.smithi038.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2023-11-30T22:54:47.122758Z", "last_refresh": "2023-11-30T23:09:52.311067Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2023-11-30T22:54:42.674972Z", "last_refresh": "2023-11-30T23:09:48.452759Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2023-11-30T22:54:45.114633Z", "last_refresh": "2023-11-30T23:09:52.311222Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2023-11-30T23:04:36.503792Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi167.dxieha on smithi167: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2023-11-30T23:07:14.865206Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi167.igxkgw on smithi167: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi167-igxkgw\n/bin/podman: stderr Error: error inspecting object: no such container ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi167-igxkgw\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi167.igxkgw\n/bin/podman: stderr Error: error inspecting object: no such container ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi167.igxkgw\nDeploy daemon haproxy.nfs.foo.smithi167.igxkgw ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi167 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2023-11-30T23:05:21Z\" level=warning msg=\"failed, retrying in 1s ... (1/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-11-30T23:05:59Z\" level=warning msg=\"failed, retrying in 1s ... (2/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-11-30T23:06:37Z\" level=warning msg=\"failed, retrying in 1s ... (3/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi167 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-11-30T23:09:45.061230Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi038.ubrlmp on smithi038: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi038-ubrlmp\n/bin/podman: stderr Error: error inspecting object: no such container ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi038-ubrlmp\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi038.ubrlmp\n/bin/podman: stderr Error: error inspecting object: no such container ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi038.ubrlmp\nDeploy daemon haproxy.nfs.foo.smithi038.ubrlmp ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi038 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2023-11-30T23:07:52Z\" level=warning msg=\"failed, retrying in 1s ... (1/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-11-30T23:08:30Z\" level=warning msg=\"failed, retrying in 1s ... (2/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-11-30T23:09:07Z\" level=warning msg=\"failed, retrying in 1s ... (3/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi038 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-11-30T23:09:45.062547Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi038.vjkntq on smithi038: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2023-11-30T23:09:45.063688Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi167.ndkqyv on smithi167: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.38/16"}, "status": {"created": "2023-11-30T22:58:56.312786Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.38/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2023-11-30T22:54:41.668043Z", "last_refresh": "2023-11-30T23:09:48.452908Z", "running": 2, "size": 2}}, {"events": ["2023-11-30T22:55:50.759225Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi038:172.21.15.38=smithi038", "smithi167:172.21.15.167=smithi167"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2023-11-30T22:55:50.756456Z", "last_refresh": "2023-11-30T23:09:48.452987Z", "running": 2, "size": 2}}, {"events": ["2023-11-30T22:58:56.311581Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2023-11-30T22:58:56.308071Z", "last_refresh": "2023-11-30T23:09:52.311757Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2023-11-30T22:54:46.136630Z", "last_refresh": "2023-11-30T23:09:48.453061Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2023-11-30T22:56:33.258058Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2023-11-30T22:56:33.253117Z", "last_refresh": "2023-11-30T23:09:48.453131Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2023-11-30T22:54:43.949497Z", "last_refresh": "2023-11-30T23:09:52.311357Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2023-11-30T22:58:52.105721Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2023-11-30T22:58:59.793467Z", "last_refresh": "2023-11-30T23:09:48.453411Z", "ports": [8800], "running": 2, "size": 2}}] 2023-11-30T23:11:58.183 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:11:57 smithi038 conmon[81956]: cluster 2023-11-30T23:11:56.970629+0000 mgr.smithi038.ldalxq (mgr.14182) 814 : cluster [DBG] pgmap v535: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2023-11-30T23:11:58.232 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2023-11-30T23:11:58.262 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:11:57 smithi167 conmon[87022]: cluster 2023-11-30T23:11:56.970629+0000 mgr.smithi038.ldalxq (mgr.14182) 814 : cluster [DBG] pgmap v535: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2023-11-30T23:11:59.233 DEBUG:teuthology.orchestra.run.smithi038:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:0dc074ce0b0b3b4f393f56dd32ef36884ebf45a9 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 3faf8b00-8fd3-11ee-95a2-87774f69a715 -- ceph orch ls -f json 2023-11-30T23:11:59.262 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:11:58 smithi167 conmon[87022]: audit 2023-11-30T23:11:57.762799+0000 mgr.smithi038.ldalxq (mgr.14182) 815 : audit [DBG] from='client.15564 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-11-30T23:11:59.264 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:11:58 smithi038 conmon[81956]: audit 2023-11-30T23:11:57.762799+0000 mgr.smithi038.ldalxq (mgr.14182) 2023-11-30T23:11:59.264 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:11:58 smithi038 conmon[81956]: 815 : audit [DBG] from='client.15564 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-11-30T23:12:00.117 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:11:59 smithi038 conmon[81956]: cluster 2023-11-30T23:11:58.971635+0000 mgr.smithi038.ldalxq ( 2023-11-30T23:12:00.117 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:11:59 smithi038 conmon[81956]: mgr.14182) 816 : cluster [DBG] pgmap v536: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2023-11-30T23:12:00.262 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:11:59 smithi167 conmon[87022]: cluster 2023-11-30T23:11:58.971635+0000 mgr.smithi038.ldalxq (mgr.14182) 816 : cluster [DBG] pgmap v536: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2023-11-30T23:12:00.967 INFO:teuthology.orchestra.run.smithi038.stdout: 2023-11-30T23:12:00.967 INFO:teuthology.orchestra.run.smithi038.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2023-11-30T22:54:47.122758Z", "last_refresh": "2023-11-30T23:09:52.311067Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2023-11-30T22:54:42.674972Z", "last_refresh": "2023-11-30T23:09:48.452759Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2023-11-30T22:54:45.114633Z", "last_refresh": "2023-11-30T23:09:52.311222Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2023-11-30T23:04:36.503792Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi167.dxieha on smithi167: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2023-11-30T23:07:14.865206Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi167.igxkgw on smithi167: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi167-igxkgw\n/bin/podman: stderr Error: error inspecting object: no such container ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi167-igxkgw\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi167.igxkgw\n/bin/podman: stderr Error: error inspecting object: no such container ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi167.igxkgw\nDeploy daemon haproxy.nfs.foo.smithi167.igxkgw ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi167 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2023-11-30T23:05:21Z\" level=warning msg=\"failed, retrying in 1s ... (1/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-11-30T23:05:59Z\" level=warning msg=\"failed, retrying in 1s ... (2/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-11-30T23:06:37Z\" level=warning msg=\"failed, retrying in 1s ... (3/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi167 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-11-30T23:09:45.061230Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi038.ubrlmp on smithi038: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi038-ubrlmp\n/bin/podman: stderr Error: error inspecting object: no such container ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi038-ubrlmp\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi038.ubrlmp\n/bin/podman: stderr Error: error inspecting object: no such container ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi038.ubrlmp\nDeploy daemon haproxy.nfs.foo.smithi038.ubrlmp ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi038 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2023-11-30T23:07:52Z\" level=warning msg=\"failed, retrying in 1s ... (1/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-11-30T23:08:30Z\" level=warning msg=\"failed, retrying in 1s ... (2/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-11-30T23:09:07Z\" level=warning msg=\"failed, retrying in 1s ... (3/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi038 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-11-30T23:09:45.062547Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi038.vjkntq on smithi038: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2023-11-30T23:09:45.063688Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi167.ndkqyv on smithi167: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.38/16"}, "status": {"created": "2023-11-30T22:58:56.312786Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.38/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2023-11-30T22:54:41.668043Z", "last_refresh": "2023-11-30T23:09:48.452908Z", "running": 2, "size": 2}}, {"events": ["2023-11-30T22:55:50.759225Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi038:172.21.15.38=smithi038", "smithi167:172.21.15.167=smithi167"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2023-11-30T22:55:50.756456Z", "last_refresh": "2023-11-30T23:09:48.452987Z", "running": 2, "size": 2}}, {"events": ["2023-11-30T22:58:56.311581Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2023-11-30T22:58:56.308071Z", "last_refresh": "2023-11-30T23:09:52.311757Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2023-11-30T22:54:46.136630Z", "last_refresh": "2023-11-30T23:09:48.453061Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2023-11-30T22:56:33.258058Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2023-11-30T22:56:33.253117Z", "last_refresh": "2023-11-30T23:09:48.453131Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2023-11-30T22:54:43.949497Z", "last_refresh": "2023-11-30T23:09:52.311357Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2023-11-30T22:58:52.105721Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2023-11-30T22:58:59.793467Z", "last_refresh": "2023-11-30T23:09:48.453411Z", "ports": [8800], "running": 2, "size": 2}}] 2023-11-30T23:12:01.398 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2023-11-30T23:12:02.398 DEBUG:teuthology.orchestra.run.smithi038:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:0dc074ce0b0b3b4f393f56dd32ef36884ebf45a9 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 3faf8b00-8fd3-11ee-95a2-87774f69a715 -- ceph orch ls -f json 2023-11-30T23:12:02.429 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:12:02 smithi038 conmon[81956]: audit 2023-11-30T23:12:00.963260+0000 mgr.smithi038.ldalxq (mgr.14182) 817 : audit [DBG] from='client.15568 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-11-30T23:12:02.429 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:12:02 smithi038 conmon[81956]: cluster 2023-11-30T23:12:00.972307+0000 mgr.smithi038.ldalxq (mgr.14182) 818 : cluster [DBG] pgmap v537: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2023-11-30T23:12:02.512 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:12:02 smithi167 conmon[87022]: audit 2023-11-30T23:12:00.963260+0000 mgr.smithi038.ldalxq (mgr.14182) 817 : audit [DBG] from='client.15568 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-11-30T23:12:02.512 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:12:02 smithi167 conmon[87022]: cluster 2023-11-30T23:12 2023-11-30T23:12:02.512 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:12:02 smithi167 conmon[87022]: :00.972307+0000 mgr.smithi038.ldalxq (mgr.14182) 818 : cluster [DBG] pgmap v537: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2023-11-30T23:12:04.219 INFO:teuthology.orchestra.run.smithi038.stdout: 2023-11-30T23:12:04.219 INFO:teuthology.orchestra.run.smithi038.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2023-11-30T22:54:47.122758Z", "last_refresh": "2023-11-30T23:09:52.311067Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2023-11-30T22:54:42.674972Z", "last_refresh": "2023-11-30T23:09:48.452759Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2023-11-30T22:54:45.114633Z", "last_refresh": "2023-11-30T23:09:52.311222Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2023-11-30T23:04:36.503792Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi167.dxieha on smithi167: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2023-11-30T23:07:14.865206Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi167.igxkgw on smithi167: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi167-igxkgw\n/bin/podman: stderr Error: error inspecting object: no such container ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi167-igxkgw\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi167.igxkgw\n/bin/podman: stderr Error: error inspecting object: no such container ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi167.igxkgw\nDeploy daemon haproxy.nfs.foo.smithi167.igxkgw ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi167 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2023-11-30T23:05:21Z\" level=warning msg=\"failed, retrying in 1s ... (1/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-11-30T23:05:59Z\" level=warning msg=\"failed, retrying in 1s ... (2/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-11-30T23:06:37Z\" level=warning msg=\"failed, retrying in 1s ... (3/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi167 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-11-30T23:09:45.061230Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi038.ubrlmp on smithi038: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi038-ubrlmp\n/bin/podman: stderr Error: error inspecting object: no such container ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi038-ubrlmp\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi038.ubrlmp\n/bin/podman: stderr Error: error inspecting object: no such container ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi038.ubrlmp\nDeploy daemon haproxy.nfs.foo.smithi038.ubrlmp ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi038 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2023-11-30T23:07:52Z\" level=warning msg=\"failed, retrying in 1s ... (1/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-11-30T23:08:30Z\" level=warning msg=\"failed, retrying in 1s ... (2/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-11-30T23:09:07Z\" level=warning msg=\"failed, retrying in 1s ... (3/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi038 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-11-30T23:09:45.062547Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi038.vjkntq on smithi038: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2023-11-30T23:09:45.063688Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi167.ndkqyv on smithi167: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.38/16"}, "status": {"created": "2023-11-30T22:58:56.312786Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.38/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2023-11-30T22:54:41.668043Z", "last_refresh": "2023-11-30T23:09:48.452908Z", "running": 2, "size": 2}}, {"events": ["2023-11-30T22:55:50.759225Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi038:172.21.15.38=smithi038", "smithi167:172.21.15.167=smithi167"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2023-11-30T22:55:50.756456Z", "last_refresh": "2023-11-30T23:09:48.452987Z", "running": 2, "size": 2}}, {"events": ["2023-11-30T22:58:56.311581Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2023-11-30T22:58:56.308071Z", "last_refresh": "2023-11-30T23:09:52.311757Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2023-11-30T22:54:46.136630Z", "last_refresh": "2023-11-30T23:09:48.453061Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2023-11-30T22:56:33.258058Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2023-11-30T22:56:33.253117Z", "last_refresh": "2023-11-30T23:09:48.453131Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2023-11-30T22:54:43.949497Z", "last_refresh": "2023-11-30T23:09:52.311357Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2023-11-30T22:58:52.105721Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2023-11-30T22:58:59.793467Z", "last_refresh": "2023-11-30T23:09:48.453411Z", "ports": [8800], "running": 2, "size": 2}}] 2023-11-30T23:12:04.244 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:12:04 smithi038 conmon[81956]: cluster 2023-11-30T23:12:02.972993+0000 mgr.smithi038.ldalxq (mgr.14182) 819 : cluster [DBG] pgmap v538: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2023-11-30T23:12:04.512 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:12:04 smithi167 conmon[87022]: cluster 2023-11-30T23:12:02.972993+0000 mgr.smithi038.ldalxq (mgr.14182) 819 : cluster [DBG] pgmap v538: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2023-11-30T23:12:04.646 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2023-11-30T23:12:05.512 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:12:05 smithi167 conmon[87022]: audit 2023-11-30T23:12:04.214916+0000 mgr.smithi038.ldalxq (mgr.14182) 820 : audit [DBG] from='client.15572 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-11-30T23:12:05.524 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:12:05 smithi038 conmon[81956]: audit 2023-11-30T23:12:04.214916+0000 mgr.smithi038.ldalxq (mgr.14182) 820 : audit [DBG] from='client.15572 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-11-30T23:12:05.647 DEBUG:teuthology.orchestra.run.smithi038:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:0dc074ce0b0b3b4f393f56dd32ef36884ebf45a9 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 3faf8b00-8fd3-11ee-95a2-87774f69a715 -- ceph orch ls -f json 2023-11-30T23:12:06.379 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:12:06 smithi038 conmon[81956]: cluster 2023-11-30T23:12:04.973763 2023-11-30T23:12:06.379 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:12:06 smithi038 conmon[81956]: +0000 mgr.smithi038.ldalxq (mgr.14182) 821 : cluster [DBG] pgmap v539: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2023-11-30T23:12:06.512 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:12:06 smithi167 conmon[87022]: cluster 2023-11-30T23:12:04.973763+0000 mgr.smithi038.ldalxq (mgr.14182) 821 : cluster [DBG] pgmap v539: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2023-11-30T23:12:07.395 INFO:teuthology.orchestra.run.smithi038.stdout: 2023-11-30T23:12:07.395 INFO:teuthology.orchestra.run.smithi038.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2023-11-30T22:54:47.122758Z", "last_refresh": "2023-11-30T23:09:52.311067Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2023-11-30T22:54:42.674972Z", "last_refresh": "2023-11-30T23:09:48.452759Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2023-11-30T22:54:45.114633Z", "last_refresh": "2023-11-30T23:09:52.311222Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2023-11-30T23:04:36.503792Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi167.dxieha on smithi167: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2023-11-30T23:07:14.865206Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi167.igxkgw on smithi167: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi167-igxkgw\n/bin/podman: stderr Error: error inspecting object: no such container ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi167-igxkgw\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi167.igxkgw\n/bin/podman: stderr Error: error inspecting object: no such container ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi167.igxkgw\nDeploy daemon haproxy.nfs.foo.smithi167.igxkgw ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi167 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2023-11-30T23:05:21Z\" level=warning msg=\"failed, retrying in 1s ... (1/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-11-30T23:05:59Z\" level=warning msg=\"failed, retrying in 1s ... (2/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-11-30T23:06:37Z\" level=warning msg=\"failed, retrying in 1s ... (3/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi167 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-11-30T23:09:45.061230Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi038.ubrlmp on smithi038: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi038-ubrlmp\n/bin/podman: stderr Error: error inspecting object: no such container ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi038-ubrlmp\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi038.ubrlmp\n/bin/podman: stderr Error: error inspecting object: no such container ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi038.ubrlmp\nDeploy daemon haproxy.nfs.foo.smithi038.ubrlmp ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi038 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2023-11-30T23:07:52Z\" level=warning msg=\"failed, retrying in 1s ... (1/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-11-30T23:08:30Z\" level=warning msg=\"failed, retrying in 1s ... (2/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-11-30T23:09:07Z\" level=warning msg=\"failed, retrying in 1s ... (3/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi038 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-11-30T23:09:45.062547Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi038.vjkntq on smithi038: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2023-11-30T23:09:45.063688Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi167.ndkqyv on smithi167: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.38/16"}, "status": {"created": "2023-11-30T22:58:56.312786Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.38/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2023-11-30T22:54:41.668043Z", "last_refresh": "2023-11-30T23:09:48.452908Z", "running": 2, "size": 2}}, {"events": ["2023-11-30T22:55:50.759225Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi038:172.21.15.38=smithi038", "smithi167:172.21.15.167=smithi167"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2023-11-30T22:55:50.756456Z", "last_refresh": "2023-11-30T23:09:48.452987Z", "running": 2, "size": 2}}, {"events": ["2023-11-30T22:58:56.311581Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2023-11-30T22:58:56.308071Z", "last_refresh": "2023-11-30T23:09:52.311757Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2023-11-30T22:54:46.136630Z", "last_refresh": "2023-11-30T23:09:48.453061Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2023-11-30T22:56:33.258058Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2023-11-30T22:56:33.253117Z", "last_refresh": "2023-11-30T23:09:48.453131Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2023-11-30T22:54:43.949497Z", "last_refresh": "2023-11-30T23:09:52.311357Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2023-11-30T22:58:52.105721Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2023-11-30T22:58:59.793467Z", "last_refresh": "2023-11-30T23:09:48.453411Z", "ports": [8800], "running": 2, "size": 2}}] 2023-11-30T23:12:07.897 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2023-11-30T23:12:08.262 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:12:07 smithi167 conmon[87022]: cluster 2023-11-30T23:12:06.974422+0000 mgr.smithi038.ldalxq (mgr.14182) 822 : cluster [DBG] pgmap v540: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2023-11-30T23:12:08.262 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:12:07 smithi167 conmon[87022]: audit 2023-11-30T23:12:07.391397+0000 mgr.smithi038.ldalxq (mgr.14182) 823 : audit [DBG] from='client.15576 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-11-30T23:12:08.274 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:12:07 smithi038 conmon[81956]: cluster 2023-11-30T23:12:06.974422+0000 mgr.smithi038.ldalxq (mgr.14182) 822 2023-11-30T23:12:08.274 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:12:07 smithi038 conmon[81956]: : cluster [DBG] pgmap v540: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2023-11-30T23:12:08.274 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:12:07 smithi038 conmon[81956]: audit 2023-11-30T23:12:07.391397+0000 mgr.smithi038.ldalxq (mgr.14182) 823 : audit [DBG] from='client.15576 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-11-30T23:12:08.898 DEBUG:teuthology.orchestra.run.smithi038:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:0dc074ce0b0b3b4f393f56dd32ef36884ebf45a9 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 3faf8b00-8fd3-11ee-95a2-87774f69a715 -- ceph orch ls -f json 2023-11-30T23:12:10.192 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:12:10 smithi038 conmon[81956]: cluster 2023-11-30T23: 2023-11-30T23:12:10.192 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:12:10 smithi038 conmon[81956]: 12:08.975087+0000 mgr.smithi038.ldalxq (mgr.14182) 824 : cluster [DBG] pgmap v541: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2023-11-30T23:12:10.512 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:12:10 smithi167 conmon[87022]: cluster 2023-11-30T23:12:08.975087+0000 mgr.smithi038.ldalxq (mgr.14182) 824 : cluster [DBG] pgmap v541: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2023-11-30T23:12:10.585 INFO:teuthology.orchestra.run.smithi038.stdout: 2023-11-30T23:12:10.585 INFO:teuthology.orchestra.run.smithi038.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2023-11-30T22:54:47.122758Z", "last_refresh": "2023-11-30T23:09:52.311067Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2023-11-30T22:54:42.674972Z", "last_refresh": "2023-11-30T23:09:48.452759Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2023-11-30T22:54:45.114633Z", "last_refresh": "2023-11-30T23:09:52.311222Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2023-11-30T23:04:36.503792Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi167.dxieha on smithi167: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2023-11-30T23:07:14.865206Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi167.igxkgw on smithi167: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi167-igxkgw\n/bin/podman: stderr Error: error inspecting object: no such container ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi167-igxkgw\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi167.igxkgw\n/bin/podman: stderr Error: error inspecting object: no such container ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi167.igxkgw\nDeploy daemon haproxy.nfs.foo.smithi167.igxkgw ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi167 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2023-11-30T23:05:21Z\" level=warning msg=\"failed, retrying in 1s ... (1/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-11-30T23:05:59Z\" level=warning msg=\"failed, retrying in 1s ... (2/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-11-30T23:06:37Z\" level=warning msg=\"failed, retrying in 1s ... (3/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi167 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-11-30T23:09:45.061230Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi038.ubrlmp on smithi038: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi038-ubrlmp\n/bin/podman: stderr Error: error inspecting object: no such container ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi038-ubrlmp\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi038.ubrlmp\n/bin/podman: stderr Error: error inspecting object: no such container ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi038.ubrlmp\nDeploy daemon haproxy.nfs.foo.smithi038.ubrlmp ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi038 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2023-11-30T23:07:52Z\" level=warning msg=\"failed, retrying in 1s ... (1/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-11-30T23:08:30Z\" level=warning msg=\"failed, retrying in 1s ... (2/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-11-30T23:09:07Z\" level=warning msg=\"failed, retrying in 1s ... (3/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi038 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-11-30T23:09:45.062547Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi038.vjkntq on smithi038: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2023-11-30T23:09:45.063688Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi167.ndkqyv on smithi167: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.38/16"}, "status": {"created": "2023-11-30T22:58:56.312786Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.38/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2023-11-30T22:54:41.668043Z", "last_refresh": "2023-11-30T23:09:48.452908Z", "running": 2, "size": 2}}, {"events": ["2023-11-30T22:55:50.759225Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi038:172.21.15.38=smithi038", "smithi167:172.21.15.167=smithi167"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2023-11-30T22:55:50.756456Z", "last_refresh": "2023-11-30T23:09:48.452987Z", "running": 2, "size": 2}}, {"events": ["2023-11-30T22:58:56.311581Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2023-11-30T22:58:56.308071Z", "last_refresh": "2023-11-30T23:09:52.311757Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2023-11-30T22:54:46.136630Z", "last_refresh": "2023-11-30T23:09:48.453061Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2023-11-30T22:56:33.258058Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2023-11-30T22:56:33.253117Z", "last_refresh": "2023-11-30T23:09:48.453131Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2023-11-30T22:54:43.949497Z", "last_refresh": "2023-11-30T23:09:52.311357Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2023-11-30T22:58:52.105721Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2023-11-30T22:58:59.793467Z", "last_refresh": "2023-11-30T23:09:48.453411Z", "ports": [8800], "running": 2, "size": 2}}] 2023-11-30T23:12:11.149 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2023-11-30T23:12:11.512 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:12:11 smithi167 conmon[87022]: audit 2023-11-30T23:12:10.580658+0000 mgr.smithi038.ldalxq (mgr.14182) 825 : audit [DBG] from='client.15580 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-11-30T23:12:11.524 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:12:11 smithi038 conmon[81956]: audit 2023-11-30T23:12:10.580658+0000 mgr.smithi038.ldalxq (mgr.14182 2023-11-30T23:12:11.524 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:12:11 smithi038 conmon[81956]: ) 825 : audit [DBG] from='client.15580 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-11-30T23:12:12.150 DEBUG:teuthology.orchestra.run.smithi038:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:0dc074ce0b0b3b4f393f56dd32ef36884ebf45a9 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 3faf8b00-8fd3-11ee-95a2-87774f69a715 -- ceph orch ls -f json 2023-11-30T23:12:12.512 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:12:12 smithi167 conmon[87022]: cluster 2023-11-30T23:12:10.975857+0000 mgr.smithi038.ldalxq (mgr.14182) 826 : cluster [DBG] pgmap v542: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2023-11-30T23:12:12.523 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:12:12 smithi038 conmon[81956]: cluster 2023-11-30T23:12:10.975857+0000 mgr.smithi038.ldalxq (mgr.14182) 826 : cluster 2023-11-30T23:12:12.524 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:12:12 smithi038 conmon[81956]: [DBG] pgmap v542: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2023-11-30T23:12:13.971 INFO:teuthology.orchestra.run.smithi038.stdout: 2023-11-30T23:12:13.971 INFO:teuthology.orchestra.run.smithi038.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2023-11-30T22:54:47.122758Z", "last_refresh": "2023-11-30T23:09:52.311067Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2023-11-30T22:54:42.674972Z", "last_refresh": "2023-11-30T23:09:48.452759Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2023-11-30T22:54:45.114633Z", "last_refresh": "2023-11-30T23:09:52.311222Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2023-11-30T23:04:36.503792Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi167.dxieha on smithi167: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2023-11-30T23:07:14.865206Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi167.igxkgw on smithi167: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi167-igxkgw\n/bin/podman: stderr Error: error inspecting object: no such container ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi167-igxkgw\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi167.igxkgw\n/bin/podman: stderr Error: error inspecting object: no such container ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi167.igxkgw\nDeploy daemon haproxy.nfs.foo.smithi167.igxkgw ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi167 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2023-11-30T23:05:21Z\" level=warning msg=\"failed, retrying in 1s ... (1/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-11-30T23:05:59Z\" level=warning msg=\"failed, retrying in 1s ... (2/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-11-30T23:06:37Z\" level=warning msg=\"failed, retrying in 1s ... (3/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi167 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-11-30T23:09:45.061230Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi038.ubrlmp on smithi038: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi038-ubrlmp\n/bin/podman: stderr Error: error inspecting object: no such container ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi038-ubrlmp\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi038.ubrlmp\n/bin/podman: stderr Error: error inspecting object: no such container ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi038.ubrlmp\nDeploy daemon haproxy.nfs.foo.smithi038.ubrlmp ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi038 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2023-11-30T23:07:52Z\" level=warning msg=\"failed, retrying in 1s ... (1/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-11-30T23:08:30Z\" level=warning msg=\"failed, retrying in 1s ... (2/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-11-30T23:09:07Z\" level=warning msg=\"failed, retrying in 1s ... (3/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi038 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-11-30T23:09:45.062547Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi038.vjkntq on smithi038: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2023-11-30T23:09:45.063688Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi167.ndkqyv on smithi167: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.38/16"}, "status": {"created": "2023-11-30T22:58:56.312786Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.38/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2023-11-30T22:54:41.668043Z", "last_refresh": "2023-11-30T23:09:48.452908Z", "running": 2, "size": 2}}, {"events": ["2023-11-30T22:55:50.759225Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi038:172.21.15.38=smithi038", "smithi167:172.21.15.167=smithi167"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2023-11-30T22:55:50.756456Z", "last_refresh": "2023-11-30T23:09:48.452987Z", "running": 2, "size": 2}}, {"events": ["2023-11-30T22:58:56.311581Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2023-11-30T22:58:56.308071Z", "last_refresh": "2023-11-30T23:09:52.311757Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2023-11-30T22:54:46.136630Z", "last_refresh": "2023-11-30T23:09:48.453061Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2023-11-30T22:56:33.258058Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2023-11-30T22:56:33.253117Z", "last_refresh": "2023-11-30T23:09:48.453131Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2023-11-30T22:54:43.949497Z", "last_refresh": "2023-11-30T23:09:52.311357Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2023-11-30T22:58:52.105721Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2023-11-30T22:58:59.793467Z", "last_refresh": "2023-11-30T23:09:48.453411Z", "ports": [8800], "running": 2, "size": 2}}] 2023-11-30T23:12:14.274 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:12:14 smithi038 conmon[81956]: cluster 2023-11-30T23:12:12.976422+0000 mgr.smithi038.ldalxq (mgr.14182) 827 : cluster [DBG] pgmap v543: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2023-11-30T23:12:14.401 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2023-11-30T23:12:14.512 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:12:14 smithi167 conmon[87022]: cluster 2023-11-30T23:12:12.976422+0000 mgr.smithi038.ldalxq (mgr.14182) 2023-11-30T23:12:14.512 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:12:14 smithi167 conmon[87022]: 827 : cluster [DBG] pgmap v543: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2023-11-30T23:12:15.403 DEBUG:teuthology.orchestra.run.smithi038:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:0dc074ce0b0b3b4f393f56dd32ef36884ebf45a9 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 3faf8b00-8fd3-11ee-95a2-87774f69a715 -- ceph orch ls -f json 2023-11-30T23:12:15.436 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:12:15 smithi038 conmon[81956]: audit 2023-11-30T23:12:13.966502+0000 mgr.smithi038.ldalxq (mgr.14182) 828 : audit [DBG] from='client.15584 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-11-30T23:12:15.512 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:12:15 smithi167 conmon[87022]: audit 2023-11-30T23:12:13.966502+0000 mgr.smithi038.ldalxq (mgr.14182) 828 : 2023-11-30T23:12:15.512 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:12:15 smithi167 conmon[87022]: audit [DBG] from='client.15584 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-11-30T23:12:16.274 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:12:16 smithi038 conmon[81956]: cluster 2023-11-30T23:12:14.977229+0000 mgr.smithi038.ldalxq (mgr. 2023-11-30T23:12:16.274 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:12:16 smithi038 conmon[81956]: 14182) 829 : cluster [DBG] pgmap v544: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2023-11-30T23:12:16.512 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:12:16 smithi167 conmon[87022]: cluster 2023-11-30T23:12:14.977229+0000 mgr.smithi038.ldalxq (mgr.14182) 829 : cluster [DBG] 2023-11-30T23:12:16.512 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:12:16 smithi167 conmon[87022]: pgmap v544: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2023-11-30T23:12:17.245 INFO:teuthology.orchestra.run.smithi038.stdout: 2023-11-30T23:12:17.245 INFO:teuthology.orchestra.run.smithi038.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2023-11-30T22:54:47.122758Z", "last_refresh": "2023-11-30T23:09:52.311067Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2023-11-30T22:54:42.674972Z", "last_refresh": "2023-11-30T23:09:48.452759Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2023-11-30T22:54:45.114633Z", "last_refresh": "2023-11-30T23:09:52.311222Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2023-11-30T23:04:36.503792Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi167.dxieha on smithi167: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2023-11-30T23:07:14.865206Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi167.igxkgw on smithi167: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi167-igxkgw\n/bin/podman: stderr Error: error inspecting object: no such container ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi167-igxkgw\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi167.igxkgw\n/bin/podman: stderr Error: error inspecting object: no such container ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi167.igxkgw\nDeploy daemon haproxy.nfs.foo.smithi167.igxkgw ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi167 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2023-11-30T23:05:21Z\" level=warning msg=\"failed, retrying in 1s ... (1/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-11-30T23:05:59Z\" level=warning msg=\"failed, retrying in 1s ... (2/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-11-30T23:06:37Z\" level=warning msg=\"failed, retrying in 1s ... (3/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi167 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-11-30T23:09:45.061230Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi038.ubrlmp on smithi038: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi038-ubrlmp\n/bin/podman: stderr Error: error inspecting object: no such container ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi038-ubrlmp\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi038.ubrlmp\n/bin/podman: stderr Error: error inspecting object: no such container ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi038.ubrlmp\nDeploy daemon haproxy.nfs.foo.smithi038.ubrlmp ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi038 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2023-11-30T23:07:52Z\" level=warning msg=\"failed, retrying in 1s ... (1/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-11-30T23:08:30Z\" level=warning msg=\"failed, retrying in 1s ... (2/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-11-30T23:09:07Z\" level=warning msg=\"failed, retrying in 1s ... (3/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi038 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-11-30T23:09:45.062547Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi038.vjkntq on smithi038: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2023-11-30T23:09:45.063688Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi167.ndkqyv on smithi167: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.38/16"}, "status": {"created": "2023-11-30T22:58:56.312786Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.38/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2023-11-30T22:54:41.668043Z", "last_refresh": "2023-11-30T23:09:48.452908Z", "running": 2, "size": 2}}, {"events": ["2023-11-30T22:55:50.759225Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi038:172.21.15.38=smithi038", "smithi167:172.21.15.167=smithi167"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2023-11-30T22:55:50.756456Z", "last_refresh": "2023-11-30T23:09:48.452987Z", "running": 2, "size": 2}}, {"events": ["2023-11-30T22:58:56.311581Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2023-11-30T22:58:56.308071Z", "last_refresh": "2023-11-30T23:09:52.311757Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2023-11-30T22:54:46.136630Z", "last_refresh": "2023-11-30T23:09:48.453061Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2023-11-30T22:56:33.258058Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2023-11-30T22:56:33.253117Z", "last_refresh": "2023-11-30T23:09:48.453131Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2023-11-30T22:54:43.949497Z", "last_refresh": "2023-11-30T23:09:52.311357Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2023-11-30T22:58:52.105721Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2023-11-30T22:58:59.793467Z", "last_refresh": "2023-11-30T23:09:48.453411Z", "ports": [8800], "running": 2, "size": 2}}] 2023-11-30T23:12:17.865 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:12:17 smithi038 conmon[81956]: cluster 2023-11-30T23:12:16.977734+0000 mgr.smithi038.ldalxq (mgr.14182) 830 : cluster [DBG] pgmap v545: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2023-11-30T23:12:17.865 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:12:17 smithi038 conmon[81956]: audit 2023-11-30T23:12:17.240604+0000 mgr.smithi038.ldalxq (mgr.14182) 831 : audit [DBG] from='client.15588 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-11-30T23:12:17.867 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2023-11-30T23:12:18.262 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:12:17 smithi167 conmon[87022]: cluster 2023-11-30T23:12:16.977734+0000 mgr.smithi038.ldalxq (mgr.14182) 830 : cluster [DBG] 2023-11-30T23:12:18.262 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:12:17 smithi167 conmon[87022]: pgmap v545: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2023-11-30T23:12:18.262 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:12:17 smithi167 conmon[87022]: audit 2023-11-30T23:12:17.240604+0000 mgr.smithi038.ldalxq (mgr.14182) 831 : audit [DBG] from='client.15588 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-11-30T23:12:18.868 DEBUG:teuthology.orchestra.run.smithi038:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:0dc074ce0b0b3b4f393f56dd32ef36884ebf45a9 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 3faf8b00-8fd3-11ee-95a2-87774f69a715 -- ceph orch ls -f json 2023-11-30T23:12:20.512 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:12:20 smithi167 conmon[87022]: cluster 2023-11-30T23:12:18.978331+0000 mgr.smithi038.ldalxq (mgr.14182) 832 : cluster [DBG] pgmap v546: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2023-11-30T23:12:20.524 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:12:20 smithi038 conmon[81956]: cluster 2023-11-30T23:12:18.978331+0000 mgr.smithi038.ldalxq (mgr. 2023-11-30T23:12:20.524 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:12:20 smithi038 conmon[81956]: 14182) 832 : cluster [DBG] pgmap v546: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2023-11-30T23:12:20.561 INFO:teuthology.orchestra.run.smithi038.stdout: 2023-11-30T23:12:20.561 INFO:teuthology.orchestra.run.smithi038.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2023-11-30T22:54:47.122758Z", "last_refresh": "2023-11-30T23:09:52.311067Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2023-11-30T22:54:42.674972Z", "last_refresh": "2023-11-30T23:09:48.452759Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2023-11-30T22:54:45.114633Z", "last_refresh": "2023-11-30T23:09:52.311222Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2023-11-30T23:04:36.503792Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi167.dxieha on smithi167: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2023-11-30T23:07:14.865206Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi167.igxkgw on smithi167: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi167-igxkgw\n/bin/podman: stderr Error: error inspecting object: no such container ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi167-igxkgw\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi167.igxkgw\n/bin/podman: stderr Error: error inspecting object: no such container ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi167.igxkgw\nDeploy daemon haproxy.nfs.foo.smithi167.igxkgw ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi167 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2023-11-30T23:05:21Z\" level=warning msg=\"failed, retrying in 1s ... (1/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-11-30T23:05:59Z\" level=warning msg=\"failed, retrying in 1s ... (2/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-11-30T23:06:37Z\" level=warning msg=\"failed, retrying in 1s ... (3/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi167 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-11-30T23:09:45.061230Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi038.ubrlmp on smithi038: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi038-ubrlmp\n/bin/podman: stderr Error: error inspecting object: no such container ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi038-ubrlmp\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi038.ubrlmp\n/bin/podman: stderr Error: error inspecting object: no such container ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi038.ubrlmp\nDeploy daemon haproxy.nfs.foo.smithi038.ubrlmp ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi038 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2023-11-30T23:07:52Z\" level=warning msg=\"failed, retrying in 1s ... (1/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-11-30T23:08:30Z\" level=warning msg=\"failed, retrying in 1s ... (2/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-11-30T23:09:07Z\" level=warning msg=\"failed, retrying in 1s ... (3/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi038 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-11-30T23:09:45.062547Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi038.vjkntq on smithi038: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2023-11-30T23:09:45.063688Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi167.ndkqyv on smithi167: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.38/16"}, "status": {"created": "2023-11-30T22:58:56.312786Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.38/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2023-11-30T22:54:41.668043Z", "last_refresh": "2023-11-30T23:09:48.452908Z", "running": 2, "size": 2}}, {"events": ["2023-11-30T22:55:50.759225Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi038:172.21.15.38=smithi038", "smithi167:172.21.15.167=smithi167"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2023-11-30T22:55:50.756456Z", "last_refresh": "2023-11-30T23:09:48.452987Z", "running": 2, "size": 2}}, {"events": ["2023-11-30T22:58:56.311581Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2023-11-30T22:58:56.308071Z", "last_refresh": "2023-11-30T23:09:52.311757Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2023-11-30T22:54:46.136630Z", "last_refresh": "2023-11-30T23:09:48.453061Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2023-11-30T22:56:33.258058Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2023-11-30T22:56:33.253117Z", "last_refresh": "2023-11-30T23:09:48.453131Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2023-11-30T22:54:43.949497Z", "last_refresh": "2023-11-30T23:09:52.311357Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2023-11-30T22:58:52.105721Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2023-11-30T22:58:59.793467Z", "last_refresh": "2023-11-30T23:09:48.453411Z", "ports": [8800], "running": 2, "size": 2}}] 2023-11-30T23:12:20.928 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2023-11-30T23:12:21.274 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:12:21 smithi038 conmon[81956]: audit 2023-11-30T23:12:20.556710+0000 mgr.smithi038.ldalxq (mgr.14182) 833 : audit [DBG] from='client.15592 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-11-30T23:12:21.512 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:12:21 smithi167 conmon[87022]: audit 2023-11-30T23:12:20.556710+0000 mgr.smithi038.ldalxq (mgr.14182) 833 : audit [DBG] 2023-11-30T23:12:21.512 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:12:21 smithi167 conmon[87022]: from='client.15592 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-11-30T23:12:21.930 DEBUG:teuthology.orchestra.run.smithi038:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:0dc074ce0b0b3b4f393f56dd32ef36884ebf45a9 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 3faf8b00-8fd3-11ee-95a2-87774f69a715 -- ceph orch ls -f json 2023-11-30T23:12:22.274 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:12:22 smithi038 conmon[81956]: cluster 2023-11-30T23:12:20.979004+0000 mgr.smithi038.ldalxq (mgr.14182) 2023-11-30T23:12:22.274 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:12:22 smithi038 conmon[81956]: 834 : cluster [DBG] pgmap v547: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2023-11-30T23:12:22.512 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:12:22 smithi167 conmon[87022]: cluster 2023-11-30T23:12:20.979004+0000 mgr.smithi038.ldalxq (mgr.14182) 834 : cluster 2023-11-30T23:12:22.512 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:12:22 smithi167 conmon[87022]: [DBG] pgmap v547: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2023-11-30T23:12:23.660 INFO:teuthology.orchestra.run.smithi038.stdout: 2023-11-30T23:12:23.661 INFO:teuthology.orchestra.run.smithi038.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2023-11-30T22:54:47.122758Z", "last_refresh": "2023-11-30T23:09:52.311067Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2023-11-30T22:54:42.674972Z", "last_refresh": "2023-11-30T23:09:48.452759Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2023-11-30T22:54:45.114633Z", "last_refresh": "2023-11-30T23:09:52.311222Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2023-11-30T23:07:14.865206Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi167.igxkgw on smithi167: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi167-igxkgw\n/bin/podman: stderr Error: error inspecting object: no such container ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi167-igxkgw\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi167.igxkgw\n/bin/podman: stderr Error: error inspecting object: no such container ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi167.igxkgw\nDeploy daemon haproxy.nfs.foo.smithi167.igxkgw ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi167 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2023-11-30T23:05:21Z\" level=warning msg=\"failed, retrying in 1s ... (1/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-11-30T23:05:59Z\" level=warning msg=\"failed, retrying in 1s ... (2/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-11-30T23:06:37Z\" level=warning msg=\"failed, retrying in 1s ... (3/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi167 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-11-30T23:09:45.061230Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi038.ubrlmp on smithi038: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi038-ubrlmp\n/bin/podman: stderr Error: error inspecting object: no such container ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi038-ubrlmp\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi038.ubrlmp\n/bin/podman: stderr Error: error inspecting object: no such container ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi038.ubrlmp\nDeploy daemon haproxy.nfs.foo.smithi038.ubrlmp ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi038 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2023-11-30T23:07:52Z\" level=warning msg=\"failed, retrying in 1s ... (1/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-11-30T23:08:30Z\" level=warning msg=\"failed, retrying in 1s ... (2/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-11-30T23:09:07Z\" level=warning msg=\"failed, retrying in 1s ... (3/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi038 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-11-30T23:09:45.062547Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi038.vjkntq on smithi038: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2023-11-30T23:09:45.063688Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi167.ndkqyv on smithi167: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2023-11-30T23:12:23.150100Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi167.nhhxhd on smithi167: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi167-nhhxhd\n/bin/podman: stderr Error: error inspecting object: no such container ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi167-nhhxhd\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi167.nhhxhd\n/bin/podman: stderr Error: error inspecting object: no such container ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi167.nhhxhd\nDeploy daemon haproxy.nfs.foo.smithi167.nhhxhd ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi167 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2023-11-30T23:10:30Z\" level=warning msg=\"failed, retrying in 1s ... (1/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-11-30T23:11:08Z\" level=warning msg=\"failed, retrying in 1s ... (2/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-11-30T23:11:45Z\" level=warning msg=\"failed, retrying in 1s ... (3/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi167 -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": 9049, "virtual_ip": "10.0.31.38/16"}, "status": {"created": "2023-11-30T22:58:56.312786Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.38/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2023-11-30T22:54:41.668043Z", "last_refresh": "2023-11-30T23:09:48.452908Z", "running": 2, "size": 2}}, {"events": ["2023-11-30T22:55:50.759225Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi038:172.21.15.38=smithi038", "smithi167:172.21.15.167=smithi167"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2023-11-30T22:55:50.756456Z", "last_refresh": "2023-11-30T23:09:48.452987Z", "running": 2, "size": 2}}, {"events": ["2023-11-30T22:58:56.311581Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2023-11-30T22:58:56.308071Z", "last_refresh": "2023-11-30T23:09:52.311757Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2023-11-30T22:54:46.136630Z", "last_refresh": "2023-11-30T23:09:48.453061Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2023-11-30T22:56:33.258058Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2023-11-30T22:56:33.253117Z", "last_refresh": "2023-11-30T23:09:48.453131Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2023-11-30T22:54:43.949497Z", "last_refresh": "2023-11-30T23:09:52.311357Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2023-11-30T22:58:52.105721Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2023-11-30T22:58:59.793467Z", "last_refresh": "2023-11-30T23:09:48.453411Z", "ports": [8800], "running": 2, "size": 2}}] 2023-11-30T23:12:24.093 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2023-11-30T23:12:24.512 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:12:24 smithi167 conmon[87022]: cluster 2023-11-30T23:12:22.979580+0000 mgr.smithi038.ldalxq (mgr.14182) 835 : cluster 2023-11-30T23:12:24.512 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:12:24 smithi167 conmon[87022]: [DBG] pgmap v548: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2023-11-30T23:12:24.512 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:12:24 smithi167 conmon[87022]: cephadm 2023-11-30T23:12:23.149105+0000 mgr.smithi038.ldalxq (mgr.14182) 836 : cephadm [ERR] cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi167-nhhxhd 2023-11-30T23:12:24.512 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:12:24 smithi167 conmon[87022]: /bin/podman: stderr Error: error inspecting object: no such container ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi167-nhhxhd 2023-11-30T23:12:24.512 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:12:24 smithi167 conmon[87022]: Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi167.nhhxhd 2023-11-30T23:12:24.513 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:12:24 smithi167 conmon[87022]: /bin/podman: stderr Error: error inspecting object: no such container ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi167.nhhxhd 2023-11-30T23:12:24.513 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:12:24 smithi167 conmon[87022]: Deploy daemon haproxy.nfs.foo.smithi167.nhhxhd ... 2023-11-30T23:12:24.513 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:12:24 smithi167 conmon[87022]: Non-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi167 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2023-11-30T23:12:24.513 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:12:24 smithi167 conmon[87022]: stat: stderr Trying to pull docker.io/library/haproxy:2.3... 2023-11-30T23:12:24.513 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:12:24 smithi167 conmon[87022]: stat: stderr time="2023-11-30T23:10:30Z" level=warning msg="failed, retrying in 1s ... (1/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit" 2023-11-30T23:12:24.513 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:12:24 smithi167 conmon[87022]: stat: stderr time="2023-11-30T23:11:08Z" level=warning msg="failed, retrying in 1s ... (2/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit" 2023-11-30T23:12:24.513 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:12:24 smithi167 conmon[87022]: stat: stderr time="2023-11-30T23:11:45Z" level=warning msg="failed, retrying in 1s ... (3/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit" 2023-11-30T23:12:24.514 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:12:24 smithi167 conmon[87022]: stat: stderr Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get "https://docker-mirror.front.sepia.ceph.com:5000/v2/": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit 2023-11-30T23:12:24.514 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:12:24 smithi167 conmon[87022]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi167 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2023-11-30T23:12:24.514 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:12:24 smithi167 conmon[87022]: Traceback (most recent call last): 2023-11-30T23:12:24.514 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:12:24 smithi167 conmon[87022]: File "/usr/share/ceph/mgr/cephadm/serve.py", line 1538, in _remote_connection 2023-11-30T23:12:24.514 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:12:24 smithi167 conmon[87022]: yield (conn, connr) 2023-11-30T23:12:24.515 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:12:24 smithi167 conmon[87022]: File "/usr/share/ceph/mgr/cephadm/serve.py", line 1426, in _run_cephadm 2023-11-30T23:12:24.515 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:12:24 smithi167 conmon[87022]: code, '\n'.join(err))) 2023-11-30T23:12:24.515 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:12:24 smithi167 conmon[87022]: orchestrator._interface.OrchestratorError: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi167-nhhxhd 2023-11-30T23:12:24.515 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:12:24 smithi167 conmon[87022]: /bin/podman: stderr Error: error inspecting object: no such container ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi167-nhhxhd 2023-11-30T23:12:24.515 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:12:24 smithi167 conmon[87022]: Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi167.nhhxhd 2023-11-30T23:12:24.515 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:12:24 smithi167 conmon[87022]: /bin/podman: stderr Error: error inspecting object: no such container ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi167.nhhxhd 2023-11-30T23:12:24.515 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:12:24 smithi167 conmon[87022]: Deploy daemon haproxy.nfs.foo.smithi167.nhhxhd ... 2023-11-30T23:12:24.515 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:12:24 smithi167 conmon[87022]: Non-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi167 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2023-11-30T23:12:24.515 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:12:24 smithi167 conmon[87022]: stat: stderr Trying to pull docker.io/library/haproxy:2.3... 2023-11-30T23:12:24.515 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:12:24 smithi167 conmon[87022]: stat: stderr time="2023-11-30T23:10:30Z" level=warning msg="failed, retrying in 1s ... (1/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit" 2023-11-30T23:12:24.515 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:12:24 smithi167 conmon[87022]: stat: stderr time="2023-11-30T23:11:08Z" level=warning msg="failed, retrying in 1s ... (2/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit" 2023-11-30T23:12:24.515 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:12:24 smithi167 conmon[87022]: stat: stderr time="2023-11-30T23:11:45Z" level=warning msg="failed, retrying in 1s ... (3/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit" 2023-11-30T23:12:24.516 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:12:24 smithi167 conmon[87022]: stat: stderr Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get "https://docker-mirror.front.sepia.ceph.com:5000/v2/": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit 2023-11-30T23:12:24.516 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:12:24 smithi167 conmon[87022]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint 2023-11-30T23:12:24.516 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:12:24 smithi167 conmon[87022]: stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi167 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2023-11-30T23:12:24.516 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:12:24 smithi167 conmon[87022]: cephadm 2023-11-30T23:12:23.149293+0000 mgr.smithi038.ldalxq (mgr.14182) 837 : cephadm [INF] Removing key for client.ingress.nfs.foo.smithi167.nhhxhd 2023-11-30T23:12:24.516 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:12:24 smithi167 conmon[87022]: audit 2023-11-30T23:12:23.149572+0000 mon.smithi038 (mon.0) 714 : audit [INF] from='mgr.14182 172.21.15.38:0/2999689707' entity='mgr.smithi038.ldalxq' cmd=[{"prefix": "auth rm", "entity": "client.ingress.nfs.foo.smithi167.nhhxhd"}]: dispatch 2023-11-30T23:12:24.516 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:12:24 smithi167 conmon[87022]: cephadm 2023-11-30T23:12:23.150206+0000 mgr.smithi038.ldalxq (mgr.14182) 838 : cephadm [ERR] Failed while placing haproxy.nfs.foo.smithi167.nhhxhd on smithi167: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi167-nhhxhd 2023-11-30T23:12:24.516 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:12:24 smithi167 conmon[87022]: /bin/podman: stderr Error: error inspecting object: no such container ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi167-nhhxhd 2023-11-30T23:12:24.516 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:12:24 smithi167 conmon[87022]: Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi167.nhhxhd 2023-11-30T23:12:24.516 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:12:24 smithi167 conmon[87022]: /bin/podman: stderr Error: error inspecting object: no such container ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi167.nhhxhd 2023-11-30T23:12:24.516 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:12:24 smithi167 conmon[87022]: Deploy daemon haproxy.nfs.foo.smithi167.nhhxhd ... 2023-11-30T23:12:24.517 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:12:24 smithi167 conmon[87022]: Non-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi167 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2023-11-30T23:12:24.517 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:12:24 smithi167 conmon[87022]: stat: stderr Trying to pull docker.io/library/haproxy:2.3... 2023-11-30T23:12:24.518 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:12:24 smithi167 conmon[87022]: stat: stderr time="2023-11-30T23:10:30Z" level=warning msg="failed, retrying in 1s ... (1/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit" 2023-11-30T23:12:24.518 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:12:24 smithi167 conmon[87022]: stat: stderr time="2023-11-30T23:11:08Z" level=warning msg="failed, retrying in 1s ... (2/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit" 2023-11-30T23:12:24.518 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:12:24 smithi167 conmon[87022]: stat: stderr time="2023-11-30T23:11:45Z" level=warning msg="failed, retrying in 1s ... (3/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit" 2023-11-30T23:12:24.518 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:12:24 smithi167 conmon[87022]: stat: stderr Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get "https://docker-mirror.front.sepia.ceph.com:5000/v2/": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit 2023-11-30T23:12:24.518 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:12:24 smithi167 conmon[87022]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi167 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2023-11-30T23:12:24.518 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:12:24 smithi167 conmon[87022]: cephadm 2023-11 2023-11-30T23:12:24.518 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:12:24 smithi167 conmon[87022]: -30T23:12:23.151625+0000 mgr.smithi038.ldalxq (mgr.14182) 839 : cephadm [INF] Deploying daemon haproxy.nfs.foo.smithi038.njeday on smithi038 2023-11-30T23:12:24.518 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:12:24 smithi167 conmon[87022]: audit 2023-11-30T23:12:23.653106+0000 mgr.smithi038.ldalxq (mgr.14182) 840 : audit [DBG] from='client.15596 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-11-30T23:12:24.524 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:12:24 smithi038 conmon[81956]: cluster 2023-11-30T23:12:22.979580+0000 2023-11-30T23:12:24.524 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:12:24 smithi038 conmon[81956]: mgr.smithi038.ldalxq (mgr.14182) 835 : cluster [DBG] pgmap v548: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2023-11-30T23:12:24.524 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:12:24 smithi038 conmon[81956]: cephadm 2023-11-30T23:12:23.149105+0000 mgr.smithi038.ldalxq (mgr.14182) 836 : cephadm [ERR] cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi167-nhhxhd 2023-11-30T23:12:24.524 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:12:24 smithi038 conmon[81956]: /bin/podman: stderr Error: error inspecting object: no such container ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi167-nhhxhd 2023-11-30T23:12:24.525 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:12:24 smithi038 conmon[81956]: Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi167.nhhxhd 2023-11-30T23:12:24.525 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:12:24 smithi038 conmon[81956]: /bin/podman: stderr Error: error inspecting object: no such container ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi167.nhhxhd 2023-11-30T23:12:24.525 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:12:24 smithi038 conmon[81956]: Deploy daemon haproxy.nfs.foo.smithi167.nhhxhd ... 2023-11-30T23:12:24.525 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:12:24 smithi038 conmon[81956]: Non-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi167 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2023-11-30T23:12:24.525 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:12:24 smithi038 conmon[81956]: stat: stderr Trying to pull docker.io/library/haproxy:2.3... 2023-11-30T23:12:24.525 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:12:24 smithi038 conmon[81956]: stat: stderr time="2023-11-30T23:10:30Z" level=warning msg="failed, retrying in 1s ... (1/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit" 2023-11-30T23:12:24.525 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:12:24 smithi038 conmon[81956]: stat: stderr time="2023-11-30T23:11:08Z" level=warning msg="failed, retrying in 1s ... (2/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit" 2023-11-30T23:12:24.525 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:12:24 smithi038 conmon[81956]: stat: stderr time="2023-11-30T23:11:45Z" level=warning msg="failed, retrying in 1s ... (3/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit" 2023-11-30T23:12:24.525 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:12:24 smithi038 conmon[81956]: stat: stderr Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get "https://docker-mirror.front.sepia.ceph.com:5000/v2/": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit 2023-11-30T23:12:24.525 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:12:24 smithi038 conmon[81956]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi167 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2023-11-30T23:12:24.525 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:12:24 smithi038 conmon[81956]: Traceback (most recent call last): 2023-11-30T23:12:24.526 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:12:24 smithi038 conmon[81956]: File "/usr/share/ceph/mgr/cephadm/serve.py", line 1538, in _remote_connection 2023-11-30T23:12:24.526 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:12:24 smithi038 conmon[81956]: yield (conn, connr) 2023-11-30T23:12:24.526 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:12:24 smithi038 conmon[81956]: File "/usr/share/ceph/mgr/cephadm/serve.py", line 1426, in _run_cephadm 2023-11-30T23:12:24.526 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:12:24 smithi038 conmon[81956]: code, '\n'.join(err))) 2023-11-30T23:12:24.526 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:12:24 smithi038 conmon[81956]: orchestrator._interface.OrchestratorError: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi167-nhhxhd 2023-11-30T23:12:24.526 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:12:24 smithi038 conmon[81956]: /bin/podman: stderr Error: error inspecting object: no such container ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi167-nhhxhd 2023-11-30T23:12:24.526 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:12:24 smithi038 conmon[81956]: Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi167.nhhxhd 2023-11-30T23:12:24.526 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:12:24 smithi038 conmon[81956]: /bin/podman: stderr Error: error inspecting object: no such container ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi167.nhhxhd 2023-11-30T23:12:24.526 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:12:24 smithi038 conmon[81956]: Deploy daemon haproxy.nfs.foo.smithi167.nhhxhd ... 2023-11-30T23:12:24.526 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:12:24 smithi038 conmon[81956]: Non-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi167 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2023-11-30T23:12:24.527 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:12:24 smithi038 conmon[81956]: stat: stderr Trying to pull docker.io/library/haproxy:2.3... 2023-11-30T23:12:24.527 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:12:24 smithi038 conmon[81956]: stat: stderr time="2023-11-30T23:10:30Z" level=warning msg="failed, retrying in 1s ... (1/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit" 2023-11-30T23:12:24.527 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:12:24 smithi038 conmon[81956]: stat: stderr time="2023-11-30T23:11:08Z" level=warning msg="failed, retrying in 1s ... (2/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit" 2023-11-30T23:12:24.527 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:12:24 smithi038 conmon[81956]: stat: stderr time="2023-11-30T23:11:45Z" level=warning msg="failed, retrying in 1s ... (3/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit" 2023-11-30T23:12:24.528 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:12:24 smithi038 conmon[81956]: stat: stderr Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get "https://docker-mirror.front.sepia.ceph.com:5000/v2/": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit 2023-11-30T23:12:24.528 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:12:24 smithi038 conmon[81956]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host 2023-11-30T23:12:24.528 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:12:24 smithi038 conmon[81956]: --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi167 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2023-11-30T23:12:24.528 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:12:24 smithi038 conmon[81956]: cephadm 2023-11-30T23:12:23.149293+0000 mgr.smithi038.ldalxq (mgr.14182) 837 : cephadm [INF] Removing key for client.ingress.nfs.foo.smithi167.nhhxhd 2023-11-30T23:12:24.528 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:12:24 smithi038 conmon[81956]: audit 2023-11-30T23:12:23.149572+0000 mon.smithi038 (mon.0) 714 : audit [INF] from='mgr.14182 172.21.15.38:0/2999689707' entity='mgr.smithi038.ldalxq' cmd=[{"prefix": "auth rm", "entity": "client.ingress.nfs.foo.smithi167.nhhxhd"}]: dispatch 2023-11-30T23:12:24.528 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:12:24 smithi038 conmon[81956]: cephadm 2023-11-30T23:12:23.150206+0000 mgr.smithi038.ldalxq (mgr.14182) 838 : cephadm [ERR] Failed while placing haproxy.nfs.foo.smithi167.nhhxhd on smithi167: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi167-nhhxhd 2023-11-30T23:12:24.529 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:12:24 smithi038 conmon[81956]: /bin/podman: stderr Error: error inspecting object: no such container ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi167-nhhxhd 2023-11-30T23:12:24.529 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:12:24 smithi038 conmon[81956]: Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi167.nhhxhd 2023-11-30T23:12:24.529 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:12:24 smithi038 conmon[81956]: /bin/podman: stderr Error: error inspecting object: no such container ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi167.nhhxhd 2023-11-30T23:12:24.529 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:12:24 smithi038 conmon[81956]: Deploy daemon haproxy.nfs.foo.smithi167.nhhxhd ... 2023-11-30T23:12:24.529 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:12:24 smithi038 conmon[81956]: Non-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi167 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2023-11-30T23:12:24.529 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:12:24 smithi038 conmon[81956]: stat: stderr Trying to pull docker.io/library/haproxy:2.3... 2023-11-30T23:12:24.531 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:12:24 smithi038 conmon[81956]: stat: stderr time="2023-11-30T23:10:30Z" level=warning msg="failed, retrying in 1s ... (1/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit" 2023-11-30T23:12:24.531 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:12:24 smithi038 conmon[81956]: stat: stderr time="2023-11-30T23:11:08Z" level=warning msg="failed, retrying in 1s ... (2/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit" 2023-11-30T23:12:24.531 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:12:24 smithi038 conmon[81956]: stat: stderr time="2023-11-30T23:11:45Z" level=warning msg="failed, retrying in 1s ... (3/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit" 2023-11-30T23:12:24.531 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:12:24 smithi038 conmon[81956]: stat: stderr Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get "https://docker-mirror.front.sepia.ceph.com:5000/v2/": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit 2023-11-30T23:12:24.531 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:12:24 smithi038 conmon[81956]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi167 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2023-11-30T23:12:24.532 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:12:24 smithi038 conmon[81956]: cephadm 2023-11-30T23:12:23.151625+0000 mgr.smithi038.ldalxq (mgr.14182) 839 : cephadm [INF] Deploying daemon haproxy.nfs.foo.smithi038.njeday on smithi038 2023-11-30T23:12:24.532 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:12:24 smithi038 conmon[81956]: audit 2023-11-30T23:12:23.653106+0000 mgr.smithi038.ldalxq (mgr.14182) 840 : audit [DBG] from='client.15596 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-11-30T23:12:25.094 DEBUG:teuthology.orchestra.run.smithi038:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:0dc074ce0b0b3b4f393f56dd32ef36884ebf45a9 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 3faf8b00-8fd3-11ee-95a2-87774f69a715 -- ceph orch ls -f json 2023-11-30T23:12:26.511 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:12:26 smithi167 conmon[87022]: cluster 2023-11-30T23:12:24.980463+0000 mgr.smithi038.ldalxq (mgr.14182) 841 : cluster [DBG] pgmap v549: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2023-11-30T23:12:26.512 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:12:26 smithi167 conmon[87022]: 2023-11-30T23:12:26.523 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:12:26 smithi038 conmon[81956]: cluster 2023-11-30T23:12:24.980463+0000 mgr.smithi038.ldalxq (mgr.14182 2023-11-30T23:12:26.524 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:12:26 smithi038 conmon[81956]: ) 841 : cluster [DBG] pgmap v549: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2023-11-30T23:12:26.927 INFO:teuthology.orchestra.run.smithi038.stdout: 2023-11-30T23:12:26.927 INFO:teuthology.orchestra.run.smithi038.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2023-11-30T22:54:47.122758Z", "last_refresh": "2023-11-30T23:09:52.311067Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2023-11-30T22:54:42.674972Z", "last_refresh": "2023-11-30T23:09:48.452759Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2023-11-30T22:54:45.114633Z", "last_refresh": "2023-11-30T23:09:52.311222Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2023-11-30T23:07:14.865206Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi167.igxkgw on smithi167: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi167-igxkgw\n/bin/podman: stderr Error: error inspecting object: no such container ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi167-igxkgw\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi167.igxkgw\n/bin/podman: stderr Error: error inspecting object: no such container ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi167.igxkgw\nDeploy daemon haproxy.nfs.foo.smithi167.igxkgw ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi167 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2023-11-30T23:05:21Z\" level=warning msg=\"failed, retrying in 1s ... (1/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-11-30T23:05:59Z\" level=warning msg=\"failed, retrying in 1s ... (2/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-11-30T23:06:37Z\" level=warning msg=\"failed, retrying in 1s ... (3/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi167 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-11-30T23:09:45.061230Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi038.ubrlmp on smithi038: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi038-ubrlmp\n/bin/podman: stderr Error: error inspecting object: no such container ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi038-ubrlmp\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi038.ubrlmp\n/bin/podman: stderr Error: error inspecting object: no such container ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi038.ubrlmp\nDeploy daemon haproxy.nfs.foo.smithi038.ubrlmp ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi038 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2023-11-30T23:07:52Z\" level=warning msg=\"failed, retrying in 1s ... (1/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-11-30T23:08:30Z\" level=warning msg=\"failed, retrying in 1s ... (2/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-11-30T23:09:07Z\" level=warning msg=\"failed, retrying in 1s ... (3/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi038 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-11-30T23:09:45.062547Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi038.vjkntq on smithi038: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2023-11-30T23:09:45.063688Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi167.ndkqyv on smithi167: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2023-11-30T23:12:23.150100Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi167.nhhxhd on smithi167: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi167-nhhxhd\n/bin/podman: stderr Error: error inspecting object: no such container ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi167-nhhxhd\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi167.nhhxhd\n/bin/podman: stderr Error: error inspecting object: no such container ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi167.nhhxhd\nDeploy daemon haproxy.nfs.foo.smithi167.nhhxhd ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi167 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2023-11-30T23:10:30Z\" level=warning msg=\"failed, retrying in 1s ... (1/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-11-30T23:11:08Z\" level=warning msg=\"failed, retrying in 1s ... (2/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-11-30T23:11:45Z\" level=warning msg=\"failed, retrying in 1s ... (3/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi167 -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": 9049, "virtual_ip": "10.0.31.38/16"}, "status": {"created": "2023-11-30T22:58:56.312786Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.38/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2023-11-30T22:54:41.668043Z", "last_refresh": "2023-11-30T23:09:48.452908Z", "running": 2, "size": 2}}, {"events": ["2023-11-30T22:55:50.759225Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi038:172.21.15.38=smithi038", "smithi167:172.21.15.167=smithi167"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2023-11-30T22:55:50.756456Z", "last_refresh": "2023-11-30T23:09:48.452987Z", "running": 2, "size": 2}}, {"events": ["2023-11-30T22:58:56.311581Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2023-11-30T22:58:56.308071Z", "last_refresh": "2023-11-30T23:09:52.311757Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2023-11-30T22:54:46.136630Z", "last_refresh": "2023-11-30T23:09:48.453061Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2023-11-30T22:56:33.258058Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2023-11-30T22:56:33.253117Z", "last_refresh": "2023-11-30T23:09:48.453131Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2023-11-30T22:54:43.949497Z", "last_refresh": "2023-11-30T23:09:52.311357Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2023-11-30T22:58:52.105721Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2023-11-30T22:58:59.793467Z", "last_refresh": "2023-11-30T23:09:48.453411Z", "ports": [8800], "running": 2, "size": 2}}] 2023-11-30T23:12:27.458 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2023-11-30T23:12:28.262 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:12:27 smithi167 conmon[87022]: audit 2023-11-30T23:12:26.923407+0000 mgr.smithi038.ldalxq (mgr.14182) 842 : audit [DBG] 2023-11-30T23:12:28.262 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:12:27 smithi167 conmon[87022]: from='client.15600 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-11-30T23:12:28.262 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:12:27 smithi167 conmon[87022]: cluster 2023-11-30T23:12:26.980982+0000 mgr.smithi038.ldalxq (mgr.14182) 843 : cluster [DBG] pgmap v550: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2023-11-30T23:12:28.274 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:12:27 smithi038 conmon[81956]: audit 2023-11-30T23:12:26.923407+0000 mgr.smithi038.ldalxq ( 2023-11-30T23:12:28.274 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:12:27 smithi038 conmon[81956]: mgr.14182) 842 : audit [DBG] from='client.15600 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-11-30T23:12:28.274 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:12:27 smithi038 conmon[81956]: cluster 2023-11-30T23:12:26.980982+0000 mgr.smithi038.ldalxq (mgr.14182) 843 : cluster [DBG] pgmap v550: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2023-11-30T23:12:28.459 DEBUG:teuthology.orchestra.run.smithi038:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:0dc074ce0b0b3b4f393f56dd32ef36884ebf45a9 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 3faf8b00-8fd3-11ee-95a2-87774f69a715 -- ceph orch ls -f json 2023-11-30T23:12:30.266 INFO:teuthology.orchestra.run.smithi038.stdout: 2023-11-30T23:12:30.267 INFO:teuthology.orchestra.run.smithi038.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2023-11-30T22:54:47.122758Z", "last_refresh": "2023-11-30T23:09:52.311067Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2023-11-30T22:54:42.674972Z", "last_refresh": "2023-11-30T23:09:48.452759Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2023-11-30T22:54:45.114633Z", "last_refresh": "2023-11-30T23:09:52.311222Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2023-11-30T23:07:14.865206Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi167.igxkgw on smithi167: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi167-igxkgw\n/bin/podman: stderr Error: error inspecting object: no such container ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi167-igxkgw\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi167.igxkgw\n/bin/podman: stderr Error: error inspecting object: no such container ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi167.igxkgw\nDeploy daemon haproxy.nfs.foo.smithi167.igxkgw ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi167 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2023-11-30T23:05:21Z\" level=warning msg=\"failed, retrying in 1s ... (1/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-11-30T23:05:59Z\" level=warning msg=\"failed, retrying in 1s ... (2/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-11-30T23:06:37Z\" level=warning msg=\"failed, retrying in 1s ... (3/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi167 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-11-30T23:09:45.061230Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi038.ubrlmp on smithi038: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi038-ubrlmp\n/bin/podman: stderr Error: error inspecting object: no such container ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi038-ubrlmp\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi038.ubrlmp\n/bin/podman: stderr Error: error inspecting object: no such container ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi038.ubrlmp\nDeploy daemon haproxy.nfs.foo.smithi038.ubrlmp ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi038 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2023-11-30T23:07:52Z\" level=warning msg=\"failed, retrying in 1s ... (1/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-11-30T23:08:30Z\" level=warning msg=\"failed, retrying in 1s ... (2/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-11-30T23:09:07Z\" level=warning msg=\"failed, retrying in 1s ... (3/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi038 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-11-30T23:09:45.062547Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi038.vjkntq on smithi038: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2023-11-30T23:09:45.063688Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi167.ndkqyv on smithi167: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2023-11-30T23:12:23.150100Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi167.nhhxhd on smithi167: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi167-nhhxhd\n/bin/podman: stderr Error: error inspecting object: no such container ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi167-nhhxhd\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi167.nhhxhd\n/bin/podman: stderr Error: error inspecting object: no such container ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi167.nhhxhd\nDeploy daemon haproxy.nfs.foo.smithi167.nhhxhd ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi167 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2023-11-30T23:10:30Z\" level=warning msg=\"failed, retrying in 1s ... (1/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-11-30T23:11:08Z\" level=warning msg=\"failed, retrying in 1s ... (2/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-11-30T23:11:45Z\" level=warning msg=\"failed, retrying in 1s ... (3/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi167 -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": 9049, "virtual_ip": "10.0.31.38/16"}, "status": {"created": "2023-11-30T22:58:56.312786Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.38/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2023-11-30T22:54:41.668043Z", "last_refresh": "2023-11-30T23:09:48.452908Z", "running": 2, "size": 2}}, {"events": ["2023-11-30T22:55:50.759225Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi038:172.21.15.38=smithi038", "smithi167:172.21.15.167=smithi167"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2023-11-30T22:55:50.756456Z", "last_refresh": "2023-11-30T23:09:48.452987Z", "running": 2, "size": 2}}, {"events": ["2023-11-30T22:58:56.311581Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2023-11-30T22:58:56.308071Z", "last_refresh": "2023-11-30T23:09:52.311757Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2023-11-30T22:54:46.136630Z", "last_refresh": "2023-11-30T23:09:48.453061Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2023-11-30T22:56:33.258058Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2023-11-30T22:56:33.253117Z", "last_refresh": "2023-11-30T23:09:48.453131Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2023-11-30T22:54:43.949497Z", "last_refresh": "2023-11-30T23:09:52.311357Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2023-11-30T22:58:52.105721Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2023-11-30T22:58:59.793467Z", "last_refresh": "2023-11-30T23:09:48.453411Z", "ports": [8800], "running": 2, "size": 2}}] 2023-11-30T23:12:30.273 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:12:30 smithi038 conmon[81956]: cluster 2023-11-30T23:12:28.981663+0000 mgr.smithi038.ldalxq (mgr.14182) 844 : cluster [DBG] pgmap v551: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2023-11-30T23:12:30.511 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:12:30 smithi167 conmon[87022]: cluster 2023-11-30T23:12:28.981663+0000 mgr.smithi038.ldalxq (mgr.14182) 844 : cluster [DBG] pgmap v551: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2023-11-30T23:12:30.512 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:12:30 smithi167 conmon[87022]: 2023-11-30T23:12:30.702 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2023-11-30T23:12:31.512 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:12:31 smithi167 conmon[87022]: audit 2023-11-30T23:12:30.262844+0000 mgr.smithi038.ldalxq (mgr.14182) 845 : audit 2023-11-30T23:12:31.512 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:12:31 smithi167 conmon[87022]: [DBG] from='client.15604 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-11-30T23:12:31.524 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:12:31 smithi038 conmon[81956]: audit 2023-11-30T23:12:30.262844+0000 mgr.smithi038.ldalxq (mgr. 2023-11-30T23:12:31.524 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:12:31 smithi038 conmon[81956]: 14182) 845 : audit [DBG] from='client.15604 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-11-30T23:12:31.703 DEBUG:teuthology.orchestra.run.smithi038:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:0dc074ce0b0b3b4f393f56dd32ef36884ebf45a9 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 3faf8b00-8fd3-11ee-95a2-87774f69a715 -- ceph orch ls -f json 2023-11-30T23:12:32.300 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:12:32 smithi038 conmon[81956]: cluster 2023-11-30T23:12:30.982556+0000 mgr.smithi038.ldalxq (mgr.14182) 846 : cluster [DBG] pgmap v552: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2023-11-30T23:12:32.512 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:12:32 smithi167 conmon[87022]: cluster 2023-11-30T23:12:30.982556+0000 mgr.smithi038.ldalxq (mgr.14182) 846 : cluster 2023-11-30T23:12:32.512 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:12:32 smithi167 conmon[87022]: [DBG] pgmap v552: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2023-11-30T23:12:33.440 INFO:teuthology.orchestra.run.smithi038.stdout: 2023-11-30T23:12:33.440 INFO:teuthology.orchestra.run.smithi038.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2023-11-30T22:54:47.122758Z", "last_refresh": "2023-11-30T23:09:52.311067Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2023-11-30T22:54:42.674972Z", "last_refresh": "2023-11-30T23:09:48.452759Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2023-11-30T22:54:45.114633Z", "last_refresh": "2023-11-30T23:09:52.311222Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2023-11-30T23:07:14.865206Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi167.igxkgw on smithi167: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi167-igxkgw\n/bin/podman: stderr Error: error inspecting object: no such container ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi167-igxkgw\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi167.igxkgw\n/bin/podman: stderr Error: error inspecting object: no such container ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi167.igxkgw\nDeploy daemon haproxy.nfs.foo.smithi167.igxkgw ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi167 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2023-11-30T23:05:21Z\" level=warning msg=\"failed, retrying in 1s ... (1/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-11-30T23:05:59Z\" level=warning msg=\"failed, retrying in 1s ... (2/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-11-30T23:06:37Z\" level=warning msg=\"failed, retrying in 1s ... (3/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi167 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-11-30T23:09:45.061230Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi038.ubrlmp on smithi038: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi038-ubrlmp\n/bin/podman: stderr Error: error inspecting object: no such container ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi038-ubrlmp\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi038.ubrlmp\n/bin/podman: stderr Error: error inspecting object: no such container ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi038.ubrlmp\nDeploy daemon haproxy.nfs.foo.smithi038.ubrlmp ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi038 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2023-11-30T23:07:52Z\" level=warning msg=\"failed, retrying in 1s ... (1/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-11-30T23:08:30Z\" level=warning msg=\"failed, retrying in 1s ... (2/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-11-30T23:09:07Z\" level=warning msg=\"failed, retrying in 1s ... (3/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi038 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-11-30T23:09:45.062547Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi038.vjkntq on smithi038: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2023-11-30T23:09:45.063688Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi167.ndkqyv on smithi167: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2023-11-30T23:12:23.150100Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi167.nhhxhd on smithi167: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi167-nhhxhd\n/bin/podman: stderr Error: error inspecting object: no such container ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi167-nhhxhd\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi167.nhhxhd\n/bin/podman: stderr Error: error inspecting object: no such container ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi167.nhhxhd\nDeploy daemon haproxy.nfs.foo.smithi167.nhhxhd ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi167 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2023-11-30T23:10:30Z\" level=warning msg=\"failed, retrying in 1s ... (1/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-11-30T23:11:08Z\" level=warning msg=\"failed, retrying in 1s ... (2/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-11-30T23:11:45Z\" level=warning msg=\"failed, retrying in 1s ... (3/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi167 -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": 9049, "virtual_ip": "10.0.31.38/16"}, "status": {"created": "2023-11-30T22:58:56.312786Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.38/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2023-11-30T22:54:41.668043Z", "last_refresh": "2023-11-30T23:09:48.452908Z", "running": 2, "size": 2}}, {"events": ["2023-11-30T22:55:50.759225Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi038:172.21.15.38=smithi038", "smithi167:172.21.15.167=smithi167"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2023-11-30T22:55:50.756456Z", "last_refresh": "2023-11-30T23:09:48.452987Z", "running": 2, "size": 2}}, {"events": ["2023-11-30T22:58:56.311581Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2023-11-30T22:58:56.308071Z", "last_refresh": "2023-11-30T23:09:52.311757Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2023-11-30T22:54:46.136630Z", "last_refresh": "2023-11-30T23:09:48.453061Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2023-11-30T22:56:33.258058Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2023-11-30T22:56:33.253117Z", "last_refresh": "2023-11-30T23:09:48.453131Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2023-11-30T22:54:43.949497Z", "last_refresh": "2023-11-30T23:09:52.311357Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2023-11-30T22:58:52.105721Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2023-11-30T22:58:59.793467Z", "last_refresh": "2023-11-30T23:09:48.453411Z", "ports": [8800], "running": 2, "size": 2}}] 2023-11-30T23:12:33.854 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2023-11-30T23:12:34.275 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:12:34 smithi038 conmon[81956]: cluster 2023-11-30T23:12:32.983280+0000 mgr.smithi038.ldalxq ( 2023-11-30T23:12:34.276 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:12:34 smithi038 conmon[81956]: mgr.14182) 847 : cluster [DBG] pgmap v553: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2023-11-30T23:12:34.276 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:12:34 smithi038 conmon[81956]: audit 2023-11-30T23:12:33.435741+0000 mgr.smithi038.ldalxq (mgr.14182) 848 : audit [DBG] from='client.15608 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-11-30T23:12:34.512 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:12:34 smithi167 conmon[87022]: cluster 2023-11-30T23:12:32.983280+0000 mgr.smithi038.ldalxq (mgr.14182) 847 : cluster [DBG] 2023-11-30T23:12:34.512 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:12:34 smithi167 conmon[87022]: pgmap v553: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2023-11-30T23:12:34.512 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:12:34 smithi167 conmon[87022]: audit 2023-11-30T23:12:33.435741+0000 mgr.smithi038.ldalxq (mgr.14182) 848 : audit [DBG] from='client.15608 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-11-30T23:12:34.855 DEBUG:teuthology.orchestra.run.smithi038:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:0dc074ce0b0b3b4f393f56dd32ef36884ebf45a9 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 3faf8b00-8fd3-11ee-95a2-87774f69a715 -- ceph orch ls -f json 2023-11-30T23:12:36.512 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:12:36 smithi167 conmon[87022]: cluster 2023-11-30T23:12:34.984239+0000 mgr.smithi038.ldalxq (mgr.14182) 849 : cluster [DBG] 2023-11-30T23:12:36.512 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:12:36 smithi167 conmon[87022]: pgmap v554: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2023-11-30T23:12:36.524 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:12:36 smithi038 conmon[81956]: cluster 2023-11-30T23:12:34.984239+0000 mgr.smithi038.ldalxq (mgr.14182) 849 : cluster [DBG] pgmap v554: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2023-11-30T23:12:36.589 INFO:teuthology.orchestra.run.smithi038.stdout: 2023-11-30T23:12:36.589 INFO:teuthology.orchestra.run.smithi038.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2023-11-30T22:54:47.122758Z", "last_refresh": "2023-11-30T23:09:52.311067Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2023-11-30T22:54:42.674972Z", "last_refresh": "2023-11-30T23:09:48.452759Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2023-11-30T22:54:45.114633Z", "last_refresh": "2023-11-30T23:09:52.311222Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2023-11-30T23:07:14.865206Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi167.igxkgw on smithi167: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi167-igxkgw\n/bin/podman: stderr Error: error inspecting object: no such container ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi167-igxkgw\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi167.igxkgw\n/bin/podman: stderr Error: error inspecting object: no such container ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi167.igxkgw\nDeploy daemon haproxy.nfs.foo.smithi167.igxkgw ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi167 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2023-11-30T23:05:21Z\" level=warning msg=\"failed, retrying in 1s ... (1/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-11-30T23:05:59Z\" level=warning msg=\"failed, retrying in 1s ... (2/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-11-30T23:06:37Z\" level=warning msg=\"failed, retrying in 1s ... (3/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi167 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-11-30T23:09:45.061230Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi038.ubrlmp on smithi038: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi038-ubrlmp\n/bin/podman: stderr Error: error inspecting object: no such container ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi038-ubrlmp\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi038.ubrlmp\n/bin/podman: stderr Error: error inspecting object: no such container ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi038.ubrlmp\nDeploy daemon haproxy.nfs.foo.smithi038.ubrlmp ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi038 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2023-11-30T23:07:52Z\" level=warning msg=\"failed, retrying in 1s ... (1/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-11-30T23:08:30Z\" level=warning msg=\"failed, retrying in 1s ... (2/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-11-30T23:09:07Z\" level=warning msg=\"failed, retrying in 1s ... (3/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi038 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-11-30T23:09:45.062547Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi038.vjkntq on smithi038: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2023-11-30T23:09:45.063688Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi167.ndkqyv on smithi167: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2023-11-30T23:12:23.150100Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi167.nhhxhd on smithi167: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi167-nhhxhd\n/bin/podman: stderr Error: error inspecting object: no such container ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi167-nhhxhd\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi167.nhhxhd\n/bin/podman: stderr Error: error inspecting object: no such container ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi167.nhhxhd\nDeploy daemon haproxy.nfs.foo.smithi167.nhhxhd ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi167 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2023-11-30T23:10:30Z\" level=warning msg=\"failed, retrying in 1s ... (1/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-11-30T23:11:08Z\" level=warning msg=\"failed, retrying in 1s ... (2/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-11-30T23:11:45Z\" level=warning msg=\"failed, retrying in 1s ... (3/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi167 -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": 9049, "virtual_ip": "10.0.31.38/16"}, "status": {"created": "2023-11-30T22:58:56.312786Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.38/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2023-11-30T22:54:41.668043Z", "last_refresh": "2023-11-30T23:09:48.452908Z", "running": 2, "size": 2}}, {"events": ["2023-11-30T22:55:50.759225Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi038:172.21.15.38=smithi038", "smithi167:172.21.15.167=smithi167"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2023-11-30T22:55:50.756456Z", "last_refresh": "2023-11-30T23:09:48.452987Z", "running": 2, "size": 2}}, {"events": ["2023-11-30T22:58:56.311581Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2023-11-30T22:58:56.308071Z", "last_refresh": "2023-11-30T23:09:52.311757Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2023-11-30T22:54:46.136630Z", "last_refresh": "2023-11-30T23:09:48.453061Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2023-11-30T22:56:33.258058Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2023-11-30T22:56:33.253117Z", "last_refresh": "2023-11-30T23:09:48.453131Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2023-11-30T22:54:43.949497Z", "last_refresh": "2023-11-30T23:09:52.311357Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2023-11-30T22:58:52.105721Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2023-11-30T22:58:59.793467Z", "last_refresh": "2023-11-30T23:09:48.453411Z", "ports": [8800], "running": 2, "size": 2}}] 2023-11-30T23:12:37.006 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2023-11-30T23:12:37.274 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:12:37 smithi038 conmon[81956]: audit 2023-11-30T23:12:36.584755+0000 mgr.smithi038.ldalxq (mgr.14182) 850 : audit 2023-11-30T23:12:37.274 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:12:37 smithi038 conmon[81956]: [DBG] from='client.15612 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-11-30T23:12:37.512 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:12:37 smithi167 conmon[87022]: audit 2023-11-30T23:12:36.584755+0000 mgr.smithi038.ldalxq (mgr.14182) 850 2023-11-30T23:12:37.512 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:12:37 smithi167 conmon[87022]: : audit [DBG] from='client.15612 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-11-30T23:12:38.007 DEBUG:teuthology.orchestra.run.smithi038:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:0dc074ce0b0b3b4f393f56dd32ef36884ebf45a9 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 3faf8b00-8fd3-11ee-95a2-87774f69a715 -- ceph orch ls -f json 2023-11-30T23:12:38.512 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:12:38 smithi167 conmon[87022]: cluster 2023-11-30T23:12:36.984848+0000 mgr.smithi038.ldalxq (mgr.14182) 851 : cluster 2023-11-30T23:12:38.512 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:12:38 smithi167 conmon[87022]: [DBG] pgmap v555: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2023-11-30T23:12:38.523 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:12:38 smithi038 conmon[81956]: cluster 2023-11-30T23:12:36.984848+0000 mgr.smithi038.ldalxq (mgr.14182) 2023-11-30T23:12:38.524 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:12:38 smithi038 conmon[81956]: 851 : cluster [DBG] pgmap v555: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2023-11-30T23:12:39.720 INFO:teuthology.orchestra.run.smithi038.stdout: 2023-11-30T23:12:39.720 INFO:teuthology.orchestra.run.smithi038.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2023-11-30T22:54:47.122758Z", "last_refresh": "2023-11-30T23:09:52.311067Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2023-11-30T22:54:42.674972Z", "last_refresh": "2023-11-30T23:09:48.452759Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2023-11-30T22:54:45.114633Z", "last_refresh": "2023-11-30T23:09:52.311222Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2023-11-30T23:07:14.865206Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi167.igxkgw on smithi167: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi167-igxkgw\n/bin/podman: stderr Error: error inspecting object: no such container ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi167-igxkgw\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi167.igxkgw\n/bin/podman: stderr Error: error inspecting object: no such container ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi167.igxkgw\nDeploy daemon haproxy.nfs.foo.smithi167.igxkgw ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi167 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2023-11-30T23:05:21Z\" level=warning msg=\"failed, retrying in 1s ... (1/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-11-30T23:05:59Z\" level=warning msg=\"failed, retrying in 1s ... (2/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-11-30T23:06:37Z\" level=warning msg=\"failed, retrying in 1s ... (3/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi167 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-11-30T23:09:45.061230Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi038.ubrlmp on smithi038: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi038-ubrlmp\n/bin/podman: stderr Error: error inspecting object: no such container ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi038-ubrlmp\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi038.ubrlmp\n/bin/podman: stderr Error: error inspecting object: no such container ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi038.ubrlmp\nDeploy daemon haproxy.nfs.foo.smithi038.ubrlmp ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi038 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2023-11-30T23:07:52Z\" level=warning msg=\"failed, retrying in 1s ... (1/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-11-30T23:08:30Z\" level=warning msg=\"failed, retrying in 1s ... (2/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-11-30T23:09:07Z\" level=warning msg=\"failed, retrying in 1s ... (3/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi038 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-11-30T23:09:45.062547Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi038.vjkntq on smithi038: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2023-11-30T23:09:45.063688Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi167.ndkqyv on smithi167: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2023-11-30T23:12:23.150100Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi167.nhhxhd on smithi167: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi167-nhhxhd\n/bin/podman: stderr Error: error inspecting object: no such container ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi167-nhhxhd\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi167.nhhxhd\n/bin/podman: stderr Error: error inspecting object: no such container ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi167.nhhxhd\nDeploy daemon haproxy.nfs.foo.smithi167.nhhxhd ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi167 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2023-11-30T23:10:30Z\" level=warning msg=\"failed, retrying in 1s ... (1/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-11-30T23:11:08Z\" level=warning msg=\"failed, retrying in 1s ... (2/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-11-30T23:11:45Z\" level=warning msg=\"failed, retrying in 1s ... (3/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi167 -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": 9049, "virtual_ip": "10.0.31.38/16"}, "status": {"created": "2023-11-30T22:58:56.312786Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.38/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2023-11-30T22:54:41.668043Z", "last_refresh": "2023-11-30T23:09:48.452908Z", "running": 2, "size": 2}}, {"events": ["2023-11-30T22:55:50.759225Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi038:172.21.15.38=smithi038", "smithi167:172.21.15.167=smithi167"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2023-11-30T22:55:50.756456Z", "last_refresh": "2023-11-30T23:09:48.452987Z", "running": 2, "size": 2}}, {"events": ["2023-11-30T22:58:56.311581Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2023-11-30T22:58:56.308071Z", "last_refresh": "2023-11-30T23:09:52.311757Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2023-11-30T22:54:46.136630Z", "last_refresh": "2023-11-30T23:09:48.453061Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2023-11-30T22:56:33.258058Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2023-11-30T22:56:33.253117Z", "last_refresh": "2023-11-30T23:09:48.453131Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2023-11-30T22:54:43.949497Z", "last_refresh": "2023-11-30T23:09:52.311357Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2023-11-30T22:58:52.105721Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2023-11-30T22:58:59.793467Z", "last_refresh": "2023-11-30T23:09:48.453411Z", "ports": [8800], "running": 2, "size": 2}}] 2023-11-30T23:12:40.171 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2023-11-30T23:12:40.512 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:12:40 smithi167 conmon[87022]: cluster 2023-11-30T23:12:38.985732+0000 mgr.smithi038.ldalxq (mgr.14182) 852 : cluster [DBG] 2023-11-30T23:12:40.512 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:12:40 smithi167 conmon[87022]: pgmap v556: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2023-11-30T23:12:40.512 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:12:40 smithi167 conmon[87022]: audit 2023-11-30T23:12:39.715669+0000 mgr.smithi038.ldalxq (mgr.14182) 853 : audit [DBG] from='client.15616 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-11-30T23:12:40.523 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:12:40 smithi038 conmon[81956]: cluster 2023-11-30T23:12:38.985732+0000 2023-11-30T23:12:40.524 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:12:40 smithi038 conmon[81956]: mgr.smithi038.ldalxq (mgr.14182) 852 : cluster [DBG] pgmap v556: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2023-11-30T23:12:40.524 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:12:40 smithi038 conmon[81956]: audit 2023-11-30T23:12:39.715669+0000 mgr.smithi038.ldalxq (mgr.14182) 853 : audit [DBG] from='client.15616 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-11-30T23:12:41.172 DEBUG:teuthology.orchestra.run.smithi038:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:0dc074ce0b0b3b4f393f56dd32ef36884ebf45a9 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 3faf8b00-8fd3-11ee-95a2-87774f69a715 -- ceph orch ls -f json 2023-11-30T23:12:43.704 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:12:42 smithi038 conmon[81956]: cluster 2023-11-30T23:12:40.986791+0000 mgr.smithi038.ldalxq (mgr.14182) 854 : cluster [DBG] pgmap v557: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2023-11-30T23:12:43.704 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:12:42 smithi167 conmon[87022]: cluster 2023-11-30T23:12:40.986791+0000 mgr.smithi038.ldalxq (mgr.14182) 854 : cluster [DBG] 2023-11-30T23:12:43.704 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:12:42 smithi167 conmon[87022]: pgmap v557: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2023-11-30T23:12:44.405 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:12:44 smithi038 conmon[81956]: cluster 2023-11-30T23:12:42.987477+0000 mgr.smithi038.ldalxq (mgr. 2023-11-30T23:12:44.405 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:12:44 smithi038 conmon[81956]: 14182) 855 : cluster [DBG] pgmap v558: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2023-11-30T23:12:44.511 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:12:44 smithi167 conmon[87022]: cluster 2023-11-30T23:12:42.987477+0000 mgr.smithi038.ldalxq (mgr.14182) 855 : 2023-11-30T23:12:44.512 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:12:44 smithi167 conmon[87022]: cluster [DBG] pgmap v558: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2023-11-30T23:12:45.286 INFO:teuthology.orchestra.run.smithi038.stdout: 2023-11-30T23:12:45.286 INFO:teuthology.orchestra.run.smithi038.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2023-11-30T22:54:47.122758Z", "last_refresh": "2023-11-30T23:09:52.311067Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2023-11-30T22:54:42.674972Z", "last_refresh": "2023-11-30T23:09:48.452759Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2023-11-30T22:54:45.114633Z", "last_refresh": "2023-11-30T23:09:52.311222Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2023-11-30T23:07:14.865206Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi167.igxkgw on smithi167: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi167-igxkgw\n/bin/podman: stderr Error: error inspecting object: no such container ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi167-igxkgw\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi167.igxkgw\n/bin/podman: stderr Error: error inspecting object: no such container ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi167.igxkgw\nDeploy daemon haproxy.nfs.foo.smithi167.igxkgw ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi167 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2023-11-30T23:05:21Z\" level=warning msg=\"failed, retrying in 1s ... (1/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-11-30T23:05:59Z\" level=warning msg=\"failed, retrying in 1s ... (2/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-11-30T23:06:37Z\" level=warning msg=\"failed, retrying in 1s ... (3/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi167 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-11-30T23:09:45.061230Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi038.ubrlmp on smithi038: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi038-ubrlmp\n/bin/podman: stderr Error: error inspecting object: no such container ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi038-ubrlmp\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi038.ubrlmp\n/bin/podman: stderr Error: error inspecting object: no such container ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi038.ubrlmp\nDeploy daemon haproxy.nfs.foo.smithi038.ubrlmp ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi038 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2023-11-30T23:07:52Z\" level=warning msg=\"failed, retrying in 1s ... (1/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-11-30T23:08:30Z\" level=warning msg=\"failed, retrying in 1s ... (2/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-11-30T23:09:07Z\" level=warning msg=\"failed, retrying in 1s ... (3/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi038 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-11-30T23:09:45.062547Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi038.vjkntq on smithi038: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2023-11-30T23:09:45.063688Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi167.ndkqyv on smithi167: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2023-11-30T23:12:23.150100Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi167.nhhxhd on smithi167: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi167-nhhxhd\n/bin/podman: stderr Error: error inspecting object: no such container ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi167-nhhxhd\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi167.nhhxhd\n/bin/podman: stderr Error: error inspecting object: no such container ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi167.nhhxhd\nDeploy daemon haproxy.nfs.foo.smithi167.nhhxhd ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi167 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2023-11-30T23:10:30Z\" level=warning msg=\"failed, retrying in 1s ... (1/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-11-30T23:11:08Z\" level=warning msg=\"failed, retrying in 1s ... (2/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-11-30T23:11:45Z\" level=warning msg=\"failed, retrying in 1s ... (3/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi167 -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": 9049, "virtual_ip": "10.0.31.38/16"}, "status": {"created": "2023-11-30T22:58:56.312786Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.38/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2023-11-30T22:54:41.668043Z", "last_refresh": "2023-11-30T23:09:48.452908Z", "running": 2, "size": 2}}, {"events": ["2023-11-30T22:55:50.759225Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi038:172.21.15.38=smithi038", "smithi167:172.21.15.167=smithi167"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2023-11-30T22:55:50.756456Z", "last_refresh": "2023-11-30T23:09:48.452987Z", "running": 2, "size": 2}}, {"events": ["2023-11-30T22:58:56.311581Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2023-11-30T22:58:56.308071Z", "last_refresh": "2023-11-30T23:09:52.311757Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2023-11-30T22:54:46.136630Z", "last_refresh": "2023-11-30T23:09:48.453061Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2023-11-30T22:56:33.258058Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2023-11-30T22:56:33.253117Z", "last_refresh": "2023-11-30T23:09:48.453131Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2023-11-30T22:54:43.949497Z", "last_refresh": "2023-11-30T23:09:52.311357Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2023-11-30T22:58:52.105721Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2023-11-30T22:58:59.793467Z", "last_refresh": "2023-11-30T23:09:48.453411Z", "ports": [8800], "running": 2, "size": 2}}] 2023-11-30T23:12:45.753 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2023-11-30T23:12:46.512 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:12:46 smithi167 conmon[87022]: cluster 2023-11-30T23:12:44.988426+0000 mgr.smithi038.ldalxq (mgr.14182) 856 : cluster [DBG] 2023-11-30T23:12:46.512 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:12:46 smithi167 conmon[87022]: pgmap v559: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2023-11-30T23:12:46.512 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:12:46 smithi167 conmon[87022]: audit 2023-11-30T23:12:45.281468+0000 mgr.smithi038.ldalxq (mgr.14182) 857 : audit [DBG] from='client.15620 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-11-30T23:12:46.524 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:12:46 smithi038 conmon[81956]: cluster 2023-11-30T23:12:44.988426+0000 mgr.smithi038.ldalxq (mgr.14182) 856 : cluster [DBG] pgmap v559: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2023-11-30T23:12:46.524 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:12:46 smithi038 conmon[81956]: audit 2023-11-30T23:12:45.281468+0000 mgr.smithi038.ldalxq (mgr.14182) 857 : audit [DBG] from='client.15620 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-11-30T23:12:46.754 DEBUG:teuthology.orchestra.run.smithi038:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:0dc074ce0b0b3b4f393f56dd32ef36884ebf45a9 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 3faf8b00-8fd3-11ee-95a2-87774f69a715 -- ceph orch ls -f json 2023-11-30T23:12:47.897 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:12:47 smithi038 conmon[81956]: cluster 2023-11-30T23:12:46.988968+0000 mgr.smithi038.ldalxq (mgr.14182) 858 : cluster [DBG] pgmap v560: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2023-11-30T23:12:48.262 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:12:47 smithi167 conmon[87022]: cluster 2023-11-30T23:12:46.988968+0000 mgr.smithi038.ldalxq (mgr.14182) 858 : cluster [DBG] 2023-11-30T23:12:48.262 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:12:47 smithi167 conmon[87022]: pgmap v560: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2023-11-30T23:12:48.514 INFO:teuthology.orchestra.run.smithi038.stdout: 2023-11-30T23:12:48.514 INFO:teuthology.orchestra.run.smithi038.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2023-11-30T22:54:47.122758Z", "last_refresh": "2023-11-30T23:09:52.311067Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2023-11-30T22:54:42.674972Z", "last_refresh": "2023-11-30T23:09:48.452759Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2023-11-30T22:54:45.114633Z", "last_refresh": "2023-11-30T23:09:52.311222Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2023-11-30T23:07:14.865206Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi167.igxkgw on smithi167: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi167-igxkgw\n/bin/podman: stderr Error: error inspecting object: no such container ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi167-igxkgw\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi167.igxkgw\n/bin/podman: stderr Error: error inspecting object: no such container ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi167.igxkgw\nDeploy daemon haproxy.nfs.foo.smithi167.igxkgw ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi167 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2023-11-30T23:05:21Z\" level=warning msg=\"failed, retrying in 1s ... (1/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-11-30T23:05:59Z\" level=warning msg=\"failed, retrying in 1s ... (2/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-11-30T23:06:37Z\" level=warning msg=\"failed, retrying in 1s ... (3/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi167 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-11-30T23:09:45.061230Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi038.ubrlmp on smithi038: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi038-ubrlmp\n/bin/podman: stderr Error: error inspecting object: no such container ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi038-ubrlmp\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi038.ubrlmp\n/bin/podman: stderr Error: error inspecting object: no such container ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi038.ubrlmp\nDeploy daemon haproxy.nfs.foo.smithi038.ubrlmp ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi038 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2023-11-30T23:07:52Z\" level=warning msg=\"failed, retrying in 1s ... (1/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-11-30T23:08:30Z\" level=warning msg=\"failed, retrying in 1s ... (2/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-11-30T23:09:07Z\" level=warning msg=\"failed, retrying in 1s ... (3/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi038 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-11-30T23:09:45.062547Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi038.vjkntq on smithi038: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2023-11-30T23:09:45.063688Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi167.ndkqyv on smithi167: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2023-11-30T23:12:23.150100Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi167.nhhxhd on smithi167: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi167-nhhxhd\n/bin/podman: stderr Error: error inspecting object: no such container ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi167-nhhxhd\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi167.nhhxhd\n/bin/podman: stderr Error: error inspecting object: no such container ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi167.nhhxhd\nDeploy daemon haproxy.nfs.foo.smithi167.nhhxhd ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi167 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2023-11-30T23:10:30Z\" level=warning msg=\"failed, retrying in 1s ... (1/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-11-30T23:11:08Z\" level=warning msg=\"failed, retrying in 1s ... (2/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-11-30T23:11:45Z\" level=warning msg=\"failed, retrying in 1s ... (3/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi167 -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": 9049, "virtual_ip": "10.0.31.38/16"}, "status": {"created": "2023-11-30T22:58:56.312786Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.38/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2023-11-30T22:54:41.668043Z", "last_refresh": "2023-11-30T23:09:48.452908Z", "running": 2, "size": 2}}, {"events": ["2023-11-30T22:55:50.759225Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi038:172.21.15.38=smithi038", "smithi167:172.21.15.167=smithi167"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2023-11-30T22:55:50.756456Z", "last_refresh": "2023-11-30T23:09:48.452987Z", "running": 2, "size": 2}}, {"events": ["2023-11-30T22:58:56.311581Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2023-11-30T22:58:56.308071Z", "last_refresh": "2023-11-30T23:09:52.311757Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2023-11-30T22:54:46.136630Z", "last_refresh": "2023-11-30T23:09:48.453061Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2023-11-30T22:56:33.258058Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2023-11-30T22:56:33.253117Z", "last_refresh": "2023-11-30T23:09:48.453131Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2023-11-30T22:54:43.949497Z", "last_refresh": "2023-11-30T23:09:52.311357Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2023-11-30T22:58:52.105721Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2023-11-30T22:58:59.793467Z", "last_refresh": "2023-11-30T23:09:48.453411Z", "ports": [8800], "running": 2, "size": 2}}] 2023-11-30T23:12:49.024 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2023-11-30T23:12:49.261 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:12:48 smithi167 conmon[87022]: audit 2023-11-30T23:12:48.510139+0000 mgr.smithi038.ldalxq (mgr.14182) 859 : audit [DBG] from='client.24933 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-11-30T23:12:49.262 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:12:48 smithi167 conmon[87022]: 2023-11-30T23:12:49.274 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:12:48 smithi038 conmon[81956]: audit 2023-11-30T23:12:48. 2023-11-30T23:12:49.274 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:12:48 smithi038 conmon[81956]: 510139+0000 mgr.smithi038.ldalxq (mgr.14182) 859 : audit [DBG] from='client.24933 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-11-30T23:12:50.025 DEBUG:teuthology.orchestra.run.smithi038:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:0dc074ce0b0b3b4f393f56dd32ef36884ebf45a9 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 3faf8b00-8fd3-11ee-95a2-87774f69a715 -- ceph orch ls -f json 2023-11-30T23:12:50.262 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:12:49 smithi167 conmon[87022]: cluster 2023-11-30T23:12:48.989617+0000 mgr.smithi038.ldalxq (mgr.14182) 860 : cluster 2023-11-30T23:12:50.262 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:12:49 smithi167 conmon[87022]: [DBG] pgmap v561: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2023-11-30T23:12:50.273 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:12:49 smithi038 conmon[81956]: cluster 2023-11-30T23:12:48.989617+0000 mgr.smithi038.ldalxq (mgr.14182) 860 : cluster [DBG] pgmap v561: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2023-11-30T23:12:51.815 INFO:teuthology.orchestra.run.smithi038.stdout: 2023-11-30T23:12:51.815 INFO:teuthology.orchestra.run.smithi038.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2023-11-30T22:54:47.122758Z", "last_refresh": "2023-11-30T23:09:52.311067Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2023-11-30T22:54:42.674972Z", "last_refresh": "2023-11-30T23:09:48.452759Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2023-11-30T22:54:45.114633Z", "last_refresh": "2023-11-30T23:09:52.311222Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2023-11-30T23:07:14.865206Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi167.igxkgw on smithi167: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi167-igxkgw\n/bin/podman: stderr Error: error inspecting object: no such container ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi167-igxkgw\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi167.igxkgw\n/bin/podman: stderr Error: error inspecting object: no such container ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi167.igxkgw\nDeploy daemon haproxy.nfs.foo.smithi167.igxkgw ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi167 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2023-11-30T23:05:21Z\" level=warning msg=\"failed, retrying in 1s ... (1/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-11-30T23:05:59Z\" level=warning msg=\"failed, retrying in 1s ... (2/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-11-30T23:06:37Z\" level=warning msg=\"failed, retrying in 1s ... (3/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi167 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-11-30T23:09:45.061230Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi038.ubrlmp on smithi038: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi038-ubrlmp\n/bin/podman: stderr Error: error inspecting object: no such container ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi038-ubrlmp\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi038.ubrlmp\n/bin/podman: stderr Error: error inspecting object: no such container ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi038.ubrlmp\nDeploy daemon haproxy.nfs.foo.smithi038.ubrlmp ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi038 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2023-11-30T23:07:52Z\" level=warning msg=\"failed, retrying in 1s ... (1/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-11-30T23:08:30Z\" level=warning msg=\"failed, retrying in 1s ... (2/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-11-30T23:09:07Z\" level=warning msg=\"failed, retrying in 1s ... (3/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi038 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-11-30T23:09:45.062547Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi038.vjkntq on smithi038: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2023-11-30T23:09:45.063688Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi167.ndkqyv on smithi167: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2023-11-30T23:12:23.150100Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi167.nhhxhd on smithi167: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi167-nhhxhd\n/bin/podman: stderr Error: error inspecting object: no such container ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi167-nhhxhd\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi167.nhhxhd\n/bin/podman: stderr Error: error inspecting object: no such container ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi167.nhhxhd\nDeploy daemon haproxy.nfs.foo.smithi167.nhhxhd ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi167 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2023-11-30T23:10:30Z\" level=warning msg=\"failed, retrying in 1s ... (1/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-11-30T23:11:08Z\" level=warning msg=\"failed, retrying in 1s ... (2/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-11-30T23:11:45Z\" level=warning msg=\"failed, retrying in 1s ... (3/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi167 -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": 9049, "virtual_ip": "10.0.31.38/16"}, "status": {"created": "2023-11-30T22:58:56.312786Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.38/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2023-11-30T22:54:41.668043Z", "last_refresh": "2023-11-30T23:09:48.452908Z", "running": 2, "size": 2}}, {"events": ["2023-11-30T22:55:50.759225Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi038:172.21.15.38=smithi038", "smithi167:172.21.15.167=smithi167"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2023-11-30T22:55:50.756456Z", "last_refresh": "2023-11-30T23:09:48.452987Z", "running": 2, "size": 2}}, {"events": ["2023-11-30T22:58:56.311581Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2023-11-30T22:58:56.308071Z", "last_refresh": "2023-11-30T23:09:52.311757Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2023-11-30T22:54:46.136630Z", "last_refresh": "2023-11-30T23:09:48.453061Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2023-11-30T22:56:33.258058Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2023-11-30T22:56:33.253117Z", "last_refresh": "2023-11-30T23:09:48.453131Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2023-11-30T22:54:43.949497Z", "last_refresh": "2023-11-30T23:09:52.311357Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2023-11-30T22:58:52.105721Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2023-11-30T22:58:59.793467Z", "last_refresh": "2023-11-30T23:09:48.453411Z", "ports": [8800], "running": 2, "size": 2}}] 2023-11-30T23:12:52.228 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:12:52 smithi038 conmon[81956]: cluster 2023-11-30T23:12:50.990530+0000 2023-11-30T23:12:52.228 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:12:52 smithi038 conmon[81956]: mgr.smithi038.ldalxq (mgr.14182) 861 : cluster [DBG] pgmap v562: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2023-11-30T23:12:52.274 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2023-11-30T23:12:52.512 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:12:52 smithi167 conmon[87022]: cluster 2023-11-30T23:12:50.990530+0000 mgr.smithi038.ldalxq (mgr.14182) 861 : cluster [DBG] pgmap v562: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2023-11-30T23:12:52.512 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:12:52 smithi167 conmon[87022]: 2023-11-30T23:12:53.275 DEBUG:teuthology.orchestra.run.smithi038:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:0dc074ce0b0b3b4f393f56dd32ef36884ebf45a9 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 3faf8b00-8fd3-11ee-95a2-87774f69a715 -- ceph orch ls -f json 2023-11-30T23:12:53.306 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:12:53 smithi038 conmon[81956]: audit 2023-11-30T23:12:51.811131+0000 mgr.smithi038.ldalxq (mgr.14182) 862 : audit [DBG] from='client.15628 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-11-30T23:12:53.512 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:12:53 smithi167 conmon[87022]: audit 2023-11-30T23:12 2023-11-30T23:12:53.512 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:12:53 smithi167 conmon[87022]: :51.811131+0000 mgr.smithi038.ldalxq (mgr.14182) 862 : audit [DBG] from='client.15628 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-11-30T23:12:54.176 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:12:54 smithi038 conmon[81956]: cluster 2023-11-30T23:12:52.991402+0000 mgr.smithi038.ldalxq (mgr 2023-11-30T23:12:54.176 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:12:54 smithi038 conmon[81956]: .14182) 863 : cluster [DBG] pgmap v563: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2023-11-30T23:12:54.512 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:12:54 smithi167 conmon[87022]: cluster 2023-11-30T23:12:52.991402+0000 mgr.smithi038.ldalxq (mgr.14182) 863 : cluster [DBG] pgmap v563: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2023-11-30T23:12:54.987 INFO:teuthology.orchestra.run.smithi038.stdout: 2023-11-30T23:12:54.987 INFO:teuthology.orchestra.run.smithi038.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2023-11-30T22:54:47.122758Z", "last_refresh": "2023-11-30T23:09:52.311067Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2023-11-30T22:54:42.674972Z", "last_refresh": "2023-11-30T23:09:48.452759Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2023-11-30T22:54:45.114633Z", "last_refresh": "2023-11-30T23:09:52.311222Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2023-11-30T23:07:14.865206Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi167.igxkgw on smithi167: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi167-igxkgw\n/bin/podman: stderr Error: error inspecting object: no such container ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi167-igxkgw\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi167.igxkgw\n/bin/podman: stderr Error: error inspecting object: no such container ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi167.igxkgw\nDeploy daemon haproxy.nfs.foo.smithi167.igxkgw ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi167 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2023-11-30T23:05:21Z\" level=warning msg=\"failed, retrying in 1s ... (1/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-11-30T23:05:59Z\" level=warning msg=\"failed, retrying in 1s ... (2/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-11-30T23:06:37Z\" level=warning msg=\"failed, retrying in 1s ... (3/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi167 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-11-30T23:09:45.061230Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi038.ubrlmp on smithi038: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi038-ubrlmp\n/bin/podman: stderr Error: error inspecting object: no such container ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi038-ubrlmp\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi038.ubrlmp\n/bin/podman: stderr Error: error inspecting object: no such container ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi038.ubrlmp\nDeploy daemon haproxy.nfs.foo.smithi038.ubrlmp ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi038 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2023-11-30T23:07:52Z\" level=warning msg=\"failed, retrying in 1s ... (1/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-11-30T23:08:30Z\" level=warning msg=\"failed, retrying in 1s ... (2/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-11-30T23:09:07Z\" level=warning msg=\"failed, retrying in 1s ... (3/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi038 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-11-30T23:09:45.062547Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi038.vjkntq on smithi038: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2023-11-30T23:09:45.063688Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi167.ndkqyv on smithi167: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2023-11-30T23:12:23.150100Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi167.nhhxhd on smithi167: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi167-nhhxhd\n/bin/podman: stderr Error: error inspecting object: no such container ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi167-nhhxhd\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi167.nhhxhd\n/bin/podman: stderr Error: error inspecting object: no such container ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi167.nhhxhd\nDeploy daemon haproxy.nfs.foo.smithi167.nhhxhd ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi167 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2023-11-30T23:10:30Z\" level=warning msg=\"failed, retrying in 1s ... (1/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-11-30T23:11:08Z\" level=warning msg=\"failed, retrying in 1s ... (2/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-11-30T23:11:45Z\" level=warning msg=\"failed, retrying in 1s ... (3/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi167 -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": 9049, "virtual_ip": "10.0.31.38/16"}, "status": {"created": "2023-11-30T22:58:56.312786Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.38/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2023-11-30T22:54:41.668043Z", "last_refresh": "2023-11-30T23:09:48.452908Z", "running": 2, "size": 2}}, {"events": ["2023-11-30T22:55:50.759225Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi038:172.21.15.38=smithi038", "smithi167:172.21.15.167=smithi167"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2023-11-30T22:55:50.756456Z", "last_refresh": "2023-11-30T23:09:48.452987Z", "running": 2, "size": 2}}, {"events": ["2023-11-30T22:58:56.311581Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2023-11-30T22:58:56.308071Z", "last_refresh": "2023-11-30T23:09:52.311757Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2023-11-30T22:54:46.136630Z", "last_refresh": "2023-11-30T23:09:48.453061Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2023-11-30T22:56:33.258058Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2023-11-30T22:56:33.253117Z", "last_refresh": "2023-11-30T23:09:48.453131Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2023-11-30T22:54:43.949497Z", "last_refresh": "2023-11-30T23:09:52.311357Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2023-11-30T22:58:52.105721Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2023-11-30T22:58:59.793467Z", "last_refresh": "2023-11-30T23:09:48.453411Z", "ports": [8800], "running": 2, "size": 2}}] 2023-11-30T23:12:55.430 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2023-11-30T23:12:56.431 DEBUG:teuthology.orchestra.run.smithi038:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:0dc074ce0b0b3b4f393f56dd32ef36884ebf45a9 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 3faf8b00-8fd3-11ee-95a2-87774f69a715 -- ceph orch ls -f json 2023-11-30T23:12:56.463 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:12:56 smithi038 conmon[81956]: audit 2023-11-30T23:12:54.983354+0000 mgr.smithi038.ldalxq (mgr.14182) 864 : audit [DBG] from='client.15632 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-11-30T23:12:56.463 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:12:56 smithi038 conmon[81956]: cluster 2023-11-30T23:12:54.992053+0000 mgr.smithi038.ldalxq (mgr.14182) 865 : cluster [DBG] pgmap v564: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2023-11-30T23:12:56.512 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:12:56 smithi167 conmon[87022]: audit 2023-11-30T23:12:54.983354+0000 mgr.smithi038.ldalxq (mgr.14182) 864 : audit 2023-11-30T23:12:56.512 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:12:56 smithi167 conmon[87022]: [DBG] from='client.15632 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-11-30T23:12:56.512 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:12:56 smithi167 conmon[87022]: cluster 2023-11-30T23:12:54.992053+0000 mgr.smithi038.ldalxq (mgr.14182) 865 : cluster [DBG] pgmap v564: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2023-11-30T23:12:58.024 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:12:57 smithi038 conmon[81956]: cluster 2023-11-30T23:12:56.992543+0000 mgr.smithi038.ldalxq 2023-11-30T23:12:58.024 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:12:57 smithi038 conmon[81956]: (mgr.14182) 866 : cluster [DBG] pgmap v565: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2023-11-30T23:12:58.165 INFO:teuthology.orchestra.run.smithi038.stdout: 2023-11-30T23:12:58.165 INFO:teuthology.orchestra.run.smithi038.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2023-11-30T22:54:47.122758Z", "last_refresh": "2023-11-30T23:09:52.311067Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2023-11-30T22:54:42.674972Z", "last_refresh": "2023-11-30T23:09:48.452759Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2023-11-30T22:54:45.114633Z", "last_refresh": "2023-11-30T23:09:52.311222Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2023-11-30T23:07:14.865206Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi167.igxkgw on smithi167: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi167-igxkgw\n/bin/podman: stderr Error: error inspecting object: no such container ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi167-igxkgw\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi167.igxkgw\n/bin/podman: stderr Error: error inspecting object: no such container ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi167.igxkgw\nDeploy daemon haproxy.nfs.foo.smithi167.igxkgw ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi167 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2023-11-30T23:05:21Z\" level=warning msg=\"failed, retrying in 1s ... (1/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-11-30T23:05:59Z\" level=warning msg=\"failed, retrying in 1s ... (2/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-11-30T23:06:37Z\" level=warning msg=\"failed, retrying in 1s ... (3/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi167 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-11-30T23:09:45.061230Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi038.ubrlmp on smithi038: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi038-ubrlmp\n/bin/podman: stderr Error: error inspecting object: no such container ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi038-ubrlmp\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi038.ubrlmp\n/bin/podman: stderr Error: error inspecting object: no such container ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi038.ubrlmp\nDeploy daemon haproxy.nfs.foo.smithi038.ubrlmp ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi038 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2023-11-30T23:07:52Z\" level=warning msg=\"failed, retrying in 1s ... (1/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-11-30T23:08:30Z\" level=warning msg=\"failed, retrying in 1s ... (2/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-11-30T23:09:07Z\" level=warning msg=\"failed, retrying in 1s ... (3/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi038 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-11-30T23:09:45.062547Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi038.vjkntq on smithi038: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2023-11-30T23:09:45.063688Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi167.ndkqyv on smithi167: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2023-11-30T23:12:23.150100Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi167.nhhxhd on smithi167: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi167-nhhxhd\n/bin/podman: stderr Error: error inspecting object: no such container ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi167-nhhxhd\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi167.nhhxhd\n/bin/podman: stderr Error: error inspecting object: no such container ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi167.nhhxhd\nDeploy daemon haproxy.nfs.foo.smithi167.nhhxhd ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi167 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2023-11-30T23:10:30Z\" level=warning msg=\"failed, retrying in 1s ... (1/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-11-30T23:11:08Z\" level=warning msg=\"failed, retrying in 1s ... (2/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-11-30T23:11:45Z\" level=warning msg=\"failed, retrying in 1s ... (3/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi167 -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": 9049, "virtual_ip": "10.0.31.38/16"}, "status": {"created": "2023-11-30T22:58:56.312786Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.38/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2023-11-30T22:54:41.668043Z", "last_refresh": "2023-11-30T23:09:48.452908Z", "running": 2, "size": 2}}, {"events": ["2023-11-30T22:55:50.759225Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi038:172.21.15.38=smithi038", "smithi167:172.21.15.167=smithi167"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2023-11-30T22:55:50.756456Z", "last_refresh": "2023-11-30T23:09:48.452987Z", "running": 2, "size": 2}}, {"events": ["2023-11-30T22:58:56.311581Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2023-11-30T22:58:56.308071Z", "last_refresh": "2023-11-30T23:09:52.311757Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2023-11-30T22:54:46.136630Z", "last_refresh": "2023-11-30T23:09:48.453061Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2023-11-30T22:56:33.258058Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2023-11-30T22:56:33.253117Z", "last_refresh": "2023-11-30T23:09:48.453131Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2023-11-30T22:54:43.949497Z", "last_refresh": "2023-11-30T23:09:52.311357Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2023-11-30T22:58:52.105721Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2023-11-30T22:58:59.793467Z", "last_refresh": "2023-11-30T23:09:48.453411Z", "ports": [8800], "running": 2, "size": 2}}] 2023-11-30T23:12:58.262 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:12:57 smithi167 conmon[87022]: cluster 2023-11-30T23:12:56.992543+0000 mgr.smithi038.ldalxq (mgr.14182) 866 : cluster [DBG] pgmap v565: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2023-11-30T23:12:58.262 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:12:57 smithi167 conmon[87022]: 2023-11-30T23:12:58.578 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2023-11-30T23:12:59.262 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:12:58 smithi167 conmon[87022]: audit 2023-11-30T23:12:58.161233+0000 mgr.smithi038.ldalxq (mgr.14182) 867 : audit [DBG] 2023-11-30T23:12:59.262 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:12:58 smithi167 conmon[87022]: from='client.15636 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-11-30T23:12:59.273 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:12:58 smithi038 conmon[81956]: audit 2023-11-30T23:12:58.161233+0000 mgr.smithi038.ldalxq (mgr.14182) 867 : audit [DBG] from='client.15636 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-11-30T23:12:59.578 DEBUG:teuthology.orchestra.run.smithi038:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:0dc074ce0b0b3b4f393f56dd32ef36884ebf45a9 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 3faf8b00-8fd3-11ee-95a2-87774f69a715 -- ceph orch ls -f json 2023-11-30T23:13:00.159 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:12:59 smithi038 conmon[81956]: cluster 2023-11-30T23:12:58.993360+0000 mgr.smithi038.ldalxq (mgr.14182) 2023-11-30T23:13:00.159 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:12:59 smithi038 conmon[81956]: 868 : cluster [DBG] pgmap v566: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2023-11-30T23:13:00.262 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:12:59 smithi167 conmon[87022]: cluster 2023-11-30T23:12:58.993360+0000 mgr.smithi038.ldalxq (mgr.14182) 868 : cluster [DBG] pgmap v566: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2023-11-30T23:13:01.415 INFO:teuthology.orchestra.run.smithi038.stdout: 2023-11-30T23:13:01.415 INFO:teuthology.orchestra.run.smithi038.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2023-11-30T22:54:47.122758Z", "last_refresh": "2023-11-30T23:09:52.311067Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2023-11-30T22:54:42.674972Z", "last_refresh": "2023-11-30T23:09:48.452759Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2023-11-30T22:54:45.114633Z", "last_refresh": "2023-11-30T23:09:52.311222Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2023-11-30T23:07:14.865206Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi167.igxkgw on smithi167: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi167-igxkgw\n/bin/podman: stderr Error: error inspecting object: no such container ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi167-igxkgw\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi167.igxkgw\n/bin/podman: stderr Error: error inspecting object: no such container ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi167.igxkgw\nDeploy daemon haproxy.nfs.foo.smithi167.igxkgw ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi167 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2023-11-30T23:05:21Z\" level=warning msg=\"failed, retrying in 1s ... (1/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-11-30T23:05:59Z\" level=warning msg=\"failed, retrying in 1s ... (2/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-11-30T23:06:37Z\" level=warning msg=\"failed, retrying in 1s ... (3/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi167 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-11-30T23:09:45.061230Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi038.ubrlmp on smithi038: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi038-ubrlmp\n/bin/podman: stderr Error: error inspecting object: no such container ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi038-ubrlmp\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi038.ubrlmp\n/bin/podman: stderr Error: error inspecting object: no such container ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi038.ubrlmp\nDeploy daemon haproxy.nfs.foo.smithi038.ubrlmp ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi038 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2023-11-30T23:07:52Z\" level=warning msg=\"failed, retrying in 1s ... (1/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-11-30T23:08:30Z\" level=warning msg=\"failed, retrying in 1s ... (2/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-11-30T23:09:07Z\" level=warning msg=\"failed, retrying in 1s ... (3/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi038 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-11-30T23:09:45.062547Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi038.vjkntq on smithi038: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2023-11-30T23:09:45.063688Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi167.ndkqyv on smithi167: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2023-11-30T23:12:23.150100Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi167.nhhxhd on smithi167: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi167-nhhxhd\n/bin/podman: stderr Error: error inspecting object: no such container ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi167-nhhxhd\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi167.nhhxhd\n/bin/podman: stderr Error: error inspecting object: no such container ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi167.nhhxhd\nDeploy daemon haproxy.nfs.foo.smithi167.nhhxhd ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi167 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2023-11-30T23:10:30Z\" level=warning msg=\"failed, retrying in 1s ... (1/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-11-30T23:11:08Z\" level=warning msg=\"failed, retrying in 1s ... (2/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-11-30T23:11:45Z\" level=warning msg=\"failed, retrying in 1s ... (3/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi167 -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": 9049, "virtual_ip": "10.0.31.38/16"}, "status": {"created": "2023-11-30T22:58:56.312786Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.38/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2023-11-30T22:54:41.668043Z", "last_refresh": "2023-11-30T23:09:48.452908Z", "running": 2, "size": 2}}, {"events": ["2023-11-30T22:55:50.759225Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi038:172.21.15.38=smithi038", "smithi167:172.21.15.167=smithi167"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2023-11-30T22:55:50.756456Z", "last_refresh": "2023-11-30T23:09:48.452987Z", "running": 2, "size": 2}}, {"events": ["2023-11-30T22:58:56.311581Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2023-11-30T22:58:56.308071Z", "last_refresh": "2023-11-30T23:09:52.311757Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2023-11-30T22:54:46.136630Z", "last_refresh": "2023-11-30T23:09:48.453061Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2023-11-30T22:56:33.258058Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2023-11-30T22:56:33.253117Z", "last_refresh": "2023-11-30T23:09:48.453131Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2023-11-30T22:54:43.949497Z", "last_refresh": "2023-11-30T23:09:52.311357Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2023-11-30T22:58:52.105721Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2023-11-30T22:58:59.793467Z", "last_refresh": "2023-11-30T23:09:48.453411Z", "ports": [8800], "running": 2, "size": 2}}] 2023-11-30T23:13:01.839 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2023-11-30T23:13:02.274 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:13:02 smithi038 conmon[81956]: cluster 2023-11-30T23:13:00.994054+0000 mgr.smithi038.ldalxq (mgr.14182) 2023-11-30T23:13:02.274 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:13:02 smithi038 conmon[81956]: 869 : cluster [DBG] pgmap v567: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2023-11-30T23:13:02.274 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:13:02 smithi038 conmon[81956]: audit 2023-11-30T23:13:01.411202+0000 mgr.smithi038.ldalxq (mgr.14182) 870 : audit [DBG] from='client.15640 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-11-30T23:13:02.512 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:13:02 smithi167 conmon[87022]: cluster 2023-11-30T23:13:00.994054+0000 mgr.smithi038.ldalxq (mgr.14182) 869 : cluster [DBG] pgmap v567: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2023-11-30T23:13:02.512 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:13:02 smithi167 conmon[87022]: 2023-11-30T23:13:02.512 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:13:02 smithi167 conmon[87022]: audit 2023-11-30T23:13:01.411202+0000 mgr.smithi038.ldalxq (mgr.14182) 870 : audit [DBG] from='client.15640 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-11-30T23:13:02.840 DEBUG:teuthology.orchestra.run.smithi038:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:0dc074ce0b0b3b4f393f56dd32ef36884ebf45a9 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 3faf8b00-8fd3-11ee-95a2-87774f69a715 -- ceph orch ls -f json 2023-11-30T23:13:04.511 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:13:04 smithi167 conmon[87022]: cluster 2023-11-30T23:13:02.994615+0000 mgr.smithi038.ldalxq (mgr.14182) 871 : cluster [DBG] pgmap v568: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2023-11-30T23:13:04.512 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:13:04 smithi167 conmon[87022]: 2023-11-30T23:13:04.521 INFO:teuthology.orchestra.run.smithi038.stdout: 2023-11-30T23:13:04.521 INFO:teuthology.orchestra.run.smithi038.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2023-11-30T22:54:47.122758Z", "last_refresh": "2023-11-30T23:09:52.311067Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2023-11-30T22:54:42.674972Z", "last_refresh": "2023-11-30T23:09:48.452759Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2023-11-30T22:54:45.114633Z", "last_refresh": "2023-11-30T23:09:52.311222Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2023-11-30T23:07:14.865206Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi167.igxkgw on smithi167: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi167-igxkgw\n/bin/podman: stderr Error: error inspecting object: no such container ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi167-igxkgw\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi167.igxkgw\n/bin/podman: stderr Error: error inspecting object: no such container ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi167.igxkgw\nDeploy daemon haproxy.nfs.foo.smithi167.igxkgw ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi167 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2023-11-30T23:05:21Z\" level=warning msg=\"failed, retrying in 1s ... (1/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-11-30T23:05:59Z\" level=warning msg=\"failed, retrying in 1s ... (2/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-11-30T23:06:37Z\" level=warning msg=\"failed, retrying in 1s ... (3/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi167 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-11-30T23:09:45.061230Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi038.ubrlmp on smithi038: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi038-ubrlmp\n/bin/podman: stderr Error: error inspecting object: no such container ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi038-ubrlmp\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi038.ubrlmp\n/bin/podman: stderr Error: error inspecting object: no such container ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi038.ubrlmp\nDeploy daemon haproxy.nfs.foo.smithi038.ubrlmp ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi038 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2023-11-30T23:07:52Z\" level=warning msg=\"failed, retrying in 1s ... (1/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-11-30T23:08:30Z\" level=warning msg=\"failed, retrying in 1s ... (2/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-11-30T23:09:07Z\" level=warning msg=\"failed, retrying in 1s ... (3/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi038 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-11-30T23:09:45.062547Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi038.vjkntq on smithi038: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2023-11-30T23:09:45.063688Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi167.ndkqyv on smithi167: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2023-11-30T23:12:23.150100Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi167.nhhxhd on smithi167: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi167-nhhxhd\n/bin/podman: stderr Error: error inspecting object: no such container ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi167-nhhxhd\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi167.nhhxhd\n/bin/podman: stderr Error: error inspecting object: no such container ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi167.nhhxhd\nDeploy daemon haproxy.nfs.foo.smithi167.nhhxhd ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi167 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2023-11-30T23:10:30Z\" level=warning msg=\"failed, retrying in 1s ... (1/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-11-30T23:11:08Z\" level=warning msg=\"failed, retrying in 1s ... (2/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-11-30T23:11:45Z\" level=warning msg=\"failed, retrying in 1s ... (3/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi167 -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": 9049, "virtual_ip": "10.0.31.38/16"}, "status": {"created": "2023-11-30T22:58:56.312786Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.38/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2023-11-30T22:54:41.668043Z", "last_refresh": "2023-11-30T23:09:48.452908Z", "running": 2, "size": 2}}, {"events": ["2023-11-30T22:55:50.759225Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi038:172.21.15.38=smithi038", "smithi167:172.21.15.167=smithi167"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2023-11-30T22:55:50.756456Z", "last_refresh": "2023-11-30T23:09:48.452987Z", "running": 2, "size": 2}}, {"events": ["2023-11-30T22:58:56.311581Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2023-11-30T22:58:56.308071Z", "last_refresh": "2023-11-30T23:09:52.311757Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2023-11-30T22:54:46.136630Z", "last_refresh": "2023-11-30T23:09:48.453061Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2023-11-30T22:56:33.258058Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2023-11-30T22:56:33.253117Z", "last_refresh": "2023-11-30T23:09:48.453131Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2023-11-30T22:54:43.949497Z", "last_refresh": "2023-11-30T23:09:52.311357Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2023-11-30T22:58:52.105721Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2023-11-30T22:58:59.793467Z", "last_refresh": "2023-11-30T23:09:48.453411Z", "ports": [8800], "running": 2, "size": 2}}] 2023-11-30T23:13:04.523 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:13:04 smithi038 conmon[81956]: cluster 2023-11-30T23:13:02.994615+0000 mgr.smithi038.ldalxq (mgr.14182) 871 : cluster [DBG] pgmap v568: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2023-11-30T23:13:04.991 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2023-11-30T23:13:05.274 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:13:05 smithi038 conmon[81956]: audit 2023-11-30T23:13:04.516606+0000 mgr.smithi038.ldalxq (mgr. 2023-11-30T23:13:05.274 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:13:05 smithi038 conmon[81956]: 14182) 872 : audit [DBG] from='client.15644 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-11-30T23:13:05.512 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:13:05 smithi167 conmon[87022]: audit 2023-11-30T23:13:04.516606+0000 mgr.smithi038.ldalxq (mgr.14182) 872 : audit [DBG] from='client.15644 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-11-30T23:13:05.992 DEBUG:teuthology.orchestra.run.smithi038:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:0dc074ce0b0b3b4f393f56dd32ef36884ebf45a9 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 3faf8b00-8fd3-11ee-95a2-87774f69a715 -- ceph orch ls -f json 2023-11-30T23:13:06.274 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:13:06 smithi038 conmon[81956]: cluster 2023-11-30T23:13:04.995589+0000 mgr.smithi038.ldalxq (mgr.14182) 873 : cluster [DBG] 2023-11-30T23:13:06.274 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:13:06 smithi038 conmon[81956]: pgmap v569: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2023-11-30T23:13:06.512 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:13:06 smithi167 conmon[87022]: cluster 2023-11-30T23:13:04.995589+0000 mgr.smithi038.ldalxq (mgr.14182) 873 : cluster [DBG] pgmap v569: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2023-11-30T23:13:06.512 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:13:06 smithi167 conmon[87022]: 2023-11-30T23:13:07.795 INFO:teuthology.orchestra.run.smithi038.stdout: 2023-11-30T23:13:07.795 INFO:teuthology.orchestra.run.smithi038.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2023-11-30T22:54:47.122758Z", "last_refresh": "2023-11-30T23:09:52.311067Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2023-11-30T22:54:42.674972Z", "last_refresh": "2023-11-30T23:09:48.452759Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2023-11-30T22:54:45.114633Z", "last_refresh": "2023-11-30T23:09:52.311222Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2023-11-30T23:07:14.865206Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi167.igxkgw on smithi167: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi167-igxkgw\n/bin/podman: stderr Error: error inspecting object: no such container ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi167-igxkgw\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi167.igxkgw\n/bin/podman: stderr Error: error inspecting object: no such container ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi167.igxkgw\nDeploy daemon haproxy.nfs.foo.smithi167.igxkgw ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi167 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2023-11-30T23:05:21Z\" level=warning msg=\"failed, retrying in 1s ... (1/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-11-30T23:05:59Z\" level=warning msg=\"failed, retrying in 1s ... (2/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-11-30T23:06:37Z\" level=warning msg=\"failed, retrying in 1s ... (3/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi167 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-11-30T23:09:45.061230Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi038.ubrlmp on smithi038: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi038-ubrlmp\n/bin/podman: stderr Error: error inspecting object: no such container ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi038-ubrlmp\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi038.ubrlmp\n/bin/podman: stderr Error: error inspecting object: no such container ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi038.ubrlmp\nDeploy daemon haproxy.nfs.foo.smithi038.ubrlmp ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi038 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2023-11-30T23:07:52Z\" level=warning msg=\"failed, retrying in 1s ... (1/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-11-30T23:08:30Z\" level=warning msg=\"failed, retrying in 1s ... (2/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-11-30T23:09:07Z\" level=warning msg=\"failed, retrying in 1s ... (3/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi038 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-11-30T23:09:45.062547Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi038.vjkntq on smithi038: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2023-11-30T23:09:45.063688Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi167.ndkqyv on smithi167: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2023-11-30T23:12:23.150100Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi167.nhhxhd on smithi167: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi167-nhhxhd\n/bin/podman: stderr Error: error inspecting object: no such container ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi167-nhhxhd\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi167.nhhxhd\n/bin/podman: stderr Error: error inspecting object: no such container ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi167.nhhxhd\nDeploy daemon haproxy.nfs.foo.smithi167.nhhxhd ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi167 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2023-11-30T23:10:30Z\" level=warning msg=\"failed, retrying in 1s ... (1/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-11-30T23:11:08Z\" level=warning msg=\"failed, retrying in 1s ... (2/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-11-30T23:11:45Z\" level=warning msg=\"failed, retrying in 1s ... (3/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi167 -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": 9049, "virtual_ip": "10.0.31.38/16"}, "status": {"created": "2023-11-30T22:58:56.312786Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.38/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2023-11-30T22:54:41.668043Z", "last_refresh": "2023-11-30T23:09:48.452908Z", "running": 2, "size": 2}}, {"events": ["2023-11-30T22:55:50.759225Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi038:172.21.15.38=smithi038", "smithi167:172.21.15.167=smithi167"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2023-11-30T22:55:50.756456Z", "last_refresh": "2023-11-30T23:09:48.452987Z", "running": 2, "size": 2}}, {"events": ["2023-11-30T22:58:56.311581Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2023-11-30T22:58:56.308071Z", "last_refresh": "2023-11-30T23:09:52.311757Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2023-11-30T22:54:46.136630Z", "last_refresh": "2023-11-30T23:09:48.453061Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2023-11-30T22:56:33.258058Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2023-11-30T22:56:33.253117Z", "last_refresh": "2023-11-30T23:09:48.453131Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2023-11-30T22:54:43.949497Z", "last_refresh": "2023-11-30T23:09:52.311357Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2023-11-30T22:58:52.105721Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2023-11-30T22:58:59.793467Z", "last_refresh": "2023-11-30T23:09:48.453411Z", "ports": [8800], "running": 2, "size": 2}}] 2023-11-30T23:13:08.218 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:13:07 smithi038 conmon[81956]: cluster 2023-11-30T23:13:06.996356+0000 mgr.smithi038.ldalxq (mgr.14182) 874 : cluster [DBG] pgmap v570: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2023-11-30T23:13:08.251 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2023-11-30T23:13:08.262 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:13:07 smithi167 conmon[87022]: cluster 2023-11-30T23:13:06.996356+0000 mgr.smithi038.ldalxq (mgr.14182) 874 : cluster [DBG] pgmap v570: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2023-11-30T23:13:08.262 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:13:07 smithi167 conmon[87022]: 2023-11-30T23:13:09.251 DEBUG:teuthology.orchestra.run.smithi038:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:0dc074ce0b0b3b4f393f56dd32ef36884ebf45a9 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 3faf8b00-8fd3-11ee-95a2-87774f69a715 -- ceph orch ls -f json 2023-11-30T23:13:09.262 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:13:08 smithi167 conmon[87022]: audit 2023-11-30T23:13:07.790473+0000 mgr.smithi038.ldalxq (mgr.14182) 875 : audit 2023-11-30T23:13:09.262 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:13:08 smithi167 conmon[87022]: [DBG] from='client.15648 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-11-30T23:13:09.274 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:13:08 smithi038 conmon[81956]: audit 2023-11-30T23: 2023-11-30T23:13:09.274 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:13:08 smithi038 conmon[81956]: 13:07.790473+0000 mgr.smithi038.ldalxq (mgr.14182) 875 : audit [DBG] from='client.15648 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-11-30T23:13:10.149 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:13:09 smithi038 conmon[81956]: cluster 2023-11-30T23:13:08.997209+0000 2023-11-30T23:13:10.150 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:13:09 smithi038 conmon[81956]: mgr.smithi038.ldalxq (mgr.14182) 876 : cluster [DBG] pgmap v571: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2023-11-30T23:13:10.262 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:13:09 smithi167 conmon[87022]: cluster 2023-11-30T23:13:08.997209+0000 mgr.smithi038.ldalxq (mgr.14182) 876 : cluster [DBG] 2023-11-30T23:13:10.262 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:13:09 smithi167 conmon[87022]: pgmap v571: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2023-11-30T23:13:11.001 INFO:teuthology.orchestra.run.smithi038.stdout: 2023-11-30T23:13:11.001 INFO:teuthology.orchestra.run.smithi038.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2023-11-30T22:54:47.122758Z", "last_refresh": "2023-11-30T23:09:52.311067Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2023-11-30T22:54:42.674972Z", "last_refresh": "2023-11-30T23:09:48.452759Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2023-11-30T22:54:45.114633Z", "last_refresh": "2023-11-30T23:09:52.311222Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2023-11-30T23:07:14.865206Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi167.igxkgw on smithi167: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi167-igxkgw\n/bin/podman: stderr Error: error inspecting object: no such container ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi167-igxkgw\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi167.igxkgw\n/bin/podman: stderr Error: error inspecting object: no such container ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi167.igxkgw\nDeploy daemon haproxy.nfs.foo.smithi167.igxkgw ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi167 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2023-11-30T23:05:21Z\" level=warning msg=\"failed, retrying in 1s ... (1/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-11-30T23:05:59Z\" level=warning msg=\"failed, retrying in 1s ... (2/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-11-30T23:06:37Z\" level=warning msg=\"failed, retrying in 1s ... (3/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi167 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-11-30T23:09:45.061230Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi038.ubrlmp on smithi038: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi038-ubrlmp\n/bin/podman: stderr Error: error inspecting object: no such container ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi038-ubrlmp\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi038.ubrlmp\n/bin/podman: stderr Error: error inspecting object: no such container ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi038.ubrlmp\nDeploy daemon haproxy.nfs.foo.smithi038.ubrlmp ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi038 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2023-11-30T23:07:52Z\" level=warning msg=\"failed, retrying in 1s ... (1/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-11-30T23:08:30Z\" level=warning msg=\"failed, retrying in 1s ... (2/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-11-30T23:09:07Z\" level=warning msg=\"failed, retrying in 1s ... (3/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi038 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-11-30T23:09:45.062547Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi038.vjkntq on smithi038: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2023-11-30T23:09:45.063688Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi167.ndkqyv on smithi167: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2023-11-30T23:12:23.150100Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi167.nhhxhd on smithi167: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi167-nhhxhd\n/bin/podman: stderr Error: error inspecting object: no such container ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi167-nhhxhd\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi167.nhhxhd\n/bin/podman: stderr Error: error inspecting object: no such container ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi167.nhhxhd\nDeploy daemon haproxy.nfs.foo.smithi167.nhhxhd ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi167 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2023-11-30T23:10:30Z\" level=warning msg=\"failed, retrying in 1s ... (1/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-11-30T23:11:08Z\" level=warning msg=\"failed, retrying in 1s ... (2/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-11-30T23:11:45Z\" level=warning msg=\"failed, retrying in 1s ... (3/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi167 -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": 9049, "virtual_ip": "10.0.31.38/16"}, "status": {"created": "2023-11-30T22:58:56.312786Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.38/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2023-11-30T22:54:41.668043Z", "last_refresh": "2023-11-30T23:09:48.452908Z", "running": 2, "size": 2}}, {"events": ["2023-11-30T22:55:50.759225Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi038:172.21.15.38=smithi038", "smithi167:172.21.15.167=smithi167"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2023-11-30T22:55:50.756456Z", "last_refresh": "2023-11-30T23:09:48.452987Z", "running": 2, "size": 2}}, {"events": ["2023-11-30T22:58:56.311581Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2023-11-30T22:58:56.308071Z", "last_refresh": "2023-11-30T23:09:52.311757Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2023-11-30T22:54:46.136630Z", "last_refresh": "2023-11-30T23:09:48.453061Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2023-11-30T22:56:33.258058Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2023-11-30T22:56:33.253117Z", "last_refresh": "2023-11-30T23:09:48.453131Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2023-11-30T22:54:43.949497Z", "last_refresh": "2023-11-30T23:09:52.311357Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2023-11-30T22:58:52.105721Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2023-11-30T22:58:59.793467Z", "last_refresh": "2023-11-30T23:09:48.453411Z", "ports": [8800], "running": 2, "size": 2}}] 2023-11-30T23:13:11.512 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2023-11-30T23:13:12.512 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:13:12 smithi167 conmon[87022]: audit 2023-11-30T23:13:10.996885+0000 mgr.smithi038.ldalxq (mgr.14182) 877 : audit [DBG] from='client.15652 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-11-30T23:13:12.512 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:13:12 smithi167 conmon[87022]: cluster 2023-11-30T23:13:10.997864+0000 mgr.smithi038.ldalxq (mgr.14182) 878 : cluster [DBG] pgmap v572: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2023-11-30T23:13:12.514 DEBUG:teuthology.orchestra.run.smithi038:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:0dc074ce0b0b3b4f393f56dd32ef36884ebf45a9 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 3faf8b00-8fd3-11ee-95a2-87774f69a715 -- ceph orch ls -f json 2023-11-30T23:13:12.523 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:13:12 smithi038 conmon[81956]: audit 2023-11-30T23:13:10.996885+0000 mgr.smithi038.ldalxq (mgr 2023-11-30T23:13:12.524 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:13:12 smithi038 conmon[81956]: .14182) 877 : audit [DBG] from='client.15652 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-11-30T23:13:12.524 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:13:12 smithi038 conmon[81956]: cluster 2023-11-30T23:13:10.997864+0000 mgr.smithi038.ldalxq (mgr.14182) 878 : cluster [DBG] pgmap v572: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2023-11-30T23:13:14.194 INFO:teuthology.orchestra.run.smithi038.stdout: 2023-11-30T23:13:14.194 INFO:teuthology.orchestra.run.smithi038.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2023-11-30T22:54:47.122758Z", "last_refresh": "2023-11-30T23:09:52.311067Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2023-11-30T22:54:42.674972Z", "last_refresh": "2023-11-30T23:09:48.452759Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2023-11-30T22:54:45.114633Z", "last_refresh": "2023-11-30T23:09:52.311222Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2023-11-30T23:07:14.865206Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi167.igxkgw on smithi167: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi167-igxkgw\n/bin/podman: stderr Error: error inspecting object: no such container ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi167-igxkgw\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi167.igxkgw\n/bin/podman: stderr Error: error inspecting object: no such container ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi167.igxkgw\nDeploy daemon haproxy.nfs.foo.smithi167.igxkgw ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi167 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2023-11-30T23:05:21Z\" level=warning msg=\"failed, retrying in 1s ... (1/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-11-30T23:05:59Z\" level=warning msg=\"failed, retrying in 1s ... (2/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-11-30T23:06:37Z\" level=warning msg=\"failed, retrying in 1s ... (3/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi167 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-11-30T23:09:45.061230Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi038.ubrlmp on smithi038: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi038-ubrlmp\n/bin/podman: stderr Error: error inspecting object: no such container ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi038-ubrlmp\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi038.ubrlmp\n/bin/podman: stderr Error: error inspecting object: no such container ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi038.ubrlmp\nDeploy daemon haproxy.nfs.foo.smithi038.ubrlmp ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi038 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2023-11-30T23:07:52Z\" level=warning msg=\"failed, retrying in 1s ... (1/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-11-30T23:08:30Z\" level=warning msg=\"failed, retrying in 1s ... (2/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-11-30T23:09:07Z\" level=warning msg=\"failed, retrying in 1s ... (3/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi038 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-11-30T23:09:45.062547Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi038.vjkntq on smithi038: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2023-11-30T23:09:45.063688Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi167.ndkqyv on smithi167: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2023-11-30T23:12:23.150100Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi167.nhhxhd on smithi167: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi167-nhhxhd\n/bin/podman: stderr Error: error inspecting object: no such container ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi167-nhhxhd\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi167.nhhxhd\n/bin/podman: stderr Error: error inspecting object: no such container ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi167.nhhxhd\nDeploy daemon haproxy.nfs.foo.smithi167.nhhxhd ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi167 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2023-11-30T23:10:30Z\" level=warning msg=\"failed, retrying in 1s ... (1/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-11-30T23:11:08Z\" level=warning msg=\"failed, retrying in 1s ... (2/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-11-30T23:11:45Z\" level=warning msg=\"failed, retrying in 1s ... (3/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi167 -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": 9049, "virtual_ip": "10.0.31.38/16"}, "status": {"created": "2023-11-30T22:58:56.312786Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.38/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2023-11-30T22:54:41.668043Z", "last_refresh": "2023-11-30T23:09:48.452908Z", "running": 2, "size": 2}}, {"events": ["2023-11-30T22:55:50.759225Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi038:172.21.15.38=smithi038", "smithi167:172.21.15.167=smithi167"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2023-11-30T22:55:50.756456Z", "last_refresh": "2023-11-30T23:09:48.452987Z", "running": 2, "size": 2}}, {"events": ["2023-11-30T22:58:56.311581Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2023-11-30T22:58:56.308071Z", "last_refresh": "2023-11-30T23:09:52.311757Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2023-11-30T22:54:46.136630Z", "last_refresh": "2023-11-30T23:09:48.453061Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2023-11-30T22:56:33.258058Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2023-11-30T22:56:33.253117Z", "last_refresh": "2023-11-30T23:09:48.453131Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2023-11-30T22:54:43.949497Z", "last_refresh": "2023-11-30T23:09:52.311357Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2023-11-30T22:58:52.105721Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2023-11-30T22:58:59.793467Z", "last_refresh": "2023-11-30T23:09:48.453411Z", "ports": [8800], "running": 2, "size": 2}}] 2023-11-30T23:13:14.381 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:13:14 smithi038 conmon[81956]: cluster 2023-11-30T23:13:12.998466+0000 mgr.smithi038.ldalxq (mgr.14182) 879 : cluster [DBG] pgmap v573: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2023-11-30T23:13:14.512 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:13:14 smithi167 conmon[87022]: cluster 2023-11-30T23:13:12.998466+0000 mgr.smithi038.ldalxq (mgr.14182) 879 : cluster [DBG] 2023-11-30T23:13:14.512 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:13:14 smithi167 conmon[87022]: pgmap v573: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2023-11-30T23:13:14.663 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2023-11-30T23:13:15.512 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:13:15 smithi167 conmon[87022]: audit 2023-11-30T23:13:14.189923+0000 mgr.smithi038.ldalxq (mgr.14182) 880 : audit [DBG] from='client.15656 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-11-30T23:13:15.524 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:13:15 smithi038 conmon[81956]: audit 2023-11-30T23:13:14.189923+0000 mgr.smithi038.ldalxq (mgr.14182) 880 : audit [DBG] from='client.15656 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-11-30T23:13:15.664 DEBUG:teuthology.orchestra.run.smithi038:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:0dc074ce0b0b3b4f393f56dd32ef36884ebf45a9 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 3faf8b00-8fd3-11ee-95a2-87774f69a715 -- ceph orch ls -f json 2023-11-30T23:13:16.421 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:13:16 smithi038 conmon[81956]: cluster 2023-11-30T23:13:14.999198+0000 2023-11-30T23:13:16.421 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:13:16 smithi038 conmon[81956]: mgr.smithi038.ldalxq (mgr.14182) 881 : cluster [DBG] pgmap v574: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2023-11-30T23:13:16.512 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:13:16 smithi167 conmon[87022]: cluster 2023-11-30T23:13:14.999198+0000 mgr.smithi038.ldalxq (mgr.14182) 881 : cluster [DBG] pgmap v574: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2023-11-30T23:13:17.503 INFO:teuthology.orchestra.run.smithi038.stdout: 2023-11-30T23:13:17.504 INFO:teuthology.orchestra.run.smithi038.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2023-11-30T22:54:47.122758Z", "last_refresh": "2023-11-30T23:09:52.311067Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2023-11-30T22:54:42.674972Z", "last_refresh": "2023-11-30T23:09:48.452759Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2023-11-30T22:54:45.114633Z", "last_refresh": "2023-11-30T23:09:52.311222Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2023-11-30T23:07:14.865206Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi167.igxkgw on smithi167: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi167-igxkgw\n/bin/podman: stderr Error: error inspecting object: no such container ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi167-igxkgw\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi167.igxkgw\n/bin/podman: stderr Error: error inspecting object: no such container ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi167.igxkgw\nDeploy daemon haproxy.nfs.foo.smithi167.igxkgw ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi167 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2023-11-30T23:05:21Z\" level=warning msg=\"failed, retrying in 1s ... (1/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-11-30T23:05:59Z\" level=warning msg=\"failed, retrying in 1s ... (2/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-11-30T23:06:37Z\" level=warning msg=\"failed, retrying in 1s ... (3/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi167 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-11-30T23:09:45.061230Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi038.ubrlmp on smithi038: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi038-ubrlmp\n/bin/podman: stderr Error: error inspecting object: no such container ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi038-ubrlmp\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi038.ubrlmp\n/bin/podman: stderr Error: error inspecting object: no such container ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi038.ubrlmp\nDeploy daemon haproxy.nfs.foo.smithi038.ubrlmp ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi038 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2023-11-30T23:07:52Z\" level=warning msg=\"failed, retrying in 1s ... (1/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-11-30T23:08:30Z\" level=warning msg=\"failed, retrying in 1s ... (2/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-11-30T23:09:07Z\" level=warning msg=\"failed, retrying in 1s ... (3/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi038 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-11-30T23:09:45.062547Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi038.vjkntq on smithi038: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2023-11-30T23:09:45.063688Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi167.ndkqyv on smithi167: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2023-11-30T23:12:23.150100Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi167.nhhxhd on smithi167: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi167-nhhxhd\n/bin/podman: stderr Error: error inspecting object: no such container ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi167-nhhxhd\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi167.nhhxhd\n/bin/podman: stderr Error: error inspecting object: no such container ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi167.nhhxhd\nDeploy daemon haproxy.nfs.foo.smithi167.nhhxhd ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi167 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2023-11-30T23:10:30Z\" level=warning msg=\"failed, retrying in 1s ... (1/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-11-30T23:11:08Z\" level=warning msg=\"failed, retrying in 1s ... (2/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-11-30T23:11:45Z\" level=warning msg=\"failed, retrying in 1s ... (3/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi167 -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": 9049, "virtual_ip": "10.0.31.38/16"}, "status": {"created": "2023-11-30T22:58:56.312786Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.38/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2023-11-30T22:54:41.668043Z", "last_refresh": "2023-11-30T23:09:48.452908Z", "running": 2, "size": 2}}, {"events": ["2023-11-30T22:55:50.759225Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi038:172.21.15.38=smithi038", "smithi167:172.21.15.167=smithi167"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2023-11-30T22:55:50.756456Z", "last_refresh": "2023-11-30T23:09:48.452987Z", "running": 2, "size": 2}}, {"events": ["2023-11-30T22:58:56.311581Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2023-11-30T22:58:56.308071Z", "last_refresh": "2023-11-30T23:09:52.311757Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2023-11-30T22:54:46.136630Z", "last_refresh": "2023-11-30T23:09:48.453061Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2023-11-30T22:56:33.258058Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2023-11-30T22:56:33.253117Z", "last_refresh": "2023-11-30T23:09:48.453131Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2023-11-30T22:54:43.949497Z", "last_refresh": "2023-11-30T23:09:52.311357Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2023-11-30T22:58:52.105721Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2023-11-30T22:58:59.793467Z", "last_refresh": "2023-11-30T23:09:48.453411Z", "ports": [8800], "running": 2, "size": 2}}] 2023-11-30T23:13:18.030 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2023-11-30T23:13:18.262 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:13:17 smithi167 conmon[87022]: cluster 2023-11-30T23:13:16.999632+0000 mgr.smithi038.ldalxq (mgr.14182) 882 : cluster [DBG] pgmap v575: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2023-11-30T23:13:18.262 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:13:17 smithi167 conmon[87022]: audit 2023-11-30T23:13:17.499510+0000 mgr.smithi038.ldalxq (mgr.14182) 883 : audit [DBG] from='client.15660 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-11-30T23:13:18.274 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:13:17 smithi038 conmon[81956]: cluster 2023-11-30T23:13:16.999632+0000 mgr.smithi038.ldalxq (mgr.14182) 882 : cluster [DBG] pgmap v575: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2023-11-30T23:13:18.274 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:13:17 smithi038 conmon[81956]: audit 2023-11-30T23:13:17.499510+0000 mgr.smithi038.ldalxq (mgr.14182) 883 : audit [DBG] from='client.15660 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-11-30T23:13:19.031 DEBUG:teuthology.orchestra.run.smithi038:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:0dc074ce0b0b3b4f393f56dd32ef36884ebf45a9 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 3faf8b00-8fd3-11ee-95a2-87774f69a715 -- ceph orch ls -f json 2023-11-30T23:13:20.274 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:13:20 smithi038 conmon[81956]: cluster 2023-11-30T23:13:19.000236+0000 mgr.smithi038.ldalxq (mgr 2023-11-30T23:13:20.274 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:13:20 smithi038 conmon[81956]: .14182) 884 : cluster [DBG] pgmap v576: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2023-11-30T23:13:20.512 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:13:20 smithi167 conmon[87022]: cluster 2023-11-30T23:13:19.000236+0000 mgr.smithi038.ldalxq (mgr.14182) 884 : cluster [DBG] pgmap v576: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2023-11-30T23:13:20.864 INFO:teuthology.orchestra.run.smithi038.stdout: 2023-11-30T23:13:20.864 INFO:teuthology.orchestra.run.smithi038.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2023-11-30T22:54:47.122758Z", "last_refresh": "2023-11-30T23:09:52.311067Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2023-11-30T22:54:42.674972Z", "last_refresh": "2023-11-30T23:09:48.452759Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2023-11-30T22:54:45.114633Z", "last_refresh": "2023-11-30T23:09:52.311222Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2023-11-30T23:07:14.865206Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi167.igxkgw on smithi167: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi167-igxkgw\n/bin/podman: stderr Error: error inspecting object: no such container ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi167-igxkgw\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi167.igxkgw\n/bin/podman: stderr Error: error inspecting object: no such container ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi167.igxkgw\nDeploy daemon haproxy.nfs.foo.smithi167.igxkgw ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi167 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2023-11-30T23:05:21Z\" level=warning msg=\"failed, retrying in 1s ... (1/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-11-30T23:05:59Z\" level=warning msg=\"failed, retrying in 1s ... (2/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-11-30T23:06:37Z\" level=warning msg=\"failed, retrying in 1s ... (3/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi167 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-11-30T23:09:45.061230Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi038.ubrlmp on smithi038: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi038-ubrlmp\n/bin/podman: stderr Error: error inspecting object: no such container ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi038-ubrlmp\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi038.ubrlmp\n/bin/podman: stderr Error: error inspecting object: no such container ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi038.ubrlmp\nDeploy daemon haproxy.nfs.foo.smithi038.ubrlmp ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi038 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2023-11-30T23:07:52Z\" level=warning msg=\"failed, retrying in 1s ... (1/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-11-30T23:08:30Z\" level=warning msg=\"failed, retrying in 1s ... (2/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-11-30T23:09:07Z\" level=warning msg=\"failed, retrying in 1s ... (3/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi038 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-11-30T23:09:45.062547Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi038.vjkntq on smithi038: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2023-11-30T23:09:45.063688Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi167.ndkqyv on smithi167: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2023-11-30T23:12:23.150100Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi167.nhhxhd on smithi167: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi167-nhhxhd\n/bin/podman: stderr Error: error inspecting object: no such container ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi167-nhhxhd\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi167.nhhxhd\n/bin/podman: stderr Error: error inspecting object: no such container ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi167.nhhxhd\nDeploy daemon haproxy.nfs.foo.smithi167.nhhxhd ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi167 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2023-11-30T23:10:30Z\" level=warning msg=\"failed, retrying in 1s ... (1/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-11-30T23:11:08Z\" level=warning msg=\"failed, retrying in 1s ... (2/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-11-30T23:11:45Z\" level=warning msg=\"failed, retrying in 1s ... (3/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi167 -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": 9049, "virtual_ip": "10.0.31.38/16"}, "status": {"created": "2023-11-30T22:58:56.312786Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.38/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2023-11-30T22:54:41.668043Z", "last_refresh": "2023-11-30T23:09:48.452908Z", "running": 2, "size": 2}}, {"events": ["2023-11-30T22:55:50.759225Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi038:172.21.15.38=smithi038", "smithi167:172.21.15.167=smithi167"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2023-11-30T22:55:50.756456Z", "last_refresh": "2023-11-30T23:09:48.452987Z", "running": 2, "size": 2}}, {"events": ["2023-11-30T22:58:56.311581Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2023-11-30T22:58:56.308071Z", "last_refresh": "2023-11-30T23:09:52.311757Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2023-11-30T22:54:46.136630Z", "last_refresh": "2023-11-30T23:09:48.453061Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2023-11-30T22:56:33.258058Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2023-11-30T22:56:33.253117Z", "last_refresh": "2023-11-30T23:09:48.453131Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2023-11-30T22:54:43.949497Z", "last_refresh": "2023-11-30T23:09:52.311357Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2023-11-30T22:58:52.105721Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2023-11-30T22:58:59.793467Z", "last_refresh": "2023-11-30T23:09:48.453411Z", "ports": [8800], "running": 2, "size": 2}}] 2023-11-30T23:13:21.286 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2023-11-30T23:13:22.287 DEBUG:teuthology.orchestra.run.smithi038:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:0dc074ce0b0b3b4f393f56dd32ef36884ebf45a9 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 3faf8b00-8fd3-11ee-95a2-87774f69a715 -- ceph orch ls -f json 2023-11-30T23:13:22.318 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:13:22 smithi038 conmon[81956]: audit 2023-11-30T23:13:20.860308+0000 mgr.smithi038.ldalxq (mgr.14182) 885 : audit 2023-11-30T23:13:22.318 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:13:22 smithi038 conmon[81956]: [DBG] from='client.15664 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-11-30T23:13:22.318 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:13:22 smithi038 conmon[81956]: cluster 2023-11-30T23:13:21.001035+0000 mgr.smithi038.ldalxq (mgr.14182) 886 : cluster [DBG] pgmap v577: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2023-11-30T23:13:22.512 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:13:22 smithi167 conmon[87022]: audit 2023-11-30T23:13:20.860308+0000 mgr.smithi038.ldalxq (mgr.14182) 885 : audit [DBG] from='client.15664 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-11-30T23:13:22.512 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:13:22 smithi167 conmon[87022]: 2023-11-30T23:13:22.512 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:13:22 smithi167 conmon[87022]: cluster 2023-11-30T23:13:21.001035+0000 mgr.smithi038.ldalxq (mgr.14182) 886 : cluster [DBG] pgmap v577: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2023-11-30T23:13:24.227 INFO:teuthology.orchestra.run.smithi038.stdout: 2023-11-30T23:13:24.227 INFO:teuthology.orchestra.run.smithi038.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2023-11-30T22:54:47.122758Z", "last_refresh": "2023-11-30T23:09:52.311067Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2023-11-30T22:54:42.674972Z", "last_refresh": "2023-11-30T23:09:48.452759Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2023-11-30T22:54:45.114633Z", "last_refresh": "2023-11-30T23:09:52.311222Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2023-11-30T23:07:14.865206Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi167.igxkgw on smithi167: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi167-igxkgw\n/bin/podman: stderr Error: error inspecting object: no such container ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi167-igxkgw\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi167.igxkgw\n/bin/podman: stderr Error: error inspecting object: no such container ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi167.igxkgw\nDeploy daemon haproxy.nfs.foo.smithi167.igxkgw ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi167 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2023-11-30T23:05:21Z\" level=warning msg=\"failed, retrying in 1s ... (1/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-11-30T23:05:59Z\" level=warning msg=\"failed, retrying in 1s ... (2/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-11-30T23:06:37Z\" level=warning msg=\"failed, retrying in 1s ... (3/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi167 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-11-30T23:09:45.061230Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi038.ubrlmp on smithi038: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi038-ubrlmp\n/bin/podman: stderr Error: error inspecting object: no such container ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi038-ubrlmp\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi038.ubrlmp\n/bin/podman: stderr Error: error inspecting object: no such container ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi038.ubrlmp\nDeploy daemon haproxy.nfs.foo.smithi038.ubrlmp ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi038 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2023-11-30T23:07:52Z\" level=warning msg=\"failed, retrying in 1s ... (1/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-11-30T23:08:30Z\" level=warning msg=\"failed, retrying in 1s ... (2/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-11-30T23:09:07Z\" level=warning msg=\"failed, retrying in 1s ... (3/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi038 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-11-30T23:09:45.062547Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi038.vjkntq on smithi038: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2023-11-30T23:09:45.063688Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi167.ndkqyv on smithi167: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2023-11-30T23:12:23.150100Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi167.nhhxhd on smithi167: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi167-nhhxhd\n/bin/podman: stderr Error: error inspecting object: no such container ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi167-nhhxhd\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi167.nhhxhd\n/bin/podman: stderr Error: error inspecting object: no such container ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi167.nhhxhd\nDeploy daemon haproxy.nfs.foo.smithi167.nhhxhd ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi167 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2023-11-30T23:10:30Z\" level=warning msg=\"failed, retrying in 1s ... (1/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-11-30T23:11:08Z\" level=warning msg=\"failed, retrying in 1s ... (2/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-11-30T23:11:45Z\" level=warning msg=\"failed, retrying in 1s ... (3/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi167 -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": 9049, "virtual_ip": "10.0.31.38/16"}, "status": {"created": "2023-11-30T22:58:56.312786Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.38/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2023-11-30T22:54:41.668043Z", "last_refresh": "2023-11-30T23:09:48.452908Z", "running": 2, "size": 2}}, {"events": ["2023-11-30T22:55:50.759225Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi038:172.21.15.38=smithi038", "smithi167:172.21.15.167=smithi167"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2023-11-30T22:55:50.756456Z", "last_refresh": "2023-11-30T23:09:48.452987Z", "running": 2, "size": 2}}, {"events": ["2023-11-30T22:58:56.311581Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2023-11-30T22:58:56.308071Z", "last_refresh": "2023-11-30T23:09:52.311757Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2023-11-30T22:54:46.136630Z", "last_refresh": "2023-11-30T23:09:48.453061Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2023-11-30T22:56:33.258058Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2023-11-30T22:56:33.253117Z", "last_refresh": "2023-11-30T23:09:48.453131Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2023-11-30T22:54:43.949497Z", "last_refresh": "2023-11-30T23:09:52.311357Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2023-11-30T22:58:52.105721Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2023-11-30T22:58:59.793467Z", "last_refresh": "2023-11-30T23:09:48.453411Z", "ports": [8800], "running": 2, "size": 2}}] 2023-11-30T23:13:24.247 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:13:24 smithi038 conmon[81956]: cluster 2023-11-30T23:13:23.001574+0000 mgr.smithi038.ldalxq (mgr.14182) 887 : cluster [DBG] pgmap v578: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2023-11-30T23:13:24.512 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:13:24 smithi167 conmon[87022]: cluster 2023-11-30T23:13:23.001574+0000 mgr.smithi038.ldalxq (mgr.14182) 887 : cluster 2023-11-30T23:13:24.512 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:13:24 smithi167 conmon[87022]: [DBG] pgmap v578: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2023-11-30T23:13:24.637 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2023-11-30T23:13:25.512 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:13:25 smithi167 conmon[87022]: audit 2023-11-30T23:13:24.222435+0000 mgr.smithi038.ldalxq (mgr.14182) 888 : audit [DBG] from='client.15668 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-11-30T23:13:25.524 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:13:25 smithi038 conmon[81956]: audit 2023-11-30T23:13:24.222435+0000 mgr.smithi038.ldalxq (mgr.14182) 2023-11-30T23:13:25.524 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:13:25 smithi038 conmon[81956]: 888 : audit [DBG] from='client.15668 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-11-30T23:13:25.638 DEBUG:teuthology.orchestra.run.smithi038:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:0dc074ce0b0b3b4f393f56dd32ef36884ebf45a9 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 3faf8b00-8fd3-11ee-95a2-87774f69a715 -- ceph orch ls -f json 2023-11-30T23:13:26.418 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:13:26 smithi038 conmon[81956]: cluster 2023-11-30T23:13:25.002453+0000 mgr.smithi038.ldalxq (mgr 2023-11-30T23:13:26.418 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:13:26 smithi038 conmon[81956]: .14182) 889 : cluster [DBG] pgmap v579: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2023-11-30T23:13:26.512 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:13:26 smithi167 conmon[87022]: cluster 2023-11-30T23:13:25.002453+0000 mgr.smithi038.ldalxq (mgr.14182) 889 : cluster [DBG] 2023-11-30T23:13:26.512 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:13:26 smithi167 conmon[87022]: pgmap v579: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2023-11-30T23:13:27.477 INFO:teuthology.orchestra.run.smithi038.stdout: 2023-11-30T23:13:27.477 INFO:teuthology.orchestra.run.smithi038.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2023-11-30T22:54:47.122758Z", "last_refresh": "2023-11-30T23:09:52.311067Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2023-11-30T22:54:42.674972Z", "last_refresh": "2023-11-30T23:09:48.452759Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2023-11-30T22:54:45.114633Z", "last_refresh": "2023-11-30T23:09:52.311222Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2023-11-30T23:07:14.865206Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi167.igxkgw on smithi167: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi167-igxkgw\n/bin/podman: stderr Error: error inspecting object: no such container ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi167-igxkgw\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi167.igxkgw\n/bin/podman: stderr Error: error inspecting object: no such container ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi167.igxkgw\nDeploy daemon haproxy.nfs.foo.smithi167.igxkgw ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi167 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2023-11-30T23:05:21Z\" level=warning msg=\"failed, retrying in 1s ... (1/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-11-30T23:05:59Z\" level=warning msg=\"failed, retrying in 1s ... (2/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-11-30T23:06:37Z\" level=warning msg=\"failed, retrying in 1s ... (3/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi167 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-11-30T23:09:45.061230Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi038.ubrlmp on smithi038: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi038-ubrlmp\n/bin/podman: stderr Error: error inspecting object: no such container ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi038-ubrlmp\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi038.ubrlmp\n/bin/podman: stderr Error: error inspecting object: no such container ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi038.ubrlmp\nDeploy daemon haproxy.nfs.foo.smithi038.ubrlmp ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi038 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2023-11-30T23:07:52Z\" level=warning msg=\"failed, retrying in 1s ... (1/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-11-30T23:08:30Z\" level=warning msg=\"failed, retrying in 1s ... (2/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-11-30T23:09:07Z\" level=warning msg=\"failed, retrying in 1s ... (3/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi038 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-11-30T23:09:45.062547Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi038.vjkntq on smithi038: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2023-11-30T23:09:45.063688Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi167.ndkqyv on smithi167: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2023-11-30T23:12:23.150100Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi167.nhhxhd on smithi167: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi167-nhhxhd\n/bin/podman: stderr Error: error inspecting object: no such container ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi167-nhhxhd\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi167.nhhxhd\n/bin/podman: stderr Error: error inspecting object: no such container ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi167.nhhxhd\nDeploy daemon haproxy.nfs.foo.smithi167.nhhxhd ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi167 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2023-11-30T23:10:30Z\" level=warning msg=\"failed, retrying in 1s ... (1/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-11-30T23:11:08Z\" level=warning msg=\"failed, retrying in 1s ... (2/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-11-30T23:11:45Z\" level=warning msg=\"failed, retrying in 1s ... (3/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi167 -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": 9049, "virtual_ip": "10.0.31.38/16"}, "status": {"created": "2023-11-30T22:58:56.312786Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.38/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2023-11-30T22:54:41.668043Z", "last_refresh": "2023-11-30T23:09:48.452908Z", "running": 2, "size": 2}}, {"events": ["2023-11-30T22:55:50.759225Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi038:172.21.15.38=smithi038", "smithi167:172.21.15.167=smithi167"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2023-11-30T22:55:50.756456Z", "last_refresh": "2023-11-30T23:09:48.452987Z", "running": 2, "size": 2}}, {"events": ["2023-11-30T22:58:56.311581Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2023-11-30T22:58:56.308071Z", "last_refresh": "2023-11-30T23:09:52.311757Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2023-11-30T22:54:46.136630Z", "last_refresh": "2023-11-30T23:09:48.453061Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2023-11-30T22:56:33.258058Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2023-11-30T22:56:33.253117Z", "last_refresh": "2023-11-30T23:09:48.453131Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2023-11-30T22:54:43.949497Z", "last_refresh": "2023-11-30T23:09:52.311357Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2023-11-30T22:58:52.105721Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2023-11-30T22:58:59.793467Z", "last_refresh": "2023-11-30T23:09:48.453411Z", "ports": [8800], "running": 2, "size": 2}}] 2023-11-30T23:13:27.900 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2023-11-30T23:13:28.262 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:13:27 smithi167 conmon[87022]: cluster 2023-11-30T23:13:27.003040+0000 mgr.smithi038.ldalxq (mgr.14182) 890 : cluster [DBG] pgmap v580: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2023-11-30T23:13:28.262 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:13:27 smithi167 conmon[87022]: audit 2023-11-30T23:13:27.472301+0000 mgr.smithi038.ldalxq (mgr.14182) 891 : audit [DBG] from='client.15672 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-11-30T23:13:28.274 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:13:27 smithi038 conmon[81956]: cluster 2023-11-30T23:13:27.003040+0000 mgr.smithi038.ldalxq (mgr.14182) 890 : cluster [DBG] pgmap v580: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2023-11-30T23:13:28.274 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:13:27 smithi038 conmon[81956]: audit 2023-11-30T23:13:27.472301+0000 mgr.smithi038.ldalxq (mgr.14182) 891 : audit [DBG] from='client.15672 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-11-30T23:13:28.902 DEBUG:teuthology.orchestra.run.smithi038:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:0dc074ce0b0b3b4f393f56dd32ef36884ebf45a9 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 3faf8b00-8fd3-11ee-95a2-87774f69a715 -- ceph orch ls -f json 2023-11-30T23:13:30.512 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:13:30 smithi167 conmon[87022]: cluster 2023-11-30T23:13:29.003628+0000 mgr.smithi038.ldalxq (mgr.14182) 892 : cluster [DBG] pgmap v581: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2023-11-30T23:13:30.512 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:13:30 smithi167 conmon[87022]: 2023-11-30T23:13:30.524 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:13:30 smithi038 conmon[81956]: cluster 2023-11-30T23:13:29.003628+0000 mgr.smithi038.ldalxq (mgr.14182) 892 : cluster [DBG] pgmap v581: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2023-11-30T23:13:30.646 INFO:teuthology.orchestra.run.smithi038.stdout: 2023-11-30T23:13:30.646 INFO:teuthology.orchestra.run.smithi038.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2023-11-30T22:54:47.122758Z", "last_refresh": "2023-11-30T23:09:52.311067Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2023-11-30T22:54:42.674972Z", "last_refresh": "2023-11-30T23:09:48.452759Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2023-11-30T22:54:45.114633Z", "last_refresh": "2023-11-30T23:09:52.311222Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2023-11-30T23:07:14.865206Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi167.igxkgw on smithi167: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi167-igxkgw\n/bin/podman: stderr Error: error inspecting object: no such container ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi167-igxkgw\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi167.igxkgw\n/bin/podman: stderr Error: error inspecting object: no such container ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi167.igxkgw\nDeploy daemon haproxy.nfs.foo.smithi167.igxkgw ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi167 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2023-11-30T23:05:21Z\" level=warning msg=\"failed, retrying in 1s ... (1/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-11-30T23:05:59Z\" level=warning msg=\"failed, retrying in 1s ... (2/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-11-30T23:06:37Z\" level=warning msg=\"failed, retrying in 1s ... (3/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi167 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-11-30T23:09:45.061230Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi038.ubrlmp on smithi038: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi038-ubrlmp\n/bin/podman: stderr Error: error inspecting object: no such container ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi038-ubrlmp\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi038.ubrlmp\n/bin/podman: stderr Error: error inspecting object: no such container ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi038.ubrlmp\nDeploy daemon haproxy.nfs.foo.smithi038.ubrlmp ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi038 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2023-11-30T23:07:52Z\" level=warning msg=\"failed, retrying in 1s ... (1/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-11-30T23:08:30Z\" level=warning msg=\"failed, retrying in 1s ... (2/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-11-30T23:09:07Z\" level=warning msg=\"failed, retrying in 1s ... (3/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi038 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-11-30T23:09:45.062547Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi038.vjkntq on smithi038: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2023-11-30T23:09:45.063688Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi167.ndkqyv on smithi167: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2023-11-30T23:12:23.150100Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi167.nhhxhd on smithi167: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi167-nhhxhd\n/bin/podman: stderr Error: error inspecting object: no such container ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi167-nhhxhd\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi167.nhhxhd\n/bin/podman: stderr Error: error inspecting object: no such container ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi167.nhhxhd\nDeploy daemon haproxy.nfs.foo.smithi167.nhhxhd ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi167 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2023-11-30T23:10:30Z\" level=warning msg=\"failed, retrying in 1s ... (1/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-11-30T23:11:08Z\" level=warning msg=\"failed, retrying in 1s ... (2/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-11-30T23:11:45Z\" level=warning msg=\"failed, retrying in 1s ... (3/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi167 -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": 9049, "virtual_ip": "10.0.31.38/16"}, "status": {"created": "2023-11-30T22:58:56.312786Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.38/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2023-11-30T22:54:41.668043Z", "last_refresh": "2023-11-30T23:09:48.452908Z", "running": 2, "size": 2}}, {"events": ["2023-11-30T22:55:50.759225Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi038:172.21.15.38=smithi038", "smithi167:172.21.15.167=smithi167"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2023-11-30T22:55:50.756456Z", "last_refresh": "2023-11-30T23:09:48.452987Z", "running": 2, "size": 2}}, {"events": ["2023-11-30T22:58:56.311581Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2023-11-30T22:58:56.308071Z", "last_refresh": "2023-11-30T23:09:52.311757Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2023-11-30T22:54:46.136630Z", "last_refresh": "2023-11-30T23:09:48.453061Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2023-11-30T22:56:33.258058Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2023-11-30T22:56:33.253117Z", "last_refresh": "2023-11-30T23:09:48.453131Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2023-11-30T22:54:43.949497Z", "last_refresh": "2023-11-30T23:09:52.311357Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2023-11-30T22:58:52.105721Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2023-11-30T22:58:59.793467Z", "last_refresh": "2023-11-30T23:09:48.453411Z", "ports": [8800], "running": 2, "size": 2}}] 2023-11-30T23:13:31.053 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2023-11-30T23:13:31.511 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:13:31 smithi167 conmon[87022]: audit 2023-11-30T23:13:30.642342+0000 mgr.smithi038.ldalxq (mgr.14182) 893 : audit [DBG] from='client.15676 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-11-30T23:13:31.524 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:13:31 smithi038 conmon[81956]: audit 2023-11-30T23:13:30.642342+0000 2023-11-30T23:13:31.524 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:13:31 smithi038 conmon[81956]: mgr.smithi038.ldalxq (mgr.14182) 893 : audit [DBG] from='client.15676 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-11-30T23:13:32.054 DEBUG:teuthology.orchestra.run.smithi038:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:0dc074ce0b0b3b4f393f56dd32ef36884ebf45a9 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 3faf8b00-8fd3-11ee-95a2-87774f69a715 -- ceph orch ls -f json 2023-11-30T23:13:32.512 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:13:32 smithi167 conmon[87022]: cluster 2023-11-30T23:13:31.004554+0000 mgr.smithi038.ldalxq (mgr.14182) 894 : cluster [DBG] pgmap v582: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2023-11-30T23:13:32.524 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:13:32 smithi038 conmon[81956]: cluster 2023-11-30T23:13:31.004554+0000 mgr.smithi038.ldalxq (mgr.14182) 894 2023-11-30T23:13:32.524 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:13:32 smithi038 conmon[81956]: : cluster [DBG] pgmap v582: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2023-11-30T23:13:33.774 INFO:teuthology.orchestra.run.smithi038.stdout: 2023-11-30T23:13:33.774 INFO:teuthology.orchestra.run.smithi038.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2023-11-30T22:54:47.122758Z", "last_refresh": "2023-11-30T23:09:52.311067Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2023-11-30T22:54:42.674972Z", "last_refresh": "2023-11-30T23:09:48.452759Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2023-11-30T22:54:45.114633Z", "last_refresh": "2023-11-30T23:09:52.311222Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2023-11-30T23:07:14.865206Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi167.igxkgw on smithi167: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi167-igxkgw\n/bin/podman: stderr Error: error inspecting object: no such container ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi167-igxkgw\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi167.igxkgw\n/bin/podman: stderr Error: error inspecting object: no such container ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi167.igxkgw\nDeploy daemon haproxy.nfs.foo.smithi167.igxkgw ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi167 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2023-11-30T23:05:21Z\" level=warning msg=\"failed, retrying in 1s ... (1/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-11-30T23:05:59Z\" level=warning msg=\"failed, retrying in 1s ... (2/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-11-30T23:06:37Z\" level=warning msg=\"failed, retrying in 1s ... (3/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi167 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-11-30T23:09:45.061230Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi038.ubrlmp on smithi038: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi038-ubrlmp\n/bin/podman: stderr Error: error inspecting object: no such container ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi038-ubrlmp\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi038.ubrlmp\n/bin/podman: stderr Error: error inspecting object: no such container ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi038.ubrlmp\nDeploy daemon haproxy.nfs.foo.smithi038.ubrlmp ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi038 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2023-11-30T23:07:52Z\" level=warning msg=\"failed, retrying in 1s ... (1/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-11-30T23:08:30Z\" level=warning msg=\"failed, retrying in 1s ... (2/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-11-30T23:09:07Z\" level=warning msg=\"failed, retrying in 1s ... (3/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi038 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-11-30T23:09:45.062547Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi038.vjkntq on smithi038: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2023-11-30T23:09:45.063688Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi167.ndkqyv on smithi167: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2023-11-30T23:12:23.150100Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi167.nhhxhd on smithi167: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi167-nhhxhd\n/bin/podman: stderr Error: error inspecting object: no such container ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi167-nhhxhd\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi167.nhhxhd\n/bin/podman: stderr Error: error inspecting object: no such container ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi167.nhhxhd\nDeploy daemon haproxy.nfs.foo.smithi167.nhhxhd ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi167 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2023-11-30T23:10:30Z\" level=warning msg=\"failed, retrying in 1s ... (1/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-11-30T23:11:08Z\" level=warning msg=\"failed, retrying in 1s ... (2/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-11-30T23:11:45Z\" level=warning msg=\"failed, retrying in 1s ... (3/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi167 -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": 9049, "virtual_ip": "10.0.31.38/16"}, "status": {"created": "2023-11-30T22:58:56.312786Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.38/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2023-11-30T22:54:41.668043Z", "last_refresh": "2023-11-30T23:09:48.452908Z", "running": 2, "size": 2}}, {"events": ["2023-11-30T22:55:50.759225Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi038:172.21.15.38=smithi038", "smithi167:172.21.15.167=smithi167"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2023-11-30T22:55:50.756456Z", "last_refresh": "2023-11-30T23:09:48.452987Z", "running": 2, "size": 2}}, {"events": ["2023-11-30T22:58:56.311581Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2023-11-30T22:58:56.308071Z", "last_refresh": "2023-11-30T23:09:52.311757Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2023-11-30T22:54:46.136630Z", "last_refresh": "2023-11-30T23:09:48.453061Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2023-11-30T22:56:33.258058Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2023-11-30T22:56:33.253117Z", "last_refresh": "2023-11-30T23:09:48.453131Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2023-11-30T22:54:43.949497Z", "last_refresh": "2023-11-30T23:09:52.311357Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2023-11-30T22:58:52.105721Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2023-11-30T22:58:59.793467Z", "last_refresh": "2023-11-30T23:09:48.453411Z", "ports": [8800], "running": 2, "size": 2}}] 2023-11-30T23:13:34.204 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2023-11-30T23:13:34.512 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:13:34 smithi167 conmon[87022]: cluster 2023-11-30T23:13:33.005082+0000 mgr.smithi038.ldalxq (mgr.14182) 895 : cluster [DBG] pgmap v583: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2023-11-30T23:13:34.524 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:13:34 smithi038 conmon[81956]: cluster 2023-11-30T23:13:33.005082+0000 mgr.smithi038.ldalxq (mgr.14182) 895 : cluster [DBG] pgmap v583: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2023-11-30T23:13:35.205 DEBUG:teuthology.orchestra.run.smithi038:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:0dc074ce0b0b3b4f393f56dd32ef36884ebf45a9 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 3faf8b00-8fd3-11ee-95a2-87774f69a715 -- ceph orch ls -f json 2023-11-30T23:13:35.511 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:13:35 smithi167 conmon[87022]: audit 2023-11-30T23:13:33.769763+0000 mgr.smithi038.ldalxq (mgr.14182) 896 : audit [DBG] from='client.15680 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-11-30T23:13:35.523 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:13:35 smithi038 conmon[81956]: audit 2023-11-30T23:13:33.769763+0000 mgr.smithi038.ldalxq (mgr.14182) 896 : audit 2023-11-30T23:13:35.524 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:13:35 smithi038 conmon[81956]: [DBG] from='client.15680 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-11-30T23:13:36.344 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:13:36 smithi038 conmon[81956]: cluster 2023-11-30T23:13:35.005995+0000 2023-11-30T23:13:36.344 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:13:36 smithi038 conmon[81956]: mgr.smithi038.ldalxq (mgr.14182) 897 : cluster [DBG] pgmap v584: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2023-11-30T23:13:36.512 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:13:36 smithi167 conmon[87022]: cluster 2023-11-30T23:13:35.005995+0000 mgr.smithi038.ldalxq (mgr.14182) 897 : cluster [DBG] pgmap v584: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2023-11-30T23:13:36.512 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:13:36 smithi167 conmon[87022]: 2023-11-30T23:13:36.883 INFO:teuthology.orchestra.run.smithi038.stdout: 2023-11-30T23:13:36.883 INFO:teuthology.orchestra.run.smithi038.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2023-11-30T22:54:47.122758Z", "last_refresh": "2023-11-30T23:09:52.311067Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2023-11-30T22:54:42.674972Z", "last_refresh": "2023-11-30T23:09:48.452759Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2023-11-30T22:54:45.114633Z", "last_refresh": "2023-11-30T23:09:52.311222Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2023-11-30T23:07:14.865206Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi167.igxkgw on smithi167: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi167-igxkgw\n/bin/podman: stderr Error: error inspecting object: no such container ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi167-igxkgw\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi167.igxkgw\n/bin/podman: stderr Error: error inspecting object: no such container ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi167.igxkgw\nDeploy daemon haproxy.nfs.foo.smithi167.igxkgw ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi167 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2023-11-30T23:05:21Z\" level=warning msg=\"failed, retrying in 1s ... (1/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-11-30T23:05:59Z\" level=warning msg=\"failed, retrying in 1s ... (2/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-11-30T23:06:37Z\" level=warning msg=\"failed, retrying in 1s ... (3/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi167 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-11-30T23:09:45.061230Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi038.ubrlmp on smithi038: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi038-ubrlmp\n/bin/podman: stderr Error: error inspecting object: no such container ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi038-ubrlmp\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi038.ubrlmp\n/bin/podman: stderr Error: error inspecting object: no such container ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi038.ubrlmp\nDeploy daemon haproxy.nfs.foo.smithi038.ubrlmp ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi038 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2023-11-30T23:07:52Z\" level=warning msg=\"failed, retrying in 1s ... (1/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-11-30T23:08:30Z\" level=warning msg=\"failed, retrying in 1s ... (2/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-11-30T23:09:07Z\" level=warning msg=\"failed, retrying in 1s ... (3/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi038 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-11-30T23:09:45.062547Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi038.vjkntq on smithi038: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2023-11-30T23:09:45.063688Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi167.ndkqyv on smithi167: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2023-11-30T23:12:23.150100Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi167.nhhxhd on smithi167: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi167-nhhxhd\n/bin/podman: stderr Error: error inspecting object: no such container ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi167-nhhxhd\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi167.nhhxhd\n/bin/podman: stderr Error: error inspecting object: no such container ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi167.nhhxhd\nDeploy daemon haproxy.nfs.foo.smithi167.nhhxhd ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi167 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2023-11-30T23:10:30Z\" level=warning msg=\"failed, retrying in 1s ... (1/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-11-30T23:11:08Z\" level=warning msg=\"failed, retrying in 1s ... (2/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-11-30T23:11:45Z\" level=warning msg=\"failed, retrying in 1s ... (3/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi167 -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": 9049, "virtual_ip": "10.0.31.38/16"}, "status": {"created": "2023-11-30T22:58:56.312786Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.38/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2023-11-30T22:54:41.668043Z", "last_refresh": "2023-11-30T23:09:48.452908Z", "running": 2, "size": 2}}, {"events": ["2023-11-30T22:55:50.759225Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi038:172.21.15.38=smithi038", "smithi167:172.21.15.167=smithi167"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2023-11-30T22:55:50.756456Z", "last_refresh": "2023-11-30T23:09:48.452987Z", "running": 2, "size": 2}}, {"events": ["2023-11-30T22:58:56.311581Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2023-11-30T22:58:56.308071Z", "last_refresh": "2023-11-30T23:09:52.311757Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2023-11-30T22:54:46.136630Z", "last_refresh": "2023-11-30T23:09:48.453061Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2023-11-30T22:56:33.258058Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2023-11-30T22:56:33.253117Z", "last_refresh": "2023-11-30T23:09:48.453131Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2023-11-30T22:54:43.949497Z", "last_refresh": "2023-11-30T23:09:52.311357Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2023-11-30T22:58:52.105721Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2023-11-30T22:58:59.793467Z", "last_refresh": "2023-11-30T23:09:48.453411Z", "ports": [8800], "running": 2, "size": 2}}] 2023-11-30T23:13:37.253 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2023-11-30T23:13:38.254 DEBUG:teuthology.orchestra.run.smithi038:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:0dc074ce0b0b3b4f393f56dd32ef36884ebf45a9 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 3faf8b00-8fd3-11ee-95a2-87774f69a715 -- ceph orch ls -f json 2023-11-30T23:13:38.262 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:13:37 smithi167 conmon[87022]: audit 2023-11-30T23:13:36.879033+0000 mgr.smithi038.ldalxq (mgr.14182) 898 : 2023-11-30T23:13:38.262 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:13:37 smithi167 conmon[87022]: audit [DBG] from='client.15684 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-11-30T23:13:38.262 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:13:37 smithi167 conmon[87022]: cluster 2023-11-30T23:13:37.006508+0000 mgr.smithi038.ldalxq (mgr.14182) 899 : cluster [DBG] pgmap v585: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2023-11-30T23:13:38.273 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:13:37 smithi038 conmon[81956]: audit 2023-11-30T23:13:36.879033+0000 mgr.smithi038.ldalxq (mgr.14182) 898 : audit [DBG] from='client.15684 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-11-30T23:13:38.274 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:13:37 smithi038 conmon[81956]: cluster 2023-11-30T23:13:37.006508+0000 mgr.smithi038.ldalxq (mgr.14182) 899 : cluster [DBG] pgmap v585: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2023-11-30T23:13:39.977 INFO:teuthology.orchestra.run.smithi038.stdout: 2023-11-30T23:13:39.978 INFO:teuthology.orchestra.run.smithi038.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2023-11-30T22:54:47.122758Z", "last_refresh": "2023-11-30T23:09:52.311067Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2023-11-30T22:54:42.674972Z", "last_refresh": "2023-11-30T23:09:48.452759Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2023-11-30T22:54:45.114633Z", "last_refresh": "2023-11-30T23:09:52.311222Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2023-11-30T23:07:14.865206Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi167.igxkgw on smithi167: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi167-igxkgw\n/bin/podman: stderr Error: error inspecting object: no such container ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi167-igxkgw\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi167.igxkgw\n/bin/podman: stderr Error: error inspecting object: no such container ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi167.igxkgw\nDeploy daemon haproxy.nfs.foo.smithi167.igxkgw ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi167 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2023-11-30T23:05:21Z\" level=warning msg=\"failed, retrying in 1s ... (1/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-11-30T23:05:59Z\" level=warning msg=\"failed, retrying in 1s ... (2/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-11-30T23:06:37Z\" level=warning msg=\"failed, retrying in 1s ... (3/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi167 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-11-30T23:09:45.061230Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi038.ubrlmp on smithi038: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi038-ubrlmp\n/bin/podman: stderr Error: error inspecting object: no such container ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi038-ubrlmp\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi038.ubrlmp\n/bin/podman: stderr Error: error inspecting object: no such container ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi038.ubrlmp\nDeploy daemon haproxy.nfs.foo.smithi038.ubrlmp ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi038 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2023-11-30T23:07:52Z\" level=warning msg=\"failed, retrying in 1s ... (1/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-11-30T23:08:30Z\" level=warning msg=\"failed, retrying in 1s ... (2/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-11-30T23:09:07Z\" level=warning msg=\"failed, retrying in 1s ... (3/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi038 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-11-30T23:09:45.062547Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi038.vjkntq on smithi038: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2023-11-30T23:09:45.063688Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi167.ndkqyv on smithi167: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2023-11-30T23:12:23.150100Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi167.nhhxhd on smithi167: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi167-nhhxhd\n/bin/podman: stderr Error: error inspecting object: no such container ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi167-nhhxhd\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi167.nhhxhd\n/bin/podman: stderr Error: error inspecting object: no such container ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi167.nhhxhd\nDeploy daemon haproxy.nfs.foo.smithi167.nhhxhd ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi167 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2023-11-30T23:10:30Z\" level=warning msg=\"failed, retrying in 1s ... (1/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-11-30T23:11:08Z\" level=warning msg=\"failed, retrying in 1s ... (2/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-11-30T23:11:45Z\" level=warning msg=\"failed, retrying in 1s ... (3/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi167 -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": 9049, "virtual_ip": "10.0.31.38/16"}, "status": {"created": "2023-11-30T22:58:56.312786Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.38/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2023-11-30T22:54:41.668043Z", "last_refresh": "2023-11-30T23:09:48.452908Z", "running": 2, "size": 2}}, {"events": ["2023-11-30T22:55:50.759225Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi038:172.21.15.38=smithi038", "smithi167:172.21.15.167=smithi167"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2023-11-30T22:55:50.756456Z", "last_refresh": "2023-11-30T23:09:48.452987Z", "running": 2, "size": 2}}, {"events": ["2023-11-30T22:58:56.311581Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2023-11-30T22:58:56.308071Z", "last_refresh": "2023-11-30T23:09:52.311757Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2023-11-30T22:54:46.136630Z", "last_refresh": "2023-11-30T23:09:48.453061Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2023-11-30T22:56:33.258058Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2023-11-30T22:56:33.253117Z", "last_refresh": "2023-11-30T23:09:48.453131Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2023-11-30T22:54:43.949497Z", "last_refresh": "2023-11-30T23:09:52.311357Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2023-11-30T22:58:52.105721Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2023-11-30T22:58:59.793467Z", "last_refresh": "2023-11-30T23:09:48.453411Z", "ports": [8800], "running": 2, "size": 2}}] 2023-11-30T23:13:40.274 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:13:40 smithi038 conmon[81956]: cluster 2023-11-30T23:13:39 2023-11-30T23:13:40.274 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:13:40 smithi038 conmon[81956]: .007268+0000 mgr.smithi038.ldalxq (mgr.14182) 900 : cluster [DBG] pgmap v586: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2023-11-30T23:13:40.407 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2023-11-30T23:13:40.512 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:13:40 smithi167 conmon[87022]: cluster 2023-11-30T23:13:39.007268+0000 mgr.smithi038.ldalxq (mgr.14182) 900 : cluster [DBG] pgmap v586: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2023-11-30T23:13:41.408 DEBUG:teuthology.orchestra.run.smithi038:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:0dc074ce0b0b3b4f393f56dd32ef36884ebf45a9 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 3faf8b00-8fd3-11ee-95a2-87774f69a715 -- ceph orch ls -f json 2023-11-30T23:13:41.440 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:13:41 smithi038 conmon[81956]: audit 2023-11-30T23:13:39.973583+0000 mgr.smithi038.ldalxq (mgr.14182) 901 : audit [DBG] from='client.15688 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-11-30T23:13:41.512 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:13:41 smithi167 conmon[87022]: audit 2023-11-30T23:13:39.973583+0000 mgr.smithi038.ldalxq (mgr.14182) 901 : audit [DBG] from='client.15688 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-11-30T23:13:42.274 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:13:42 smithi038 conmon[81956]: cluster 2023-11-30T23:13:41.008175+0000 mgr.smithi038.ldalxq (mgr.14182) 902 : cluster [DBG] pgmap v587: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2023-11-30T23:13:42.512 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:13:42 smithi167 conmon[87022]: cluster 2023-11-30T23:13:41.008175+0000 mgr.smithi038.ldalxq (mgr.14182) 902 : cluster [DBG] pgmap v587: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2023-11-30T23:13:43.302 INFO:teuthology.orchestra.run.smithi038.stdout: 2023-11-30T23:13:43.302 INFO:teuthology.orchestra.run.smithi038.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2023-11-30T22:54:47.122758Z", "last_refresh": "2023-11-30T23:09:52.311067Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2023-11-30T22:54:42.674972Z", "last_refresh": "2023-11-30T23:09:48.452759Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2023-11-30T22:54:45.114633Z", "last_refresh": "2023-11-30T23:09:52.311222Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2023-11-30T23:07:14.865206Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi167.igxkgw on smithi167: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi167-igxkgw\n/bin/podman: stderr Error: error inspecting object: no such container ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi167-igxkgw\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi167.igxkgw\n/bin/podman: stderr Error: error inspecting object: no such container ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi167.igxkgw\nDeploy daemon haproxy.nfs.foo.smithi167.igxkgw ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi167 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2023-11-30T23:05:21Z\" level=warning msg=\"failed, retrying in 1s ... (1/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-11-30T23:05:59Z\" level=warning msg=\"failed, retrying in 1s ... (2/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-11-30T23:06:37Z\" level=warning msg=\"failed, retrying in 1s ... (3/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi167 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-11-30T23:09:45.061230Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi038.ubrlmp on smithi038: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi038-ubrlmp\n/bin/podman: stderr Error: error inspecting object: no such container ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi038-ubrlmp\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi038.ubrlmp\n/bin/podman: stderr Error: error inspecting object: no such container ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi038.ubrlmp\nDeploy daemon haproxy.nfs.foo.smithi038.ubrlmp ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi038 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2023-11-30T23:07:52Z\" level=warning msg=\"failed, retrying in 1s ... (1/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-11-30T23:08:30Z\" level=warning msg=\"failed, retrying in 1s ... (2/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-11-30T23:09:07Z\" level=warning msg=\"failed, retrying in 1s ... (3/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi038 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-11-30T23:09:45.062547Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi038.vjkntq on smithi038: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2023-11-30T23:09:45.063688Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi167.ndkqyv on smithi167: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2023-11-30T23:12:23.150100Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi167.nhhxhd on smithi167: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi167-nhhxhd\n/bin/podman: stderr Error: error inspecting object: no such container ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi167-nhhxhd\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi167.nhhxhd\n/bin/podman: stderr Error: error inspecting object: no such container ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi167.nhhxhd\nDeploy daemon haproxy.nfs.foo.smithi167.nhhxhd ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi167 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2023-11-30T23:10:30Z\" level=warning msg=\"failed, retrying in 1s ... (1/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-11-30T23:11:08Z\" level=warning msg=\"failed, retrying in 1s ... (2/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-11-30T23:11:45Z\" level=warning msg=\"failed, retrying in 1s ... (3/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi167 -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": 9049, "virtual_ip": "10.0.31.38/16"}, "status": {"created": "2023-11-30T22:58:56.312786Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.38/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2023-11-30T22:54:41.668043Z", "last_refresh": "2023-11-30T23:09:48.452908Z", "running": 2, "size": 2}}, {"events": ["2023-11-30T22:55:50.759225Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi038:172.21.15.38=smithi038", "smithi167:172.21.15.167=smithi167"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2023-11-30T22:55:50.756456Z", "last_refresh": "2023-11-30T23:09:48.452987Z", "running": 2, "size": 2}}, {"events": ["2023-11-30T22:58:56.311581Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2023-11-30T22:58:56.308071Z", "last_refresh": "2023-11-30T23:09:52.311757Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2023-11-30T22:54:46.136630Z", "last_refresh": "2023-11-30T23:09:48.453061Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2023-11-30T22:56:33.258058Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2023-11-30T22:56:33.253117Z", "last_refresh": "2023-11-30T23:09:48.453131Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2023-11-30T22:54:43.949497Z", "last_refresh": "2023-11-30T23:09:52.311357Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2023-11-30T22:58:52.105721Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2023-11-30T22:58:59.793467Z", "last_refresh": "2023-11-30T23:09:48.453411Z", "ports": [8800], "running": 2, "size": 2}}] 2023-11-30T23:13:43.760 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2023-11-30T23:13:44.512 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:13:44 smithi167 conmon[87022]: cluster 2023-11-30T23:13:43.008751+0000 mgr.smithi038.ldalxq (mgr.14182) 903 : cluster [DBG] 2023-11-30T23:13:44.512 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:13:44 smithi167 conmon[87022]: pgmap v588: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2023-11-30T23:13:44.512 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:13:44 smithi167 conmon[87022]: audit 2023-11-30T23:13:43.298056+0000 mgr.smithi038.ldalxq (mgr.14182) 904 : audit [DBG] from='client.15692 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-11-30T23:13:44.524 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:13:44 smithi038 conmon[81956]: cluster 2023-11-30T23:13:43.008751+0000 mgr.smithi038.ldalxq (mgr.14182) 903 : cluster [DBG] pgmap v588: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2023-11-30T23:13:44.524 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:13:44 smithi038 conmon[81956]: audit 2023-11-30T23:13:43.298056+0000 mgr.smithi038.ldalxq (mgr.14182) 904 : audit [DBG] from='client.15692 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-11-30T23:13:44.761 DEBUG:teuthology.orchestra.run.smithi038:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:0dc074ce0b0b3b4f393f56dd32ef36884ebf45a9 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 3faf8b00-8fd3-11ee-95a2-87774f69a715 -- ceph orch ls -f json 2023-11-30T23:13:46.453 INFO:teuthology.orchestra.run.smithi038.stdout: 2023-11-30T23:13:46.453 INFO:teuthology.orchestra.run.smithi038.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2023-11-30T22:54:47.122758Z", "last_refresh": "2023-11-30T23:09:52.311067Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2023-11-30T22:54:42.674972Z", "last_refresh": "2023-11-30T23:09:48.452759Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2023-11-30T22:54:45.114633Z", "last_refresh": "2023-11-30T23:09:52.311222Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2023-11-30T23:07:14.865206Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi167.igxkgw on smithi167: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi167-igxkgw\n/bin/podman: stderr Error: error inspecting object: no such container ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi167-igxkgw\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi167.igxkgw\n/bin/podman: stderr Error: error inspecting object: no such container ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi167.igxkgw\nDeploy daemon haproxy.nfs.foo.smithi167.igxkgw ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi167 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2023-11-30T23:05:21Z\" level=warning msg=\"failed, retrying in 1s ... (1/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-11-30T23:05:59Z\" level=warning msg=\"failed, retrying in 1s ... (2/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-11-30T23:06:37Z\" level=warning msg=\"failed, retrying in 1s ... (3/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi167 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-11-30T23:09:45.061230Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi038.ubrlmp on smithi038: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi038-ubrlmp\n/bin/podman: stderr Error: error inspecting object: no such container ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi038-ubrlmp\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi038.ubrlmp\n/bin/podman: stderr Error: error inspecting object: no such container ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi038.ubrlmp\nDeploy daemon haproxy.nfs.foo.smithi038.ubrlmp ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi038 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2023-11-30T23:07:52Z\" level=warning msg=\"failed, retrying in 1s ... (1/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-11-30T23:08:30Z\" level=warning msg=\"failed, retrying in 1s ... (2/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-11-30T23:09:07Z\" level=warning msg=\"failed, retrying in 1s ... (3/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi038 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-11-30T23:09:45.062547Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi038.vjkntq on smithi038: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2023-11-30T23:09:45.063688Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi167.ndkqyv on smithi167: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2023-11-30T23:12:23.150100Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi167.nhhxhd on smithi167: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi167-nhhxhd\n/bin/podman: stderr Error: error inspecting object: no such container ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi167-nhhxhd\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi167.nhhxhd\n/bin/podman: stderr Error: error inspecting object: no such container ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi167.nhhxhd\nDeploy daemon haproxy.nfs.foo.smithi167.nhhxhd ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi167 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2023-11-30T23:10:30Z\" level=warning msg=\"failed, retrying in 1s ... (1/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-11-30T23:11:08Z\" level=warning msg=\"failed, retrying in 1s ... (2/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-11-30T23:11:45Z\" level=warning msg=\"failed, retrying in 1s ... (3/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi167 -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": 9049, "virtual_ip": "10.0.31.38/16"}, "status": {"created": "2023-11-30T22:58:56.312786Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.38/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2023-11-30T22:54:41.668043Z", "last_refresh": "2023-11-30T23:09:48.452908Z", "running": 2, "size": 2}}, {"events": ["2023-11-30T22:55:50.759225Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi038:172.21.15.38=smithi038", "smithi167:172.21.15.167=smithi167"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2023-11-30T22:55:50.756456Z", "last_refresh": "2023-11-30T23:09:48.452987Z", "running": 2, "size": 2}}, {"events": ["2023-11-30T22:58:56.311581Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2023-11-30T22:58:56.308071Z", "last_refresh": "2023-11-30T23:09:52.311757Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2023-11-30T22:54:46.136630Z", "last_refresh": "2023-11-30T23:09:48.453061Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2023-11-30T22:56:33.258058Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2023-11-30T22:56:33.253117Z", "last_refresh": "2023-11-30T23:09:48.453131Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2023-11-30T22:54:43.949497Z", "last_refresh": "2023-11-30T23:09:52.311357Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2023-11-30T22:58:52.105721Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2023-11-30T22:58:59.793467Z", "last_refresh": "2023-11-30T23:09:48.453411Z", "ports": [8800], "running": 2, "size": 2}}] 2023-11-30T23:13:46.479 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:13:46 smithi038 conmon[81956]: cluster 2023-11-30T23:13:45.009518+0000 2023-11-30T23:13:46.602 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:13:46 smithi038 conmon[81956]: mgr.smithi038.ldalxq (mgr.14182) 905 : cluster [DBG] pgmap v589: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2023-11-30T23:13:46.603 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:13:46 smithi167 conmon[87022]: cluster 2023-11-30T23:13:45.009518+0000 mgr.smithi038.ldalxq (mgr.14182) 905 : cluster [DBG] pgmap v589: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2023-11-30T23:13:46.915 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2023-11-30T23:13:47.274 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:13:47 smithi038 conmon[81956]: audit 2023-11-30T23:13:46.447388+0000 mgr.smithi038.ldalxq (mgr. 2023-11-30T23:13:47.274 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:13:47 smithi038 conmon[81956]: 14182) 906 : audit [DBG] from='client.15696 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-11-30T23:13:47.511 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:13:47 smithi167 conmon[87022]: audit 2023-11-30T23:13:46.447388+0000 mgr.smithi038.ldalxq (mgr.14182) 906 : audit [DBG] from='client.15696 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-11-30T23:13:47.916 DEBUG:teuthology.orchestra.run.smithi038:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:0dc074ce0b0b3b4f393f56dd32ef36884ebf45a9 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 3faf8b00-8fd3-11ee-95a2-87774f69a715 -- ceph orch ls -f json 2023-11-30T23:13:48.274 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:13:48 smithi038 conmon[81956]: cluster 2023-11-30T23:13:47.010074+0000 mgr.smithi038.ldalxq (mgr.14182) 907 : cluster [DBG] pgmap v590: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2023-11-30T23:13:48.511 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:13:48 smithi167 conmon[87022]: cluster 2023-11-30T23:13:47.010074+0000 mgr.smithi038.ldalxq (mgr.14182) 907 : cluster [DBG] pgmap v590: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2023-11-30T23:13:49.607 INFO:teuthology.orchestra.run.smithi038.stdout: 2023-11-30T23:13:49.607 INFO:teuthology.orchestra.run.smithi038.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2023-11-30T22:54:47.122758Z", "last_refresh": "2023-11-30T23:09:52.311067Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2023-11-30T22:54:42.674972Z", "last_refresh": "2023-11-30T23:09:48.452759Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2023-11-30T22:54:45.114633Z", "last_refresh": "2023-11-30T23:09:52.311222Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2023-11-30T23:07:14.865206Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi167.igxkgw on smithi167: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi167-igxkgw\n/bin/podman: stderr Error: error inspecting object: no such container ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi167-igxkgw\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi167.igxkgw\n/bin/podman: stderr Error: error inspecting object: no such container ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi167.igxkgw\nDeploy daemon haproxy.nfs.foo.smithi167.igxkgw ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi167 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2023-11-30T23:05:21Z\" level=warning msg=\"failed, retrying in 1s ... (1/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-11-30T23:05:59Z\" level=warning msg=\"failed, retrying in 1s ... (2/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-11-30T23:06:37Z\" level=warning msg=\"failed, retrying in 1s ... (3/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi167 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-11-30T23:09:45.061230Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi038.ubrlmp on smithi038: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi038-ubrlmp\n/bin/podman: stderr Error: error inspecting object: no such container ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi038-ubrlmp\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi038.ubrlmp\n/bin/podman: stderr Error: error inspecting object: no such container ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi038.ubrlmp\nDeploy daemon haproxy.nfs.foo.smithi038.ubrlmp ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi038 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2023-11-30T23:07:52Z\" level=warning msg=\"failed, retrying in 1s ... (1/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-11-30T23:08:30Z\" level=warning msg=\"failed, retrying in 1s ... (2/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-11-30T23:09:07Z\" level=warning msg=\"failed, retrying in 1s ... (3/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi038 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-11-30T23:09:45.062547Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi038.vjkntq on smithi038: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2023-11-30T23:09:45.063688Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi167.ndkqyv on smithi167: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2023-11-30T23:12:23.150100Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi167.nhhxhd on smithi167: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi167-nhhxhd\n/bin/podman: stderr Error: error inspecting object: no such container ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi167-nhhxhd\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi167.nhhxhd\n/bin/podman: stderr Error: error inspecting object: no such container ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi167.nhhxhd\nDeploy daemon haproxy.nfs.foo.smithi167.nhhxhd ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi167 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2023-11-30T23:10:30Z\" level=warning msg=\"failed, retrying in 1s ... (1/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-11-30T23:11:08Z\" level=warning msg=\"failed, retrying in 1s ... (2/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-11-30T23:11:45Z\" level=warning msg=\"failed, retrying in 1s ... (3/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi167 -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": 9049, "virtual_ip": "10.0.31.38/16"}, "status": {"created": "2023-11-30T22:58:56.312786Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.38/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2023-11-30T22:54:41.668043Z", "last_refresh": "2023-11-30T23:09:48.452908Z", "running": 2, "size": 2}}, {"events": ["2023-11-30T22:55:50.759225Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi038:172.21.15.38=smithi038", "smithi167:172.21.15.167=smithi167"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2023-11-30T22:55:50.756456Z", "last_refresh": "2023-11-30T23:09:48.452987Z", "running": 2, "size": 2}}, {"events": ["2023-11-30T22:58:56.311581Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2023-11-30T22:58:56.308071Z", "last_refresh": "2023-11-30T23:09:52.311757Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2023-11-30T22:54:46.136630Z", "last_refresh": "2023-11-30T23:09:48.453061Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2023-11-30T22:56:33.258058Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2023-11-30T22:56:33.253117Z", "last_refresh": "2023-11-30T23:09:48.453131Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2023-11-30T22:54:43.949497Z", "last_refresh": "2023-11-30T23:09:52.311357Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2023-11-30T22:58:52.105721Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2023-11-30T22:58:59.793467Z", "last_refresh": "2023-11-30T23:09:48.453411Z", "ports": [8800], "running": 2, "size": 2}}] 2023-11-30T23:13:50.071 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2023-11-30T23:13:50.274 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:13:50 smithi038 conmon[81956]: cluster 2023-11-30T23:13:49.010601+0000 mgr.smithi038.ldalxq (mgr. 2023-11-30T23:13:50.274 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:13:50 smithi038 conmon[81956]: 14182) 908 : cluster [DBG] pgmap v591: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2023-11-30T23:13:50.275 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:13:50 smithi038 conmon[81956]: audit 2023-11-30T23:13:49.602604+0000 mgr.smithi038.ldalxq (mgr.14182) 909 : audit [DBG] from='client.15700 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-11-30T23:13:50.512 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:13:50 smithi167 conmon[87022]: cluster 2023-11-30T23:13:49.010601+0000 mgr.smithi038.ldalxq (mgr.14182) 908 : cluster [DBG] pgmap v591: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2023-11-30T23:13:50.512 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:13:50 smithi167 conmon[87022]: audit 2023-11-30T23:13:49.602604+0000 mgr.smithi038.ldalxq (mgr.14182) 909 : audit [DBG] from='client.15700 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-11-30T23:13:51.073 DEBUG:teuthology.orchestra.run.smithi038:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:0dc074ce0b0b3b4f393f56dd32ef36884ebf45a9 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 3faf8b00-8fd3-11ee-95a2-87774f69a715 -- ceph orch ls -f json 2023-11-30T23:13:52.512 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:13:52 smithi167 conmon[87022]: cluster 2023-11-30T23:13:51.011512+0000 mgr.smithi038.ldalxq (mgr.14182) 910 : cluster [DBG] pgmap v592: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2023-11-30T23:13:52.520 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:13:52 smithi038 conmon[81956]: cluster 2023-11-30T23:13:51.011512+0000 2023-11-30T23:13:52.520 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:13:52 smithi038 conmon[81956]: mgr.smithi038.ldalxq (mgr.14182) 910 : cluster [DBG] pgmap v592: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2023-11-30T23:13:52.934 INFO:teuthology.orchestra.run.smithi038.stdout: 2023-11-30T23:13:52.935 INFO:teuthology.orchestra.run.smithi038.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2023-11-30T22:54:47.122758Z", "last_refresh": "2023-11-30T23:09:52.311067Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2023-11-30T22:54:42.674972Z", "last_refresh": "2023-11-30T23:09:48.452759Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2023-11-30T22:54:45.114633Z", "last_refresh": "2023-11-30T23:09:52.311222Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2023-11-30T23:07:14.865206Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi167.igxkgw on smithi167: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi167-igxkgw\n/bin/podman: stderr Error: error inspecting object: no such container ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi167-igxkgw\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi167.igxkgw\n/bin/podman: stderr Error: error inspecting object: no such container ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi167.igxkgw\nDeploy daemon haproxy.nfs.foo.smithi167.igxkgw ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi167 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2023-11-30T23:05:21Z\" level=warning msg=\"failed, retrying in 1s ... (1/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-11-30T23:05:59Z\" level=warning msg=\"failed, retrying in 1s ... (2/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-11-30T23:06:37Z\" level=warning msg=\"failed, retrying in 1s ... (3/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi167 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-11-30T23:09:45.061230Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi038.ubrlmp on smithi038: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi038-ubrlmp\n/bin/podman: stderr Error: error inspecting object: no such container ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi038-ubrlmp\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi038.ubrlmp\n/bin/podman: stderr Error: error inspecting object: no such container ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi038.ubrlmp\nDeploy daemon haproxy.nfs.foo.smithi038.ubrlmp ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi038 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2023-11-30T23:07:52Z\" level=warning msg=\"failed, retrying in 1s ... (1/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-11-30T23:08:30Z\" level=warning msg=\"failed, retrying in 1s ... (2/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-11-30T23:09:07Z\" level=warning msg=\"failed, retrying in 1s ... (3/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi038 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-11-30T23:09:45.062547Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi038.vjkntq on smithi038: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2023-11-30T23:09:45.063688Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi167.ndkqyv on smithi167: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2023-11-30T23:12:23.150100Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi167.nhhxhd on smithi167: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi167-nhhxhd\n/bin/podman: stderr Error: error inspecting object: no such container ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi167-nhhxhd\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi167.nhhxhd\n/bin/podman: stderr Error: error inspecting object: no such container ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi167.nhhxhd\nDeploy daemon haproxy.nfs.foo.smithi167.nhhxhd ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi167 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2023-11-30T23:10:30Z\" level=warning msg=\"failed, retrying in 1s ... (1/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-11-30T23:11:08Z\" level=warning msg=\"failed, retrying in 1s ... (2/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-11-30T23:11:45Z\" level=warning msg=\"failed, retrying in 1s ... (3/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi167 -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": 9049, "virtual_ip": "10.0.31.38/16"}, "status": {"created": "2023-11-30T22:58:56.312786Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.38/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2023-11-30T22:54:41.668043Z", "last_refresh": "2023-11-30T23:09:48.452908Z", "running": 2, "size": 2}}, {"events": ["2023-11-30T22:55:50.759225Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi038:172.21.15.38=smithi038", "smithi167:172.21.15.167=smithi167"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2023-11-30T22:55:50.756456Z", "last_refresh": "2023-11-30T23:09:48.452987Z", "running": 2, "size": 2}}, {"events": ["2023-11-30T22:58:56.311581Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2023-11-30T22:58:56.308071Z", "last_refresh": "2023-11-30T23:09:52.311757Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2023-11-30T22:54:46.136630Z", "last_refresh": "2023-11-30T23:09:48.453061Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2023-11-30T22:56:33.258058Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2023-11-30T22:56:33.253117Z", "last_refresh": "2023-11-30T23:09:48.453131Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2023-11-30T22:54:43.949497Z", "last_refresh": "2023-11-30T23:09:52.311357Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2023-11-30T22:58:52.105721Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2023-11-30T22:58:59.793467Z", "last_refresh": "2023-11-30T23:09:48.453411Z", "ports": [8800], "running": 2, "size": 2}}] 2023-11-30T23:13:53.432 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2023-11-30T23:13:54.433 DEBUG:teuthology.orchestra.run.smithi038:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:0dc074ce0b0b3b4f393f56dd32ef36884ebf45a9 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 3faf8b00-8fd3-11ee-95a2-87774f69a715 -- ceph orch ls -f json 2023-11-30T23:13:54.466 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:13:54 smithi038 conmon[81956]: audit 2023-11-30T23:13:52.930294+0000 mgr.smithi038.ldalxq (mgr.14182) 911 : audit [DBG] from='client.15704 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-11-30T23:13:54.466 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:13:54 smithi038 conmon[81956]: cluster 2023-11-30T23:13:53.012086+0000 mgr.smithi038.ldalxq (mgr.14182) 912 : cluster [DBG] pgmap v593: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2023-11-30T23:13:54.512 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:13:54 smithi167 conmon[87022]: audit 2023-11-30T23:13:52.930294+0000 mgr.smithi038.ldalxq (mgr.14182) 911 : audit [DBG] from='client.15704 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-11-30T23:13:54.512 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:13:54 smithi167 conmon[87022]: cluster 2023-11-30T23:13:53.012086+0000 mgr.smithi038.ldalxq (mgr.14182) 912 : cluster [DBG] pgmap v593: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2023-11-30T23:13:56.124 INFO:teuthology.orchestra.run.smithi038.stdout: 2023-11-30T23:13:56.124 INFO:teuthology.orchestra.run.smithi038.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2023-11-30T22:54:47.122758Z", "last_refresh": "2023-11-30T23:09:52.311067Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2023-11-30T22:54:42.674972Z", "last_refresh": "2023-11-30T23:09:48.452759Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2023-11-30T22:54:45.114633Z", "last_refresh": "2023-11-30T23:09:52.311222Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2023-11-30T23:07:14.865206Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi167.igxkgw on smithi167: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi167-igxkgw\n/bin/podman: stderr Error: error inspecting object: no such container ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi167-igxkgw\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi167.igxkgw\n/bin/podman: stderr Error: error inspecting object: no such container ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi167.igxkgw\nDeploy daemon haproxy.nfs.foo.smithi167.igxkgw ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi167 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2023-11-30T23:05:21Z\" level=warning msg=\"failed, retrying in 1s ... (1/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-11-30T23:05:59Z\" level=warning msg=\"failed, retrying in 1s ... (2/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-11-30T23:06:37Z\" level=warning msg=\"failed, retrying in 1s ... (3/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi167 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-11-30T23:09:45.061230Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi038.ubrlmp on smithi038: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi038-ubrlmp\n/bin/podman: stderr Error: error inspecting object: no such container ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi038-ubrlmp\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi038.ubrlmp\n/bin/podman: stderr Error: error inspecting object: no such container ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi038.ubrlmp\nDeploy daemon haproxy.nfs.foo.smithi038.ubrlmp ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi038 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2023-11-30T23:07:52Z\" level=warning msg=\"failed, retrying in 1s ... (1/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-11-30T23:08:30Z\" level=warning msg=\"failed, retrying in 1s ... (2/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-11-30T23:09:07Z\" level=warning msg=\"failed, retrying in 1s ... (3/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi038 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-11-30T23:09:45.062547Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi038.vjkntq on smithi038: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2023-11-30T23:09:45.063688Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi167.ndkqyv on smithi167: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2023-11-30T23:12:23.150100Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi167.nhhxhd on smithi167: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi167-nhhxhd\n/bin/podman: stderr Error: error inspecting object: no such container ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi167-nhhxhd\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi167.nhhxhd\n/bin/podman: stderr Error: error inspecting object: no such container ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi167.nhhxhd\nDeploy daemon haproxy.nfs.foo.smithi167.nhhxhd ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi167 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2023-11-30T23:10:30Z\" level=warning msg=\"failed, retrying in 1s ... (1/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-11-30T23:11:08Z\" level=warning msg=\"failed, retrying in 1s ... (2/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-11-30T23:11:45Z\" level=warning msg=\"failed, retrying in 1s ... (3/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi167 -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": 9049, "virtual_ip": "10.0.31.38/16"}, "status": {"created": "2023-11-30T22:58:56.312786Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.38/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2023-11-30T22:54:41.668043Z", "last_refresh": "2023-11-30T23:09:48.452908Z", "running": 2, "size": 2}}, {"events": ["2023-11-30T22:55:50.759225Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi038:172.21.15.38=smithi038", "smithi167:172.21.15.167=smithi167"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2023-11-30T22:55:50.756456Z", "last_refresh": "2023-11-30T23:09:48.452987Z", "running": 2, "size": 2}}, {"events": ["2023-11-30T22:58:56.311581Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2023-11-30T22:58:56.308071Z", "last_refresh": "2023-11-30T23:09:52.311757Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2023-11-30T22:54:46.136630Z", "last_refresh": "2023-11-30T23:09:48.453061Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2023-11-30T22:56:33.258058Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2023-11-30T22:56:33.253117Z", "last_refresh": "2023-11-30T23:09:48.453131Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2023-11-30T22:54:43.949497Z", "last_refresh": "2023-11-30T23:09:52.311357Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2023-11-30T22:58:52.105721Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2023-11-30T22:58:59.793467Z", "last_refresh": "2023-11-30T23:09:48.453411Z", "ports": [8800], "running": 2, "size": 2}}] 2023-11-30T23:13:56.512 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:13:56 smithi167 conmon[87022]: cluster 2023-11-30T23:13:55.012825+0000 mgr.smithi038.ldalxq (mgr.14182) 913 : cluster [DBG] pgmap v594: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2023-11-30T23:13:56.524 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:13:56 smithi038 conmon[81956]: cluster 2023-11-30T23:13:55.012825+0000 mgr.smithi038.ldalxq (mgr.14182) 913 : cluster [DBG] pgmap v594: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2023-11-30T23:13:56.596 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2023-11-30T23:13:57.512 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:13:57 smithi167 conmon[87022]: audit 2023-11-30T23:13:56.119577+0000 mgr.smithi038.ldalxq (mgr.14182) 914 : audit [DBG] from='client.15708 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-11-30T23:13:57.524 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:13:57 smithi038 conmon[81956]: audit 2023-11-30T23:13:56.119577+0000 mgr.smithi038.ldalxq (mgr. 2023-11-30T23:13:57.524 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:13:57 smithi038 conmon[81956]: 14182) 914 : audit [DBG] from='client.15708 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-11-30T23:13:57.597 DEBUG:teuthology.orchestra.run.smithi038:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:0dc074ce0b0b3b4f393f56dd32ef36884ebf45a9 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 3faf8b00-8fd3-11ee-95a2-87774f69a715 -- ceph orch ls -f json 2023-11-30T23:13:58.492 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:13:58 smithi038 conmon[81956]: cluster 2023-11-30T23:13:57.013455+0000 2023-11-30T23:13:58.493 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:13:58 smithi038 conmon[81956]: mgr.smithi038.ldalxq (mgr.14182) 915 : cluster [DBG] pgmap v595: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2023-11-30T23:13:58.513 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:13:58 smithi167 conmon[87022]: cluster 2023-11-30T23:13:57.013455+0000 mgr.smithi038.ldalxq (mgr.14182) 915 : cluster [DBG] pgmap v595: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2023-11-30T23:13:59.305 INFO:teuthology.orchestra.run.smithi038.stdout: 2023-11-30T23:13:59.305 INFO:teuthology.orchestra.run.smithi038.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2023-11-30T22:54:47.122758Z", "last_refresh": "2023-11-30T23:09:52.311067Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2023-11-30T22:54:42.674972Z", "last_refresh": "2023-11-30T23:09:48.452759Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2023-11-30T22:54:45.114633Z", "last_refresh": "2023-11-30T23:09:52.311222Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2023-11-30T23:07:14.865206Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi167.igxkgw on smithi167: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi167-igxkgw\n/bin/podman: stderr Error: error inspecting object: no such container ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi167-igxkgw\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi167.igxkgw\n/bin/podman: stderr Error: error inspecting object: no such container ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi167.igxkgw\nDeploy daemon haproxy.nfs.foo.smithi167.igxkgw ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi167 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2023-11-30T23:05:21Z\" level=warning msg=\"failed, retrying in 1s ... (1/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-11-30T23:05:59Z\" level=warning msg=\"failed, retrying in 1s ... (2/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-11-30T23:06:37Z\" level=warning msg=\"failed, retrying in 1s ... (3/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi167 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-11-30T23:09:45.061230Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi038.ubrlmp on smithi038: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi038-ubrlmp\n/bin/podman: stderr Error: error inspecting object: no such container ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi038-ubrlmp\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi038.ubrlmp\n/bin/podman: stderr Error: error inspecting object: no such container ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi038.ubrlmp\nDeploy daemon haproxy.nfs.foo.smithi038.ubrlmp ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi038 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2023-11-30T23:07:52Z\" level=warning msg=\"failed, retrying in 1s ... (1/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-11-30T23:08:30Z\" level=warning msg=\"failed, retrying in 1s ... (2/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-11-30T23:09:07Z\" level=warning msg=\"failed, retrying in 1s ... (3/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi038 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-11-30T23:09:45.062547Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi038.vjkntq on smithi038: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2023-11-30T23:09:45.063688Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi167.ndkqyv on smithi167: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2023-11-30T23:12:23.150100Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi167.nhhxhd on smithi167: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi167-nhhxhd\n/bin/podman: stderr Error: error inspecting object: no such container ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi167-nhhxhd\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi167.nhhxhd\n/bin/podman: stderr Error: error inspecting object: no such container ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi167.nhhxhd\nDeploy daemon haproxy.nfs.foo.smithi167.nhhxhd ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi167 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2023-11-30T23:10:30Z\" level=warning msg=\"failed, retrying in 1s ... (1/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-11-30T23:11:08Z\" level=warning msg=\"failed, retrying in 1s ... (2/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-11-30T23:11:45Z\" level=warning msg=\"failed, retrying in 1s ... (3/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi167 -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": 9049, "virtual_ip": "10.0.31.38/16"}, "status": {"created": "2023-11-30T22:58:56.312786Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.38/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2023-11-30T22:54:41.668043Z", "last_refresh": "2023-11-30T23:09:48.452908Z", "running": 2, "size": 2}}, {"events": ["2023-11-30T22:55:50.759225Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi038:172.21.15.38=smithi038", "smithi167:172.21.15.167=smithi167"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2023-11-30T22:55:50.756456Z", "last_refresh": "2023-11-30T23:09:48.452987Z", "running": 2, "size": 2}}, {"events": ["2023-11-30T22:58:56.311581Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2023-11-30T22:58:56.308071Z", "last_refresh": "2023-11-30T23:09:52.311757Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2023-11-30T22:54:46.136630Z", "last_refresh": "2023-11-30T23:09:48.453061Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2023-11-30T22:56:33.258058Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2023-11-30T22:56:33.253117Z", "last_refresh": "2023-11-30T23:09:48.453131Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2023-11-30T22:54:43.949497Z", "last_refresh": "2023-11-30T23:09:52.311357Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2023-11-30T22:58:52.105721Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2023-11-30T22:58:59.793467Z", "last_refresh": "2023-11-30T23:09:48.453411Z", "ports": [8800], "running": 2, "size": 2}}] 2023-11-30T23:13:59.755 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2023-11-30T23:14:00.512 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:14:00 smithi167 conmon[87022]: cluster 2023-11-30T23:13:59.014020+0000 mgr.smithi038.ldalxq (mgr.14182) 916 : cluster [DBG] pgmap v596: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2023-11-30T23:14:00.512 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:14:00 smithi167 conmon[87022]: audit 2023-11-30T23:13:59.301123+0000 mgr.smithi038.ldalxq (mgr.14182) 917 : audit [DBG] from='client.15712 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-11-30T23:14:00.524 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:14:00 smithi038 conmon[81956]: cluster 2023-11-30T23:13:59.014020 2023-11-30T23:14:00.524 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:14:00 smithi038 conmon[81956]: +0000 mgr.smithi038.ldalxq (mgr.14182) 916 : cluster [DBG] pgmap v596: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2023-11-30T23:14:00.524 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:14:00 smithi038 conmon[81956]: audit 2023-11-30T23:13:59.301123+0000 mgr.smithi038.ldalxq (mgr.14182) 917 : audit [DBG] from='client.15712 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-11-30T23:14:00.756 DEBUG:teuthology.orchestra.run.smithi038:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:0dc074ce0b0b3b4f393f56dd32ef36884ebf45a9 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 3faf8b00-8fd3-11ee-95a2-87774f69a715 -- ceph orch ls -f json 2023-11-30T23:14:02.503 INFO:teuthology.orchestra.run.smithi038.stdout: 2023-11-30T23:14:02.503 INFO:teuthology.orchestra.run.smithi038.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2023-11-30T22:54:47.122758Z", "last_refresh": "2023-11-30T23:09:52.311067Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2023-11-30T22:54:42.674972Z", "last_refresh": "2023-11-30T23:09:48.452759Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2023-11-30T22:54:45.114633Z", "last_refresh": "2023-11-30T23:09:52.311222Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2023-11-30T23:07:14.865206Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi167.igxkgw on smithi167: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi167-igxkgw\n/bin/podman: stderr Error: error inspecting object: no such container ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi167-igxkgw\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi167.igxkgw\n/bin/podman: stderr Error: error inspecting object: no such container ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi167.igxkgw\nDeploy daemon haproxy.nfs.foo.smithi167.igxkgw ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi167 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2023-11-30T23:05:21Z\" level=warning msg=\"failed, retrying in 1s ... (1/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-11-30T23:05:59Z\" level=warning msg=\"failed, retrying in 1s ... (2/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-11-30T23:06:37Z\" level=warning msg=\"failed, retrying in 1s ... (3/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi167 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-11-30T23:09:45.061230Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi038.ubrlmp on smithi038: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi038-ubrlmp\n/bin/podman: stderr Error: error inspecting object: no such container ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi038-ubrlmp\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi038.ubrlmp\n/bin/podman: stderr Error: error inspecting object: no such container ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi038.ubrlmp\nDeploy daemon haproxy.nfs.foo.smithi038.ubrlmp ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi038 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2023-11-30T23:07:52Z\" level=warning msg=\"failed, retrying in 1s ... (1/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-11-30T23:08:30Z\" level=warning msg=\"failed, retrying in 1s ... (2/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-11-30T23:09:07Z\" level=warning msg=\"failed, retrying in 1s ... (3/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi038 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-11-30T23:09:45.062547Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi038.vjkntq on smithi038: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2023-11-30T23:09:45.063688Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi167.ndkqyv on smithi167: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2023-11-30T23:12:23.150100Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi167.nhhxhd on smithi167: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi167-nhhxhd\n/bin/podman: stderr Error: error inspecting object: no such container ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi167-nhhxhd\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi167.nhhxhd\n/bin/podman: stderr Error: error inspecting object: no such container ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi167.nhhxhd\nDeploy daemon haproxy.nfs.foo.smithi167.nhhxhd ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi167 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2023-11-30T23:10:30Z\" level=warning msg=\"failed, retrying in 1s ... (1/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-11-30T23:11:08Z\" level=warning msg=\"failed, retrying in 1s ... (2/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-11-30T23:11:45Z\" level=warning msg=\"failed, retrying in 1s ... (3/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi167 -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": 9049, "virtual_ip": "10.0.31.38/16"}, "status": {"created": "2023-11-30T22:58:56.312786Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.38/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2023-11-30T22:54:41.668043Z", "last_refresh": "2023-11-30T23:09:48.452908Z", "running": 2, "size": 2}}, {"events": ["2023-11-30T22:55:50.759225Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi038:172.21.15.38=smithi038", "smithi167:172.21.15.167=smithi167"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2023-11-30T22:55:50.756456Z", "last_refresh": "2023-11-30T23:09:48.452987Z", "running": 2, "size": 2}}, {"events": ["2023-11-30T22:58:56.311581Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2023-11-30T22:58:56.308071Z", "last_refresh": "2023-11-30T23:09:52.311757Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2023-11-30T22:54:46.136630Z", "last_refresh": "2023-11-30T23:09:48.453061Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2023-11-30T22:56:33.258058Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2023-11-30T22:56:33.253117Z", "last_refresh": "2023-11-30T23:09:48.453131Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2023-11-30T22:54:43.949497Z", "last_refresh": "2023-11-30T23:09:52.311357Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2023-11-30T22:58:52.105721Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2023-11-30T22:58:59.793467Z", "last_refresh": "2023-11-30T23:09:48.453411Z", "ports": [8800], "running": 2, "size": 2}}] 2023-11-30T23:14:02.512 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:14:02 smithi167 conmon[87022]: cluster 2023-11-30T23:14:01.014754+0000 mgr.smithi038.ldalxq (mgr.14182) 918 : cluster [DBG] pgmap v597: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2023-11-30T23:14:02.512 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:14:02 smithi167 conmon[87022]: 2023-11-30T23:14:02.524 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:14:02 smithi038 conmon[81956]: cluster 2023-11-30T23:14:01.014754+0000 mgr.smithi038.ldalxq (mgr.14182) 918 : cluster [DBG] pgmap v597: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2023-11-30T23:14:02.906 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2023-11-30T23:14:03.513 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:14:03 smithi167 conmon[87022]: audit 2023-11-30T23:14:02.499218+0000 mgr.smithi038.ldalxq (mgr.14182) 919 : audit [DBG] from='client.15716 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-11-30T23:14:03.524 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:14:03 smithi038 conmon[81956]: audit 2023-11-30T23:14:02.499218+0000 mgr.smithi038.ldalxq (mgr.14182) 919 : audit [DBG] from='client.15716 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-11-30T23:14:03.907 DEBUG:teuthology.orchestra.run.smithi038:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:0dc074ce0b0b3b4f393f56dd32ef36884ebf45a9 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 3faf8b00-8fd3-11ee-95a2-87774f69a715 -- ceph orch ls -f json 2023-11-30T23:14:04.274 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:14:04 smithi038 conmon[81956]: cluster 2023-11-30T23:14:03.015517+0000 mgr.smithi038.ldalxq (mgr.14182) 920 : cluster [DBG] pgmap v598: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2023-11-30T23:14:04.512 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:14:04 smithi167 conmon[87022]: cluster 2023-11-30T23:14:03.015517+0000 mgr.smithi038.ldalxq (mgr.14182) 920 : cluster [DBG] pgmap v598: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2023-11-30T23:14:05.634 INFO:teuthology.orchestra.run.smithi038.stdout: 2023-11-30T23:14:05.634 INFO:teuthology.orchestra.run.smithi038.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2023-11-30T22:54:47.122758Z", "last_refresh": "2023-11-30T23:09:52.311067Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2023-11-30T22:54:42.674972Z", "last_refresh": "2023-11-30T23:09:48.452759Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2023-11-30T22:54:45.114633Z", "last_refresh": "2023-11-30T23:09:52.311222Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2023-11-30T23:07:14.865206Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi167.igxkgw on smithi167: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi167-igxkgw\n/bin/podman: stderr Error: error inspecting object: no such container ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi167-igxkgw\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi167.igxkgw\n/bin/podman: stderr Error: error inspecting object: no such container ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi167.igxkgw\nDeploy daemon haproxy.nfs.foo.smithi167.igxkgw ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi167 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2023-11-30T23:05:21Z\" level=warning msg=\"failed, retrying in 1s ... (1/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-11-30T23:05:59Z\" level=warning msg=\"failed, retrying in 1s ... (2/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-11-30T23:06:37Z\" level=warning msg=\"failed, retrying in 1s ... (3/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi167 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-11-30T23:09:45.061230Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi038.ubrlmp on smithi038: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi038-ubrlmp\n/bin/podman: stderr Error: error inspecting object: no such container ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi038-ubrlmp\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi038.ubrlmp\n/bin/podman: stderr Error: error inspecting object: no such container ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi038.ubrlmp\nDeploy daemon haproxy.nfs.foo.smithi038.ubrlmp ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi038 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2023-11-30T23:07:52Z\" level=warning msg=\"failed, retrying in 1s ... (1/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-11-30T23:08:30Z\" level=warning msg=\"failed, retrying in 1s ... (2/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-11-30T23:09:07Z\" level=warning msg=\"failed, retrying in 1s ... (3/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi038 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-11-30T23:09:45.062547Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi038.vjkntq on smithi038: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2023-11-30T23:09:45.063688Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi167.ndkqyv on smithi167: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2023-11-30T23:12:23.150100Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi167.nhhxhd on smithi167: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi167-nhhxhd\n/bin/podman: stderr Error: error inspecting object: no such container ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi167-nhhxhd\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi167.nhhxhd\n/bin/podman: stderr Error: error inspecting object: no such container ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi167.nhhxhd\nDeploy daemon haproxy.nfs.foo.smithi167.nhhxhd ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi167 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2023-11-30T23:10:30Z\" level=warning msg=\"failed, retrying in 1s ... (1/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-11-30T23:11:08Z\" level=warning msg=\"failed, retrying in 1s ... (2/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-11-30T23:11:45Z\" level=warning msg=\"failed, retrying in 1s ... (3/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi167 -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": 9049, "virtual_ip": "10.0.31.38/16"}, "status": {"created": "2023-11-30T22:58:56.312786Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.38/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2023-11-30T22:54:41.668043Z", "last_refresh": "2023-11-30T23:09:48.452908Z", "running": 2, "size": 2}}, {"events": ["2023-11-30T22:55:50.759225Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi038:172.21.15.38=smithi038", "smithi167:172.21.15.167=smithi167"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2023-11-30T22:55:50.756456Z", "last_refresh": "2023-11-30T23:09:48.452987Z", "running": 2, "size": 2}}, {"events": ["2023-11-30T22:58:56.311581Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2023-11-30T22:58:56.308071Z", "last_refresh": "2023-11-30T23:09:52.311757Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2023-11-30T22:54:46.136630Z", "last_refresh": "2023-11-30T23:09:48.453061Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2023-11-30T22:56:33.258058Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2023-11-30T22:56:33.253117Z", "last_refresh": "2023-11-30T23:09:48.453131Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2023-11-30T22:54:43.949497Z", "last_refresh": "2023-11-30T23:09:52.311357Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2023-11-30T22:58:52.105721Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2023-11-30T22:58:59.793467Z", "last_refresh": "2023-11-30T23:09:48.453411Z", "ports": [8800], "running": 2, "size": 2}}] 2023-11-30T23:14:06.068 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2023-11-30T23:14:06.512 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:14:06 smithi167 conmon[87022]: cluster 2023-11-30T23:14:05.016226+0000 mgr.smithi038.ldalxq (mgr.14182) 921 : cluster [DBG] pgmap v599: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2023-11-30T23:14:06.512 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:14:06 smithi167 conmon[87022]: audit 2023-11-30T23:14:05.629747+0000 mgr.smithi038.ldalxq (mgr.14182) 922 : audit [DBG] from='client.15720 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-11-30T23:14:06.523 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:14:06 smithi038 conmon[81956]: cluster 2023-11-30T23:14:05.016226+0000 mgr.smithi038.ldalxq (mgr.14182) 921 : cluster [DBG] pgmap v599: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2023-11-30T23:14:06.524 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:14:06 smithi038 conmon[81956]: audit 2023-11-30T23:14:05.629747+0000 mgr.smithi038.ldalxq (mgr.14182) 922 : audit [DBG] from='client.15720 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-11-30T23:14:07.069 DEBUG:teuthology.orchestra.run.smithi038:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:0dc074ce0b0b3b4f393f56dd32ef36884ebf45a9 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 3faf8b00-8fd3-11ee-95a2-87774f69a715 -- ceph orch ls -f json 2023-11-30T23:14:08.197 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:14:07 smithi038 conmon[81956]: cluster 2023-11-30T 2023-11-30T23:14:08.197 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:14:07 smithi038 conmon[81956]: 23:14:07.016831+0000 mgr.smithi038.ldalxq (mgr.14182) 923 : cluster [DBG] pgmap v600: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2023-11-30T23:14:08.262 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:14:07 smithi167 conmon[87022]: cluster 2023-11-30T23:14:07.016831+0000 mgr.smithi038.ldalxq (mgr.14182) 923 : cluster [DBG] pgmap v600: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2023-11-30T23:14:08.890 INFO:teuthology.orchestra.run.smithi038.stdout: 2023-11-30T23:14:08.890 INFO:teuthology.orchestra.run.smithi038.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2023-11-30T22:54:47.122758Z", "last_refresh": "2023-11-30T23:09:52.311067Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2023-11-30T22:54:42.674972Z", "last_refresh": "2023-11-30T23:09:48.452759Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2023-11-30T22:54:45.114633Z", "last_refresh": "2023-11-30T23:09:52.311222Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2023-11-30T23:07:14.865206Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi167.igxkgw on smithi167: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi167-igxkgw\n/bin/podman: stderr Error: error inspecting object: no such container ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi167-igxkgw\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi167.igxkgw\n/bin/podman: stderr Error: error inspecting object: no such container ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi167.igxkgw\nDeploy daemon haproxy.nfs.foo.smithi167.igxkgw ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi167 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2023-11-30T23:05:21Z\" level=warning msg=\"failed, retrying in 1s ... (1/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-11-30T23:05:59Z\" level=warning msg=\"failed, retrying in 1s ... (2/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-11-30T23:06:37Z\" level=warning msg=\"failed, retrying in 1s ... (3/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi167 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-11-30T23:09:45.061230Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi038.ubrlmp on smithi038: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi038-ubrlmp\n/bin/podman: stderr Error: error inspecting object: no such container ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi038-ubrlmp\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi038.ubrlmp\n/bin/podman: stderr Error: error inspecting object: no such container ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi038.ubrlmp\nDeploy daemon haproxy.nfs.foo.smithi038.ubrlmp ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi038 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2023-11-30T23:07:52Z\" level=warning msg=\"failed, retrying in 1s ... (1/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-11-30T23:08:30Z\" level=warning msg=\"failed, retrying in 1s ... (2/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-11-30T23:09:07Z\" level=warning msg=\"failed, retrying in 1s ... (3/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi038 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-11-30T23:09:45.062547Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi038.vjkntq on smithi038: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2023-11-30T23:09:45.063688Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi167.ndkqyv on smithi167: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2023-11-30T23:12:23.150100Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi167.nhhxhd on smithi167: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi167-nhhxhd\n/bin/podman: stderr Error: error inspecting object: no such container ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi167-nhhxhd\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi167.nhhxhd\n/bin/podman: stderr Error: error inspecting object: no such container ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi167.nhhxhd\nDeploy daemon haproxy.nfs.foo.smithi167.nhhxhd ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi167 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2023-11-30T23:10:30Z\" level=warning msg=\"failed, retrying in 1s ... (1/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-11-30T23:11:08Z\" level=warning msg=\"failed, retrying in 1s ... (2/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-11-30T23:11:45Z\" level=warning msg=\"failed, retrying in 1s ... (3/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi167 -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": 9049, "virtual_ip": "10.0.31.38/16"}, "status": {"created": "2023-11-30T22:58:56.312786Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.38/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2023-11-30T22:54:41.668043Z", "last_refresh": "2023-11-30T23:09:48.452908Z", "running": 2, "size": 2}}, {"events": ["2023-11-30T22:55:50.759225Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi038:172.21.15.38=smithi038", "smithi167:172.21.15.167=smithi167"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2023-11-30T22:55:50.756456Z", "last_refresh": "2023-11-30T23:09:48.452987Z", "running": 2, "size": 2}}, {"events": ["2023-11-30T22:58:56.311581Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2023-11-30T22:58:56.308071Z", "last_refresh": "2023-11-30T23:09:52.311757Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2023-11-30T22:54:46.136630Z", "last_refresh": "2023-11-30T23:09:48.453061Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2023-11-30T22:56:33.258058Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2023-11-30T22:56:33.253117Z", "last_refresh": "2023-11-30T23:09:48.453131Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2023-11-30T22:54:43.949497Z", "last_refresh": "2023-11-30T23:09:52.311357Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2023-11-30T22:58:52.105721Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2023-11-30T22:58:59.793467Z", "last_refresh": "2023-11-30T23:09:48.453411Z", "ports": [8800], "running": 2, "size": 2}}] 2023-11-30T23:14:09.321 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2023-11-30T23:14:10.322 DEBUG:teuthology.orchestra.run.smithi038:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:0dc074ce0b0b3b4f393f56dd32ef36884ebf45a9 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 3faf8b00-8fd3-11ee-95a2-87774f69a715 -- ceph orch ls -f json 2023-11-30T23:14:10.352 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:14:10 smithi038 conmon[81956]: audit 2023-11-30T23:14:08 2023-11-30T23:14:10.352 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:14:10 smithi038 conmon[81956]: .886380+0000 mgr.smithi038.ldalxq (mgr.14182) 924 : audit [DBG] from='client.15724 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-11-30T23:14:10.352 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:14:10 smithi038 conmon[81956]: cluster 2023-11 2023-11-30T23:14:10.352 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:14:10 smithi038 conmon[81956]: -30T23:14:09.017337+0000 mgr.smithi038.ldalxq (mgr.14182) 925 : cluster [DBG] pgmap v601: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2023-11-30T23:14:10.512 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:14:10 smithi167 conmon[87022]: audit 2023-11-30T23:14:08.886380+0000 mgr.smithi038.ldalxq (mgr.14182) 924 : audit [DBG] 2023-11-30T23:14:10.512 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:14:10 smithi167 conmon[87022]: from='client.15724 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-11-30T23:14:10.513 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:14:10 smithi167 conmon[87022]: cluster 2023-11-30T23:14:09.017337+0000 mgr.smithi038.ldalxq (mgr.14182) 925 : cluster [DBG] pgmap v601: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2023-11-30T23:14:12.238 INFO:teuthology.orchestra.run.smithi038.stdout: 2023-11-30T23:14:12.359 INFO:teuthology.orchestra.run.smithi038.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2023-11-30T22:54:47.122758Z", "last_refresh": "2023-11-30T23:09:52.311067Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2023-11-30T22:54:42.674972Z", "last_refresh": "2023-11-30T23:09:48.452759Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2023-11-30T22:54:45.114633Z", "last_refresh": "2023-11-30T23:09:52.311222Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2023-11-30T23:07:14.865206Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi167.igxkgw on smithi167: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi167-igxkgw\n/bin/podman: stderr Error: error inspecting object: no such container ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi167-igxkgw\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi167.igxkgw\n/bin/podman: stderr Error: error inspecting object: no such container ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi167.igxkgw\nDeploy daemon haproxy.nfs.foo.smithi167.igxkgw ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi167 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2023-11-30T23:05:21Z\" level=warning msg=\"failed, retrying in 1s ... (1/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-11-30T23:05:59Z\" level=warning msg=\"failed, retrying in 1s ... (2/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-11-30T23:06:37Z\" level=warning msg=\"failed, retrying in 1s ... (3/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi167 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-11-30T23:09:45.061230Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi038.ubrlmp on smithi038: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi038-ubrlmp\n/bin/podman: stderr Error: error inspecting object: no such container ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi038-ubrlmp\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi038.ubrlmp\n/bin/podman: stderr Error: error inspecting object: no such container ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi038.ubrlmp\nDeploy daemon haproxy.nfs.foo.smithi038.ubrlmp ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi038 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2023-11-30T23:07:52Z\" level=warning msg=\"failed, retrying in 1s ... (1/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-11-30T23:08:30Z\" level=warning msg=\"failed, retrying in 1s ... (2/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-11-30T23:09:07Z\" level=warning msg=\"failed, retrying in 1s ... (3/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi038 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-11-30T23:09:45.062547Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi038.vjkntq on smithi038: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2023-11-30T23:09:45.063688Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi167.ndkqyv on smithi167: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2023-11-30T23:12:23.150100Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi167.nhhxhd on smithi167: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi167-nhhxhd\n/bin/podman: stderr Error: error inspecting object: no such container ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi167-nhhxhd\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi167.nhhxhd\n/bin/podman: stderr Error: error inspecting object: no such container ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi167.nhhxhd\nDeploy daemon haproxy.nfs.foo.smithi167.nhhxhd ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi167 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2023-11-30T23:10:30Z\" level=warning msg=\"failed, retrying in 1s ... (1/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-11-30T23:11:08Z\" level=warning msg=\"failed, retrying in 1s ... (2/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-11-30T23:11:45Z\" level=warning msg=\"failed, retrying in 1s ... (3/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi167 -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": 9049, "virtual_ip": "10.0.31.38/16"}, "status": {"created": "2023-11-30T22:58:56.312786Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.38/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2023-11-30T22:54:41.668043Z", "last_refresh": "2023-11-30T23:09:48.452908Z", "running": 2, "size": 2}}, {"events": ["2023-11-30T22:55:50.759225Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi038:172.21.15.38=smithi038", "smithi167:172.21.15.167=smithi167"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2023-11-30T22:55:50.756456Z", "last_refresh": "2023-11-30T23:09:48.452987Z", "running": 2, "size": 2}}, {"events": ["2023-11-30T22:58:56.311581Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2023-11-30T22:58:56.308071Z", "last_refresh": "2023-11-30T23:09:52.311757Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2023-11-30T22:54:46.136630Z", "last_refresh": "2023-11-30T23:09:48.453061Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2023-11-30T22:56:33.258058Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2023-11-30T22:56:33.253117Z", "last_refresh": "2023-11-30T23:09:48.453131Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2023-11-30T22:54:43.949497Z", "last_refresh": "2023-11-30T23:09:52.311357Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2023-11-30T22:58:52.105721Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2023-11-30T22:58:59.793467Z", "last_refresh": "2023-11-30T23:09:48.453411Z", "ports": [8800], "running": 2, "size": 2}}] 2023-11-30T23:14:12.360 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:14:12 smithi038 conmon[81956]: cluster 2023-11-30T23:14:11.018139+0000 mgr.smithi038.ldalxq (mgr.14182) 926 : cluster [DBG] pgmap v602: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2023-11-30T23:14:12.512 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:14:12 smithi167 conmon[87022]: cluster 2023-11-30T23:14:11.018139+0000 mgr.smithi038.ldalxq (mgr.14182) 926 : cluster [DBG] pgmap v602: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2023-11-30T23:14:12.687 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2023-11-30T23:14:13.513 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:14:13 smithi167 conmon[87022]: audit 2023-11-30T23:14:12.233514+0000 mgr.smithi038.ldalxq (mgr.14182) 927 : audit [DBG] 2023-11-30T23:14:13.513 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:14:13 smithi167 conmon[87022]: from='client.15728 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-11-30T23:14:13.524 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:14:13 smithi038 conmon[81956]: audit 2023-11-30T23:14 2023-11-30T23:14:13.524 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:14:13 smithi038 conmon[81956]: :12.233514+0000 mgr.smithi038.ldalxq (mgr.14182) 927 : audit [DBG] from='client.15728 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-11-30T23:14:13.688 DEBUG:teuthology.orchestra.run.smithi038:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:0dc074ce0b0b3b4f393f56dd32ef36884ebf45a9 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 3faf8b00-8fd3-11ee-95a2-87774f69a715 -- ceph orch ls -f json 2023-11-30T23:14:14.453 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:14:14 smithi038 conmon[81956]: cluster 2023-11-30T23:14:13.018735+0000 mgr.smithi038.ldalxq (mgr.14182) 928 : cluster [DBG] pgmap v603: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2023-11-30T23:14:14.512 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:14:14 smithi167 conmon[87022]: cluster 2023-11-30T23:14:13.018735+0000 mgr.smithi038.ldalxq (mgr.14182) 928 : cluster [DBG] pgmap v603: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2023-11-30T23:14:15.384 INFO:teuthology.orchestra.run.smithi038.stdout: 2023-11-30T23:14:15.384 INFO:teuthology.orchestra.run.smithi038.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2023-11-30T22:54:47.122758Z", "last_refresh": "2023-11-30T23:09:52.311067Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2023-11-30T22:54:42.674972Z", "last_refresh": "2023-11-30T23:09:48.452759Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2023-11-30T22:54:45.114633Z", "last_refresh": "2023-11-30T23:09:52.311222Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2023-11-30T23:07:14.865206Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi167.igxkgw on smithi167: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi167-igxkgw\n/bin/podman: stderr Error: error inspecting object: no such container ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi167-igxkgw\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi167.igxkgw\n/bin/podman: stderr Error: error inspecting object: no such container ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi167.igxkgw\nDeploy daemon haproxy.nfs.foo.smithi167.igxkgw ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi167 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2023-11-30T23:05:21Z\" level=warning msg=\"failed, retrying in 1s ... (1/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-11-30T23:05:59Z\" level=warning msg=\"failed, retrying in 1s ... (2/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-11-30T23:06:37Z\" level=warning msg=\"failed, retrying in 1s ... (3/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi167 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-11-30T23:09:45.061230Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi038.ubrlmp on smithi038: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi038-ubrlmp\n/bin/podman: stderr Error: error inspecting object: no such container ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi038-ubrlmp\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi038.ubrlmp\n/bin/podman: stderr Error: error inspecting object: no such container ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi038.ubrlmp\nDeploy daemon haproxy.nfs.foo.smithi038.ubrlmp ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi038 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2023-11-30T23:07:52Z\" level=warning msg=\"failed, retrying in 1s ... (1/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-11-30T23:08:30Z\" level=warning msg=\"failed, retrying in 1s ... (2/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-11-30T23:09:07Z\" level=warning msg=\"failed, retrying in 1s ... (3/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi038 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-11-30T23:09:45.062547Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi038.vjkntq on smithi038: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2023-11-30T23:09:45.063688Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi167.ndkqyv on smithi167: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2023-11-30T23:12:23.150100Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi167.nhhxhd on smithi167: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi167-nhhxhd\n/bin/podman: stderr Error: error inspecting object: no such container ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi167-nhhxhd\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi167.nhhxhd\n/bin/podman: stderr Error: error inspecting object: no such container ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi167.nhhxhd\nDeploy daemon haproxy.nfs.foo.smithi167.nhhxhd ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi167 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2023-11-30T23:10:30Z\" level=warning msg=\"failed, retrying in 1s ... (1/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-11-30T23:11:08Z\" level=warning msg=\"failed, retrying in 1s ... (2/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-11-30T23:11:45Z\" level=warning msg=\"failed, retrying in 1s ... (3/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi167 -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": 9049, "virtual_ip": "10.0.31.38/16"}, "status": {"created": "2023-11-30T22:58:56.312786Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.38/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2023-11-30T22:54:41.668043Z", "last_refresh": "2023-11-30T23:09:48.452908Z", "running": 2, "size": 2}}, {"events": ["2023-11-30T22:55:50.759225Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi038:172.21.15.38=smithi038", "smithi167:172.21.15.167=smithi167"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2023-11-30T22:55:50.756456Z", "last_refresh": "2023-11-30T23:09:48.452987Z", "running": 2, "size": 2}}, {"events": ["2023-11-30T22:58:56.311581Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2023-11-30T22:58:56.308071Z", "last_refresh": "2023-11-30T23:09:52.311757Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2023-11-30T22:54:46.136630Z", "last_refresh": "2023-11-30T23:09:48.453061Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2023-11-30T22:56:33.258058Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2023-11-30T22:56:33.253117Z", "last_refresh": "2023-11-30T23:09:48.453131Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2023-11-30T22:54:43.949497Z", "last_refresh": "2023-11-30T23:09:52.311357Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2023-11-30T22:58:52.105721Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2023-11-30T22:58:59.793467Z", "last_refresh": "2023-11-30T23:09:48.453411Z", "ports": [8800], "running": 2, "size": 2}}] 2023-11-30T23:14:15.841 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2023-11-30T23:14:16.512 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:14:16 smithi167 conmon[87022]: cluster 2023-11-30T23:14:15.019496+0000 mgr.smithi038.ldalxq (mgr.14182) 929 : cluster [DBG] pgmap v604: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2023-11-30T23:14:16.512 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:14:16 smithi167 conmon[87022]: audit 2023-11-30T23:14:15.379655+0000 mgr.smithi038.ldalxq (mgr.14182) 930 : audit [DBG] from='client.15732 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-11-30T23:14:16.524 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:14:16 smithi038 conmon[81956]: cluster 2023-11-30T23:14:15.019496 2023-11-30T23:14:16.524 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:14:16 smithi038 conmon[81956]: +0000 mgr.smithi038.ldalxq (mgr.14182) 929 : cluster [DBG] pgmap v604: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2023-11-30T23:14:16.524 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:14:16 smithi038 conmon[81956]: audit 2023-11-30T23:14:15.379655+0000 mgr.smithi038.ldalxq (mgr.14182) 930 : audit [DBG] from='client.15732 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-11-30T23:14:16.842 DEBUG:teuthology.orchestra.run.smithi038:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:0dc074ce0b0b3b4f393f56dd32ef36884ebf45a9 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 3faf8b00-8fd3-11ee-95a2-87774f69a715 -- ceph orch ls -f json 2023-11-30T23:14:18.262 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:14:17 smithi167 conmon[87022]: cluster 2023-11-30T23:14:17.020013+0000 mgr.smithi038.ldalxq (mgr.14182) 931 : cluster [DBG] pgmap v605: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2023-11-30T23:14:18.274 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:14:17 smithi038 conmon[81956]: cluster 2023-11-30T23:14:17.020013+0000 mgr.smithi038.ldalxq (mgr.14182) 931 : cluster [DBG] pgmap v605: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2023-11-30T23:14:18.678 INFO:teuthology.orchestra.run.smithi038.stdout: 2023-11-30T23:14:18.678 INFO:teuthology.orchestra.run.smithi038.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2023-11-30T22:54:47.122758Z", "last_refresh": "2023-11-30T23:09:52.311067Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2023-11-30T22:54:42.674972Z", "last_refresh": "2023-11-30T23:09:48.452759Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2023-11-30T22:54:45.114633Z", "last_refresh": "2023-11-30T23:09:52.311222Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2023-11-30T23:07:14.865206Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi167.igxkgw on smithi167: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi167-igxkgw\n/bin/podman: stderr Error: error inspecting object: no such container ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi167-igxkgw\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi167.igxkgw\n/bin/podman: stderr Error: error inspecting object: no such container ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi167.igxkgw\nDeploy daemon haproxy.nfs.foo.smithi167.igxkgw ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi167 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2023-11-30T23:05:21Z\" level=warning msg=\"failed, retrying in 1s ... (1/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-11-30T23:05:59Z\" level=warning msg=\"failed, retrying in 1s ... (2/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-11-30T23:06:37Z\" level=warning msg=\"failed, retrying in 1s ... (3/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi167 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-11-30T23:09:45.061230Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi038.ubrlmp on smithi038: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi038-ubrlmp\n/bin/podman: stderr Error: error inspecting object: no such container ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi038-ubrlmp\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi038.ubrlmp\n/bin/podman: stderr Error: error inspecting object: no such container ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi038.ubrlmp\nDeploy daemon haproxy.nfs.foo.smithi038.ubrlmp ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi038 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2023-11-30T23:07:52Z\" level=warning msg=\"failed, retrying in 1s ... (1/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-11-30T23:08:30Z\" level=warning msg=\"failed, retrying in 1s ... (2/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-11-30T23:09:07Z\" level=warning msg=\"failed, retrying in 1s ... (3/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi038 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-11-30T23:09:45.062547Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi038.vjkntq on smithi038: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2023-11-30T23:09:45.063688Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi167.ndkqyv on smithi167: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2023-11-30T23:12:23.150100Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi167.nhhxhd on smithi167: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi167-nhhxhd\n/bin/podman: stderr Error: error inspecting object: no such container ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi167-nhhxhd\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi167.nhhxhd\n/bin/podman: stderr Error: error inspecting object: no such container ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi167.nhhxhd\nDeploy daemon haproxy.nfs.foo.smithi167.nhhxhd ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi167 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2023-11-30T23:10:30Z\" level=warning msg=\"failed, retrying in 1s ... (1/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-11-30T23:11:08Z\" level=warning msg=\"failed, retrying in 1s ... (2/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-11-30T23:11:45Z\" level=warning msg=\"failed, retrying in 1s ... (3/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi167 -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": 9049, "virtual_ip": "10.0.31.38/16"}, "status": {"created": "2023-11-30T22:58:56.312786Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.38/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2023-11-30T22:54:41.668043Z", "last_refresh": "2023-11-30T23:09:48.452908Z", "running": 2, "size": 2}}, {"events": ["2023-11-30T22:55:50.759225Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi038:172.21.15.38=smithi038", "smithi167:172.21.15.167=smithi167"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2023-11-30T22:55:50.756456Z", "last_refresh": "2023-11-30T23:09:48.452987Z", "running": 2, "size": 2}}, {"events": ["2023-11-30T22:58:56.311581Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2023-11-30T22:58:56.308071Z", "last_refresh": "2023-11-30T23:09:52.311757Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2023-11-30T22:54:46.136630Z", "last_refresh": "2023-11-30T23:09:48.453061Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2023-11-30T22:56:33.258058Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2023-11-30T22:56:33.253117Z", "last_refresh": "2023-11-30T23:09:48.453131Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2023-11-30T22:54:43.949497Z", "last_refresh": "2023-11-30T23:09:52.311357Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2023-11-30T22:58:52.105721Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2023-11-30T22:58:59.793467Z", "last_refresh": "2023-11-30T23:09:48.453411Z", "ports": [8800], "running": 2, "size": 2}}] 2023-11-30T23:14:19.024 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:14:18 smithi038 conmon[81956]: audit 2023-11-30T23:14:18.674291 2023-11-30T23:14:19.024 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:14:18 smithi038 conmon[81956]: +0000 mgr.smithi038.ldalxq (mgr.14182) 932 : audit [DBG] from='client.15736 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-11-30T23:14:19.190 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2023-11-30T23:14:19.263 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:14:18 smithi167 conmon[87022]: audit 2023-11-30T23:14:18.674291+0000 mgr.smithi038.ldalxq (mgr.14182) 932 : audit [DBG] from='client.15736 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-11-30T23:14:20.191 DEBUG:teuthology.orchestra.run.smithi038:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:0dc074ce0b0b3b4f393f56dd32ef36884ebf45a9 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 3faf8b00-8fd3-11ee-95a2-87774f69a715 -- ceph orch ls -f json 2023-11-30T23:14:20.223 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:14:19 smithi038 conmon[81956]: cluster 2023-11-30T23:14:19.020761+0000 mgr.smithi038.ldalxq (mgr.14182) 933 : cluster [DBG] pgmap v606: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2023-11-30T23:14:20.224 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:14:19 smithi038 conmon[81956]: 2023-11-30T23:14:20.261 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:14:19 smithi167 conmon[87022]: cluster 2023-11-30T23:14:19.020761+0000 mgr.smithi038.ldalxq (mgr.14182) 933 : cluster [DBG] pgmap v606: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2023-11-30T23:14:22.028 INFO:teuthology.orchestra.run.smithi038.stdout: 2023-11-30T23:14:22.028 INFO:teuthology.orchestra.run.smithi038.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2023-11-30T22:54:47.122758Z", "last_refresh": "2023-11-30T23:09:52.311067Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2023-11-30T22:54:42.674972Z", "last_refresh": "2023-11-30T23:09:48.452759Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2023-11-30T22:54:45.114633Z", "last_refresh": "2023-11-30T23:09:52.311222Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2023-11-30T23:07:14.865206Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi167.igxkgw on smithi167: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi167-igxkgw\n/bin/podman: stderr Error: error inspecting object: no such container ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi167-igxkgw\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi167.igxkgw\n/bin/podman: stderr Error: error inspecting object: no such container ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi167.igxkgw\nDeploy daemon haproxy.nfs.foo.smithi167.igxkgw ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi167 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2023-11-30T23:05:21Z\" level=warning msg=\"failed, retrying in 1s ... (1/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-11-30T23:05:59Z\" level=warning msg=\"failed, retrying in 1s ... (2/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-11-30T23:06:37Z\" level=warning msg=\"failed, retrying in 1s ... (3/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi167 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-11-30T23:09:45.061230Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi038.ubrlmp on smithi038: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi038-ubrlmp\n/bin/podman: stderr Error: error inspecting object: no such container ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi038-ubrlmp\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi038.ubrlmp\n/bin/podman: stderr Error: error inspecting object: no such container ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi038.ubrlmp\nDeploy daemon haproxy.nfs.foo.smithi038.ubrlmp ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi038 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2023-11-30T23:07:52Z\" level=warning msg=\"failed, retrying in 1s ... (1/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-11-30T23:08:30Z\" level=warning msg=\"failed, retrying in 1s ... (2/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-11-30T23:09:07Z\" level=warning msg=\"failed, retrying in 1s ... (3/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi038 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-11-30T23:09:45.062547Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi038.vjkntq on smithi038: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2023-11-30T23:09:45.063688Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi167.ndkqyv on smithi167: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2023-11-30T23:12:23.150100Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi167.nhhxhd on smithi167: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi167-nhhxhd\n/bin/podman: stderr Error: error inspecting object: no such container ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi167-nhhxhd\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi167.nhhxhd\n/bin/podman: stderr Error: error inspecting object: no such container ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi167.nhhxhd\nDeploy daemon haproxy.nfs.foo.smithi167.nhhxhd ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi167 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2023-11-30T23:10:30Z\" level=warning msg=\"failed, retrying in 1s ... (1/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-11-30T23:11:08Z\" level=warning msg=\"failed, retrying in 1s ... (2/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-11-30T23:11:45Z\" level=warning msg=\"failed, retrying in 1s ... (3/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi167 -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": 9049, "virtual_ip": "10.0.31.38/16"}, "status": {"created": "2023-11-30T22:58:56.312786Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.38/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2023-11-30T22:54:41.668043Z", "last_refresh": "2023-11-30T23:09:48.452908Z", "running": 2, "size": 2}}, {"events": ["2023-11-30T22:55:50.759225Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi038:172.21.15.38=smithi038", "smithi167:172.21.15.167=smithi167"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2023-11-30T22:55:50.756456Z", "last_refresh": "2023-11-30T23:09:48.452987Z", "running": 2, "size": 2}}, {"events": ["2023-11-30T22:58:56.311581Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2023-11-30T22:58:56.308071Z", "last_refresh": "2023-11-30T23:09:52.311757Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2023-11-30T22:54:46.136630Z", "last_refresh": "2023-11-30T23:09:48.453061Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2023-11-30T22:56:33.258058Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2023-11-30T22:56:33.253117Z", "last_refresh": "2023-11-30T23:09:48.453131Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2023-11-30T22:54:43.949497Z", "last_refresh": "2023-11-30T23:09:52.311357Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2023-11-30T22:58:52.105721Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2023-11-30T22:58:59.793467Z", "last_refresh": "2023-11-30T23:09:48.453411Z", "ports": [8800], "running": 2, "size": 2}}] 2023-11-30T23:14:22.425 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:14:22 smithi038 conmon[81956]: cluster 2023-11-30T23:14:21.021471+0000 mgr.smithi038.ldalxq (mgr.14182) 934 : cluster [DBG] pgmap v607: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2023-11-30T23:14:22.444 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2023-11-30T23:14:22.512 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:14:22 smithi167 conmon[87022]: cluster 2023-11-30T23:14:21.021471+0000 mgr.smithi038.ldalxq (mgr.14182) 934 : cluster [DBG] pgmap v607: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2023-11-30T23:14:23.445 DEBUG:teuthology.orchestra.run.smithi038:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:0dc074ce0b0b3b4f393f56dd32ef36884ebf45a9 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 3faf8b00-8fd3-11ee-95a2-87774f69a715 -- ceph orch ls -f json 2023-11-30T23:14:23.476 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:14:23 smithi038 conmon[81956]: audit 2023-11-30T23:14:22.024327+0000 mgr.smithi038.ldalxq (mgr.14182) 935 : audit [DBG] from='client.15740 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-11-30T23:14:23.512 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:14:23 smithi167 conmon[87022]: audit 2023-11-30T23:14:22.024327+0000 mgr.smithi038.ldalxq (mgr.14182) 935 : audit [DBG] from='client.15740 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-11-30T23:14:24.274 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:14:24 smithi038 conmon[81956]: cluster 2023-11-30T23:14:23.022084+0000 mgr.smithi038.ldalxq 2023-11-30T23:14:24.274 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:14:24 smithi038 conmon[81956]: (mgr.14182) 936 : cluster [DBG] pgmap v608: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2023-11-30T23:14:24.511 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:14:24 smithi167 conmon[87022]: cluster 2023-11-30T23:14:23.022084+0000 mgr.smithi038.ldalxq (mgr.14182) 936 : cluster [DBG] pgmap v608: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2023-11-30T23:14:25.205 INFO:teuthology.orchestra.run.smithi038.stdout: 2023-11-30T23:14:25.206 INFO:teuthology.orchestra.run.smithi038.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2023-11-30T22:54:47.122758Z", "last_refresh": "2023-11-30T23:09:52.311067Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2023-11-30T22:54:42.674972Z", "last_refresh": "2023-11-30T23:09:48.452759Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2023-11-30T22:54:45.114633Z", "last_refresh": "2023-11-30T23:09:52.311222Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2023-11-30T23:07:14.865206Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi167.igxkgw on smithi167: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi167-igxkgw\n/bin/podman: stderr Error: error inspecting object: no such container ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi167-igxkgw\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi167.igxkgw\n/bin/podman: stderr Error: error inspecting object: no such container ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi167.igxkgw\nDeploy daemon haproxy.nfs.foo.smithi167.igxkgw ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi167 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2023-11-30T23:05:21Z\" level=warning msg=\"failed, retrying in 1s ... (1/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-11-30T23:05:59Z\" level=warning msg=\"failed, retrying in 1s ... (2/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-11-30T23:06:37Z\" level=warning msg=\"failed, retrying in 1s ... (3/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi167 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-11-30T23:09:45.061230Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi038.ubrlmp on smithi038: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi038-ubrlmp\n/bin/podman: stderr Error: error inspecting object: no such container ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi038-ubrlmp\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi038.ubrlmp\n/bin/podman: stderr Error: error inspecting object: no such container ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi038.ubrlmp\nDeploy daemon haproxy.nfs.foo.smithi038.ubrlmp ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi038 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2023-11-30T23:07:52Z\" level=warning msg=\"failed, retrying in 1s ... (1/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-11-30T23:08:30Z\" level=warning msg=\"failed, retrying in 1s ... (2/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-11-30T23:09:07Z\" level=warning msg=\"failed, retrying in 1s ... (3/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi038 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-11-30T23:09:45.062547Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi038.vjkntq on smithi038: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2023-11-30T23:09:45.063688Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi167.ndkqyv on smithi167: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2023-11-30T23:12:23.150100Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi167.nhhxhd on smithi167: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi167-nhhxhd\n/bin/podman: stderr Error: error inspecting object: no such container ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi167-nhhxhd\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi167.nhhxhd\n/bin/podman: stderr Error: error inspecting object: no such container ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi167.nhhxhd\nDeploy daemon haproxy.nfs.foo.smithi167.nhhxhd ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi167 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2023-11-30T23:10:30Z\" level=warning msg=\"failed, retrying in 1s ... (1/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-11-30T23:11:08Z\" level=warning msg=\"failed, retrying in 1s ... (2/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-11-30T23:11:45Z\" level=warning msg=\"failed, retrying in 1s ... (3/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi167 -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": 9049, "virtual_ip": "10.0.31.38/16"}, "status": {"created": "2023-11-30T22:58:56.312786Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.38/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2023-11-30T22:54:41.668043Z", "last_refresh": "2023-11-30T23:09:48.452908Z", "running": 2, "size": 2}}, {"events": ["2023-11-30T22:55:50.759225Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi038:172.21.15.38=smithi038", "smithi167:172.21.15.167=smithi167"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2023-11-30T22:55:50.756456Z", "last_refresh": "2023-11-30T23:09:48.452987Z", "running": 2, "size": 2}}, {"events": ["2023-11-30T22:58:56.311581Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2023-11-30T22:58:56.308071Z", "last_refresh": "2023-11-30T23:09:52.311757Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2023-11-30T22:54:46.136630Z", "last_refresh": "2023-11-30T23:09:48.453061Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2023-11-30T22:56:33.258058Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2023-11-30T22:56:33.253117Z", "last_refresh": "2023-11-30T23:09:48.453131Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2023-11-30T22:54:43.949497Z", "last_refresh": "2023-11-30T23:09:52.311357Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2023-11-30T22:58:52.105721Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2023-11-30T22:58:59.793467Z", "last_refresh": "2023-11-30T23:09:48.453411Z", "ports": [8800], "running": 2, "size": 2}}] 2023-11-30T23:14:25.805 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2023-11-30T23:14:26.512 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:14:26 smithi167 conmon[87022]: cluster 2023-11-30T23:14:25.022930+0000 mgr.smithi038.ldalxq (mgr.14182) 937 : cluster [DBG] pgmap v609: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2023-11-30T23:14:26.512 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:14:26 smithi167 conmon[87022]: 2023-11-30T23:14:26.512 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:14:26 smithi167 conmon[87022]: audit 2023-11-30T23:14:25.201606+0000 mgr.smithi038.ldalxq (mgr.14182) 938 : audit [DBG] from='client.15744 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-11-30T23:14:26.524 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:14:26 smithi038 conmon[81956]: cluster 2023-11-30T23:14:25.022930+0000 mgr.smithi038.ldalxq (mgr.14182) 937 : cluster [DBG] pgmap v609: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2023-11-30T23:14:26.524 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:14:26 smithi038 conmon[81956]: audit 2023-11-30T23:14:25.201606+0000 mgr.smithi038.ldalxq (mgr.14182) 938 : audit [DBG] from='client.15744 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-11-30T23:14:26.807 DEBUG:teuthology.orchestra.run.smithi038:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:0dc074ce0b0b3b4f393f56dd32ef36884ebf45a9 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 3faf8b00-8fd3-11ee-95a2-87774f69a715 -- ceph orch ls -f json 2023-11-30T23:14:28.023 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:14:27 smithi038 conmon[81956]: cluster 2023-11-30T23:14:27.023465+0000 2023-11-30T23:14:28.024 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:14:27 smithi038 conmon[81956]: mgr.smithi038.ldalxq (mgr.14182) 939 : cluster [DBG] pgmap v610: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2023-11-30T23:14:28.262 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:14:27 smithi167 conmon[87022]: cluster 2023-11-30T23:14:27.023465+0000 mgr.smithi038.ldalxq (mgr.14182) 939 : cluster [DBG] pgmap v610: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2023-11-30T23:14:28.689 INFO:teuthology.orchestra.run.smithi038.stdout: 2023-11-30T23:14:28.689 INFO:teuthology.orchestra.run.smithi038.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2023-11-30T22:54:47.122758Z", "last_refresh": "2023-11-30T23:09:52.311067Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2023-11-30T22:54:42.674972Z", "last_refresh": "2023-11-30T23:09:48.452759Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2023-11-30T22:54:45.114633Z", "last_refresh": "2023-11-30T23:09:52.311222Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2023-11-30T23:07:14.865206Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi167.igxkgw on smithi167: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi167-igxkgw\n/bin/podman: stderr Error: error inspecting object: no such container ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi167-igxkgw\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi167.igxkgw\n/bin/podman: stderr Error: error inspecting object: no such container ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi167.igxkgw\nDeploy daemon haproxy.nfs.foo.smithi167.igxkgw ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi167 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2023-11-30T23:05:21Z\" level=warning msg=\"failed, retrying in 1s ... (1/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-11-30T23:05:59Z\" level=warning msg=\"failed, retrying in 1s ... (2/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-11-30T23:06:37Z\" level=warning msg=\"failed, retrying in 1s ... (3/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi167 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-11-30T23:09:45.061230Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi038.ubrlmp on smithi038: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi038-ubrlmp\n/bin/podman: stderr Error: error inspecting object: no such container ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi038-ubrlmp\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi038.ubrlmp\n/bin/podman: stderr Error: error inspecting object: no such container ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi038.ubrlmp\nDeploy daemon haproxy.nfs.foo.smithi038.ubrlmp ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi038 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2023-11-30T23:07:52Z\" level=warning msg=\"failed, retrying in 1s ... (1/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-11-30T23:08:30Z\" level=warning msg=\"failed, retrying in 1s ... (2/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-11-30T23:09:07Z\" level=warning msg=\"failed, retrying in 1s ... (3/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi038 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-11-30T23:09:45.062547Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi038.vjkntq on smithi038: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2023-11-30T23:09:45.063688Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi167.ndkqyv on smithi167: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2023-11-30T23:12:23.150100Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi167.nhhxhd on smithi167: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi167-nhhxhd\n/bin/podman: stderr Error: error inspecting object: no such container ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi167-nhhxhd\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi167.nhhxhd\n/bin/podman: stderr Error: error inspecting object: no such container ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi167.nhhxhd\nDeploy daemon haproxy.nfs.foo.smithi167.nhhxhd ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi167 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2023-11-30T23:10:30Z\" level=warning msg=\"failed, retrying in 1s ... (1/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-11-30T23:11:08Z\" level=warning msg=\"failed, retrying in 1s ... (2/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-11-30T23:11:45Z\" level=warning msg=\"failed, retrying in 1s ... (3/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi167 -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": 9049, "virtual_ip": "10.0.31.38/16"}, "status": {"created": "2023-11-30T22:58:56.312786Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.38/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2023-11-30T22:54:41.668043Z", "last_refresh": "2023-11-30T23:09:48.452908Z", "running": 2, "size": 2}}, {"events": ["2023-11-30T22:55:50.759225Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi038:172.21.15.38=smithi038", "smithi167:172.21.15.167=smithi167"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2023-11-30T22:55:50.756456Z", "last_refresh": "2023-11-30T23:09:48.452987Z", "running": 2, "size": 2}}, {"events": ["2023-11-30T22:58:56.311581Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2023-11-30T22:58:56.308071Z", "last_refresh": "2023-11-30T23:09:52.311757Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2023-11-30T22:54:46.136630Z", "last_refresh": "2023-11-30T23:09:48.453061Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2023-11-30T22:56:33.258058Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2023-11-30T22:56:33.253117Z", "last_refresh": "2023-11-30T23:09:48.453131Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2023-11-30T22:54:43.949497Z", "last_refresh": "2023-11-30T23:09:52.311357Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2023-11-30T22:58:52.105721Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2023-11-30T22:58:59.793467Z", "last_refresh": "2023-11-30T23:09:48.453411Z", "ports": [8800], "running": 2, "size": 2}}] 2023-11-30T23:14:29.024 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:14:28 smithi038 conmon[81956]: audit 2023-11-30T23:14:28.685576+0000 mgr.smithi038.ldalxq (mgr.14182) 940 : audit [DBG] from='client.15748 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-11-30T23:14:29.067 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2023-11-30T23:14:29.262 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:14:28 smithi167 conmon[87022]: audit 2023-11-30T23:14:28.685576+0000 mgr.smithi038.ldalxq (mgr.14182) 940 : audit [DBG] from='client.15748 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-11-30T23:14:30.067 DEBUG:teuthology.orchestra.run.smithi038:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:0dc074ce0b0b3b4f393f56dd32ef36884ebf45a9 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 3faf8b00-8fd3-11ee-95a2-87774f69a715 -- ceph orch ls -f json 2023-11-30T23:14:30.262 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:14:29 smithi167 conmon[87022]: cluster 2023-11-30T23:14:29.024266+0000 mgr.smithi038.ldalxq (mgr.14182) 941 : cluster 2023-11-30T23:14:30.262 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:14:29 smithi167 conmon[87022]: [DBG] pgmap v611: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2023-11-30T23:14:30.274 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:14:29 smithi038 conmon[81956]: cluster 2023-11-30T23:14:29.024266+0000 mgr.smithi038.ldalxq (mgr.14182) 941 : cluster 2023-11-30T23:14:30.274 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:14:29 smithi038 conmon[81956]: [DBG] pgmap v611: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2023-11-30T23:14:31.826 INFO:teuthology.orchestra.run.smithi038.stdout: 2023-11-30T23:14:31.826 INFO:teuthology.orchestra.run.smithi038.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2023-11-30T22:54:47.122758Z", "last_refresh": "2023-11-30T23:09:52.311067Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2023-11-30T22:54:42.674972Z", "last_refresh": "2023-11-30T23:09:48.452759Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2023-11-30T22:54:45.114633Z", "last_refresh": "2023-11-30T23:09:52.311222Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2023-11-30T23:07:14.865206Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi167.igxkgw on smithi167: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi167-igxkgw\n/bin/podman: stderr Error: error inspecting object: no such container ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi167-igxkgw\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi167.igxkgw\n/bin/podman: stderr Error: error inspecting object: no such container ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi167.igxkgw\nDeploy daemon haproxy.nfs.foo.smithi167.igxkgw ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi167 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2023-11-30T23:05:21Z\" level=warning msg=\"failed, retrying in 1s ... (1/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-11-30T23:05:59Z\" level=warning msg=\"failed, retrying in 1s ... (2/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-11-30T23:06:37Z\" level=warning msg=\"failed, retrying in 1s ... (3/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi167 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-11-30T23:09:45.061230Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi038.ubrlmp on smithi038: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi038-ubrlmp\n/bin/podman: stderr Error: error inspecting object: no such container ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi038-ubrlmp\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi038.ubrlmp\n/bin/podman: stderr Error: error inspecting object: no such container ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi038.ubrlmp\nDeploy daemon haproxy.nfs.foo.smithi038.ubrlmp ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi038 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2023-11-30T23:07:52Z\" level=warning msg=\"failed, retrying in 1s ... (1/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-11-30T23:08:30Z\" level=warning msg=\"failed, retrying in 1s ... (2/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-11-30T23:09:07Z\" level=warning msg=\"failed, retrying in 1s ... (3/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi038 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-11-30T23:09:45.062547Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi038.vjkntq on smithi038: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2023-11-30T23:09:45.063688Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi167.ndkqyv on smithi167: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2023-11-30T23:12:23.150100Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi167.nhhxhd on smithi167: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi167-nhhxhd\n/bin/podman: stderr Error: error inspecting object: no such container ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi167-nhhxhd\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi167.nhhxhd\n/bin/podman: stderr Error: error inspecting object: no such container ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi167.nhhxhd\nDeploy daemon haproxy.nfs.foo.smithi167.nhhxhd ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi167 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2023-11-30T23:10:30Z\" level=warning msg=\"failed, retrying in 1s ... (1/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-11-30T23:11:08Z\" level=warning msg=\"failed, retrying in 1s ... (2/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-11-30T23:11:45Z\" level=warning msg=\"failed, retrying in 1s ... (3/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi167 -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": 9049, "virtual_ip": "10.0.31.38/16"}, "status": {"created": "2023-11-30T22:58:56.312786Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.38/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2023-11-30T22:54:41.668043Z", "last_refresh": "2023-11-30T23:09:48.452908Z", "running": 2, "size": 2}}, {"events": ["2023-11-30T22:55:50.759225Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi038:172.21.15.38=smithi038", "smithi167:172.21.15.167=smithi167"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2023-11-30T22:55:50.756456Z", "last_refresh": "2023-11-30T23:09:48.452987Z", "running": 2, "size": 2}}, {"events": ["2023-11-30T22:58:56.311581Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2023-11-30T22:58:56.308071Z", "last_refresh": "2023-11-30T23:09:52.311757Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2023-11-30T22:54:46.136630Z", "last_refresh": "2023-11-30T23:09:48.453061Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2023-11-30T22:56:33.258058Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2023-11-30T22:56:33.253117Z", "last_refresh": "2023-11-30T23:09:48.453131Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2023-11-30T22:54:43.949497Z", "last_refresh": "2023-11-30T23:09:52.311357Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2023-11-30T22:58:52.105721Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2023-11-30T22:58:59.793467Z", "last_refresh": "2023-11-30T23:09:48.453411Z", "ports": [8800], "running": 2, "size": 2}}] 2023-11-30T23:14:32.249 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:14:32 smithi038 conmon[81956]: cluster 2023-11-30T23:14:31.024934+0000 mgr.smithi038.ldalxq 2023-11-30T23:14:32.250 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:14:32 smithi038 conmon[81956]: (mgr.14182) 942 : cluster [DBG] pgmap v612: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2023-11-30T23:14:32.317 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2023-11-30T23:14:32.512 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:14:32 smithi167 conmon[87022]: cluster 2023-11-30T23:14:31.024934+0000 mgr.smithi038.ldalxq (mgr.14182) 942 : cluster [DBG] pgmap v612: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2023-11-30T23:14:33.318 DEBUG:teuthology.orchestra.run.smithi038:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:0dc074ce0b0b3b4f393f56dd32ef36884ebf45a9 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 3faf8b00-8fd3-11ee-95a2-87774f69a715 -- ceph orch ls -f json 2023-11-30T23:14:33.348 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:14:33 smithi038 conmon[81956]: audit 2023-11-30T23:14:31.821486+0000 mgr.smithi038.ldalxq (mgr.14182) 943 : audit 2023-11-30T23:14:33.348 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:14:33 smithi038 conmon[81956]: [DBG] from='client.15752 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-11-30T23:14:33.512 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:14:33 smithi167 conmon[87022]: audit 2023-11-30T23:14:31.821486+0000 mgr.smithi038.ldalxq (mgr.14182) 943 : audit [DBG] from='client.15752 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-11-30T23:14:34.369 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:14:34 smithi038 conmon[81956]: cluster 2023-11-30T23:14:33. 2023-11-30T23:14:34.369 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:14:34 smithi038 conmon[81956]: 025623+0000 mgr.smithi038.ldalxq (mgr.14182) 944 : cluster [DBG] pgmap v613: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2023-11-30T23:14:34.512 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:14:34 smithi167 conmon[87022]: cluster 2023-11-30T23:14:33.025623+0000 mgr.smithi038.ldalxq (mgr.14182) 944 : cluster [DBG] pgmap v613: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2023-11-30T23:14:34.916 INFO:teuthology.orchestra.run.smithi038.stdout: 2023-11-30T23:14:34.916 INFO:teuthology.orchestra.run.smithi038.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2023-11-30T22:54:47.122758Z", "last_refresh": "2023-11-30T23:09:52.311067Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2023-11-30T22:54:42.674972Z", "last_refresh": "2023-11-30T23:09:48.452759Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2023-11-30T22:54:45.114633Z", "last_refresh": "2023-11-30T23:09:52.311222Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2023-11-30T23:07:14.865206Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi167.igxkgw on smithi167: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi167-igxkgw\n/bin/podman: stderr Error: error inspecting object: no such container ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi167-igxkgw\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi167.igxkgw\n/bin/podman: stderr Error: error inspecting object: no such container ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi167.igxkgw\nDeploy daemon haproxy.nfs.foo.smithi167.igxkgw ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi167 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2023-11-30T23:05:21Z\" level=warning msg=\"failed, retrying in 1s ... (1/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-11-30T23:05:59Z\" level=warning msg=\"failed, retrying in 1s ... (2/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-11-30T23:06:37Z\" level=warning msg=\"failed, retrying in 1s ... (3/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi167 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-11-30T23:09:45.061230Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi038.ubrlmp on smithi038: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi038-ubrlmp\n/bin/podman: stderr Error: error inspecting object: no such container ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi038-ubrlmp\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi038.ubrlmp\n/bin/podman: stderr Error: error inspecting object: no such container ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi038.ubrlmp\nDeploy daemon haproxy.nfs.foo.smithi038.ubrlmp ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi038 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2023-11-30T23:07:52Z\" level=warning msg=\"failed, retrying in 1s ... (1/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-11-30T23:08:30Z\" level=warning msg=\"failed, retrying in 1s ... (2/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-11-30T23:09:07Z\" level=warning msg=\"failed, retrying in 1s ... (3/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi038 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-11-30T23:09:45.062547Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi038.vjkntq on smithi038: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2023-11-30T23:09:45.063688Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi167.ndkqyv on smithi167: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2023-11-30T23:12:23.150100Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi167.nhhxhd on smithi167: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi167-nhhxhd\n/bin/podman: stderr Error: error inspecting object: no such container ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi167-nhhxhd\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi167.nhhxhd\n/bin/podman: stderr Error: error inspecting object: no such container ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi167.nhhxhd\nDeploy daemon haproxy.nfs.foo.smithi167.nhhxhd ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi167 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2023-11-30T23:10:30Z\" level=warning msg=\"failed, retrying in 1s ... (1/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-11-30T23:11:08Z\" level=warning msg=\"failed, retrying in 1s ... (2/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-11-30T23:11:45Z\" level=warning msg=\"failed, retrying in 1s ... (3/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi167 -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": 9049, "virtual_ip": "10.0.31.38/16"}, "status": {"created": "2023-11-30T22:58:56.312786Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.38/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2023-11-30T22:54:41.668043Z", "last_refresh": "2023-11-30T23:09:48.452908Z", "running": 2, "size": 2}}, {"events": ["2023-11-30T22:55:50.759225Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi038:172.21.15.38=smithi038", "smithi167:172.21.15.167=smithi167"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2023-11-30T22:55:50.756456Z", "last_refresh": "2023-11-30T23:09:48.452987Z", "running": 2, "size": 2}}, {"events": ["2023-11-30T22:58:56.311581Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2023-11-30T22:58:56.308071Z", "last_refresh": "2023-11-30T23:09:52.311757Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2023-11-30T22:54:46.136630Z", "last_refresh": "2023-11-30T23:09:48.453061Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2023-11-30T22:56:33.258058Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2023-11-30T22:56:33.253117Z", "last_refresh": "2023-11-30T23:09:48.453131Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2023-11-30T22:54:43.949497Z", "last_refresh": "2023-11-30T23:09:52.311357Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2023-11-30T22:58:52.105721Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2023-11-30T22:58:59.793467Z", "last_refresh": "2023-11-30T23:09:48.453411Z", "ports": [8800], "running": 2, "size": 2}}] 2023-11-30T23:14:35.371 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2023-11-30T23:14:36.372 DEBUG:teuthology.orchestra.run.smithi038:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:0dc074ce0b0b3b4f393f56dd32ef36884ebf45a9 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 3faf8b00-8fd3-11ee-95a2-87774f69a715 -- ceph orch ls -f json 2023-11-30T23:14:36.404 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:14:36 smithi038 conmon[81956]: audit 2023-11-30T23:14:34.911792+0000 mgr.smithi038.ldalxq (mgr.14182) 945 : audit 2023-11-30T23:14:36.404 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:14:36 smithi038 conmon[81956]: [DBG] from='client.15756 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-11-30T23:14:36.404 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:14:36 smithi038 conmon[81956]: cluster 2023-11-30T23:14:35.026324+0000 mgr.smithi038.ldalxq (mgr.14182) 946 : cluster [DBG] pgmap v614: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2023-11-30T23:14:36.512 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:14:36 smithi167 conmon[87022]: audit 2023-11-30T23:14:34.911792+0000 mgr.smithi038.ldalxq (mgr.14182) 945 : audit [DBG] from='client.15756 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-11-30T23:14:36.512 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:14:36 smithi167 conmon[87022]: cluster 2023-11-30T23:14:35.026324+0000 mgr.smithi038.ldalxq (mgr.14182) 946 : cluster [DBG] pgmap v614: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2023-11-30T23:14:38.024 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:14:37 smithi038 conmon[81956]: cluster 2023-11-30T23:14:37.027053+0000 mgr.smithi038.ldalxq (mgr.14182) 947 : cluster [DBG] pgmap v615: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2023-11-30T23:14:38.097 INFO:teuthology.orchestra.run.smithi038.stdout: 2023-11-30T23:14:38.097 INFO:teuthology.orchestra.run.smithi038.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2023-11-30T22:54:47.122758Z", "last_refresh": "2023-11-30T23:09:52.311067Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2023-11-30T22:54:42.674972Z", "last_refresh": "2023-11-30T23:09:48.452759Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2023-11-30T22:54:45.114633Z", "last_refresh": "2023-11-30T23:09:52.311222Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2023-11-30T23:07:14.865206Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi167.igxkgw on smithi167: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi167-igxkgw\n/bin/podman: stderr Error: error inspecting object: no such container ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi167-igxkgw\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi167.igxkgw\n/bin/podman: stderr Error: error inspecting object: no such container ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi167.igxkgw\nDeploy daemon haproxy.nfs.foo.smithi167.igxkgw ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi167 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2023-11-30T23:05:21Z\" level=warning msg=\"failed, retrying in 1s ... (1/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-11-30T23:05:59Z\" level=warning msg=\"failed, retrying in 1s ... (2/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-11-30T23:06:37Z\" level=warning msg=\"failed, retrying in 1s ... (3/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi167 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-11-30T23:09:45.061230Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi038.ubrlmp on smithi038: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi038-ubrlmp\n/bin/podman: stderr Error: error inspecting object: no such container ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi038-ubrlmp\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi038.ubrlmp\n/bin/podman: stderr Error: error inspecting object: no such container ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi038.ubrlmp\nDeploy daemon haproxy.nfs.foo.smithi038.ubrlmp ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi038 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2023-11-30T23:07:52Z\" level=warning msg=\"failed, retrying in 1s ... (1/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-11-30T23:08:30Z\" level=warning msg=\"failed, retrying in 1s ... (2/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-11-30T23:09:07Z\" level=warning msg=\"failed, retrying in 1s ... (3/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi038 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-11-30T23:09:45.062547Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi038.vjkntq on smithi038: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2023-11-30T23:09:45.063688Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi167.ndkqyv on smithi167: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2023-11-30T23:12:23.150100Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi167.nhhxhd on smithi167: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi167-nhhxhd\n/bin/podman: stderr Error: error inspecting object: no such container ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi167-nhhxhd\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi167.nhhxhd\n/bin/podman: stderr Error: error inspecting object: no such container ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi167.nhhxhd\nDeploy daemon haproxy.nfs.foo.smithi167.nhhxhd ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi167 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2023-11-30T23:10:30Z\" level=warning msg=\"failed, retrying in 1s ... (1/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-11-30T23:11:08Z\" level=warning msg=\"failed, retrying in 1s ... (2/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-11-30T23:11:45Z\" level=warning msg=\"failed, retrying in 1s ... (3/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi167 -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": 9049, "virtual_ip": "10.0.31.38/16"}, "status": {"created": "2023-11-30T22:58:56.312786Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.38/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2023-11-30T22:54:41.668043Z", "last_refresh": "2023-11-30T23:09:48.452908Z", "running": 2, "size": 2}}, {"events": ["2023-11-30T22:55:50.759225Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi038:172.21.15.38=smithi038", "smithi167:172.21.15.167=smithi167"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2023-11-30T22:55:50.756456Z", "last_refresh": "2023-11-30T23:09:48.452987Z", "running": 2, "size": 2}}, {"events": ["2023-11-30T22:58:56.311581Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2023-11-30T22:58:56.308071Z", "last_refresh": "2023-11-30T23:09:52.311757Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2023-11-30T22:54:46.136630Z", "last_refresh": "2023-11-30T23:09:48.453061Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2023-11-30T22:56:33.258058Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2023-11-30T22:56:33.253117Z", "last_refresh": "2023-11-30T23:09:48.453131Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2023-11-30T22:54:43.949497Z", "last_refresh": "2023-11-30T23:09:52.311357Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2023-11-30T22:58:52.105721Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2023-11-30T22:58:59.793467Z", "last_refresh": "2023-11-30T23:09:48.453411Z", "ports": [8800], "running": 2, "size": 2}}] 2023-11-30T23:14:38.262 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:14:37 smithi167 conmon[87022]: cluster 2023-11-30T23:14:37.027053+0000 mgr.smithi038.ldalxq (mgr.14182) 947 : cluster [DBG] pgmap v615: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2023-11-30T23:14:38.522 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2023-11-30T23:14:39.262 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:14:38 smithi167 conmon[87022]: audit 2023-11-30T23:14:38.092954+0000 mgr.smithi038.ldalxq (mgr.14182) 948 : audit [DBG] from='client.15760 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-11-30T23:14:39.274 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:14:38 smithi038 conmon[81956]: audit 2023-11-30T23:14:38.092954+0000 mgr.smithi038.ldalxq 2023-11-30T23:14:39.274 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:14:38 smithi038 conmon[81956]: (mgr.14182) 948 : audit [DBG] from='client.15760 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-11-30T23:14:39.523 DEBUG:teuthology.orchestra.run.smithi038:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:0dc074ce0b0b3b4f393f56dd32ef36884ebf45a9 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 3faf8b00-8fd3-11ee-95a2-87774f69a715 -- ceph orch ls -f json 2023-11-30T23:14:40.154 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:14:39 smithi038 conmon[81956]: cluster 2023-11-30T23:14:39.027694+0000 mgr.smithi038.ldalxq ( 2023-11-30T23:14:40.154 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:14:39 smithi038 conmon[81956]: mgr.14182) 949 : cluster [DBG] pgmap v616: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2023-11-30T23:14:40.262 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:14:39 smithi167 conmon[87022]: cluster 2023-11-30T23:14:39.027694+0000 mgr.smithi038.ldalxq (mgr.14182) 949 : cluster [DBG] pgmap v616: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2023-11-30T23:14:41.219 INFO:teuthology.orchestra.run.smithi038.stdout: 2023-11-30T23:14:41.220 INFO:teuthology.orchestra.run.smithi038.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2023-11-30T22:54:47.122758Z", "last_refresh": "2023-11-30T23:09:52.311067Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2023-11-30T22:54:42.674972Z", "last_refresh": "2023-11-30T23:09:48.452759Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2023-11-30T22:54:45.114633Z", "last_refresh": "2023-11-30T23:09:52.311222Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2023-11-30T23:07:14.865206Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi167.igxkgw on smithi167: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi167-igxkgw\n/bin/podman: stderr Error: error inspecting object: no such container ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi167-igxkgw\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi167.igxkgw\n/bin/podman: stderr Error: error inspecting object: no such container ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi167.igxkgw\nDeploy daemon haproxy.nfs.foo.smithi167.igxkgw ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi167 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2023-11-30T23:05:21Z\" level=warning msg=\"failed, retrying in 1s ... (1/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-11-30T23:05:59Z\" level=warning msg=\"failed, retrying in 1s ... (2/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-11-30T23:06:37Z\" level=warning msg=\"failed, retrying in 1s ... (3/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi167 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-11-30T23:09:45.061230Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi038.ubrlmp on smithi038: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi038-ubrlmp\n/bin/podman: stderr Error: error inspecting object: no such container ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi038-ubrlmp\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi038.ubrlmp\n/bin/podman: stderr Error: error inspecting object: no such container ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi038.ubrlmp\nDeploy daemon haproxy.nfs.foo.smithi038.ubrlmp ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi038 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2023-11-30T23:07:52Z\" level=warning msg=\"failed, retrying in 1s ... (1/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-11-30T23:08:30Z\" level=warning msg=\"failed, retrying in 1s ... (2/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-11-30T23:09:07Z\" level=warning msg=\"failed, retrying in 1s ... (3/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi038 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-11-30T23:09:45.062547Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi038.vjkntq on smithi038: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2023-11-30T23:09:45.063688Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi167.ndkqyv on smithi167: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2023-11-30T23:12:23.150100Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi167.nhhxhd on smithi167: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi167-nhhxhd\n/bin/podman: stderr Error: error inspecting object: no such container ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi167-nhhxhd\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi167.nhhxhd\n/bin/podman: stderr Error: error inspecting object: no such container ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi167.nhhxhd\nDeploy daemon haproxy.nfs.foo.smithi167.nhhxhd ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi167 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2023-11-30T23:10:30Z\" level=warning msg=\"failed, retrying in 1s ... (1/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-11-30T23:11:08Z\" level=warning msg=\"failed, retrying in 1s ... (2/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-11-30T23:11:45Z\" level=warning msg=\"failed, retrying in 1s ... (3/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi167 -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": 9049, "virtual_ip": "10.0.31.38/16"}, "status": {"created": "2023-11-30T22:58:56.312786Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.38/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2023-11-30T22:54:41.668043Z", "last_refresh": "2023-11-30T23:09:48.452908Z", "running": 2, "size": 2}}, {"events": ["2023-11-30T22:55:50.759225Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi038:172.21.15.38=smithi038", "smithi167:172.21.15.167=smithi167"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2023-11-30T22:55:50.756456Z", "last_refresh": "2023-11-30T23:09:48.452987Z", "running": 2, "size": 2}}, {"events": ["2023-11-30T22:58:56.311581Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2023-11-30T22:58:56.308071Z", "last_refresh": "2023-11-30T23:09:52.311757Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2023-11-30T22:54:46.136630Z", "last_refresh": "2023-11-30T23:09:48.453061Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2023-11-30T22:56:33.258058Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2023-11-30T22:56:33.253117Z", "last_refresh": "2023-11-30T23:09:48.453131Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2023-11-30T22:54:43.949497Z", "last_refresh": "2023-11-30T23:09:52.311357Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2023-11-30T22:58:52.105721Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2023-11-30T22:58:59.793467Z", "last_refresh": "2023-11-30T23:09:48.453411Z", "ports": [8800], "running": 2, "size": 2}}] 2023-11-30T23:14:41.585 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2023-11-30T23:14:42.512 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:14:42 smithi167 conmon[87022]: cluster 2023-11-30T23:14:41.028376+0000 mgr.smithi038.ldalxq (mgr.14182) 950 : cluster [DBG] pgmap v617: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2023-11-30T23:14:42.512 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:14:42 smithi167 conmon[87022]: audit 2023-11-30T23:14:41.215249+0000 mgr.smithi038.ldalxq (mgr.14182) 951 : audit [DBG] from='client.15764 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-11-30T23:14:42.524 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:14:42 smithi038 conmon[81956]: cluster 2023-11-30T23:14:41.028376+0000 mgr.smithi038.ldalxq (mgr.14182) 950 : cluster [DBG] pgmap v617: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2023-11-30T23:14:42.524 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:14:42 smithi038 conmon[81956]: audit 2023-11-30T23:14:41.215249+0000 mgr.smithi038.ldalxq (mgr.14182) 951 : audit [DBG] from='client.15764 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-11-30T23:14:42.586 DEBUG:teuthology.orchestra.run.smithi038:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:0dc074ce0b0b3b4f393f56dd32ef36884ebf45a9 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 3faf8b00-8fd3-11ee-95a2-87774f69a715 -- ceph orch ls -f json 2023-11-30T23:14:44.405 INFO:teuthology.orchestra.run.smithi038.stdout: 2023-11-30T23:14:44.406 INFO:teuthology.orchestra.run.smithi038.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2023-11-30T22:54:47.122758Z", "last_refresh": "2023-11-30T23:09:52.311067Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2023-11-30T22:54:42.674972Z", "last_refresh": "2023-11-30T23:09:48.452759Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2023-11-30T22:54:45.114633Z", "last_refresh": "2023-11-30T23:09:52.311222Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2023-11-30T23:07:14.865206Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi167.igxkgw on smithi167: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi167-igxkgw\n/bin/podman: stderr Error: error inspecting object: no such container ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi167-igxkgw\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi167.igxkgw\n/bin/podman: stderr Error: error inspecting object: no such container ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi167.igxkgw\nDeploy daemon haproxy.nfs.foo.smithi167.igxkgw ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi167 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2023-11-30T23:05:21Z\" level=warning msg=\"failed, retrying in 1s ... (1/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-11-30T23:05:59Z\" level=warning msg=\"failed, retrying in 1s ... (2/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-11-30T23:06:37Z\" level=warning msg=\"failed, retrying in 1s ... (3/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi167 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-11-30T23:09:45.061230Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi038.ubrlmp on smithi038: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi038-ubrlmp\n/bin/podman: stderr Error: error inspecting object: no such container ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi038-ubrlmp\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi038.ubrlmp\n/bin/podman: stderr Error: error inspecting object: no such container ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi038.ubrlmp\nDeploy daemon haproxy.nfs.foo.smithi038.ubrlmp ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi038 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2023-11-30T23:07:52Z\" level=warning msg=\"failed, retrying in 1s ... (1/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-11-30T23:08:30Z\" level=warning msg=\"failed, retrying in 1s ... (2/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-11-30T23:09:07Z\" level=warning msg=\"failed, retrying in 1s ... (3/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi038 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-11-30T23:09:45.062547Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi038.vjkntq on smithi038: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2023-11-30T23:09:45.063688Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi167.ndkqyv on smithi167: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2023-11-30T23:12:23.150100Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi167.nhhxhd on smithi167: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi167-nhhxhd\n/bin/podman: stderr Error: error inspecting object: no such container ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi167-nhhxhd\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi167.nhhxhd\n/bin/podman: stderr Error: error inspecting object: no such container ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi167.nhhxhd\nDeploy daemon haproxy.nfs.foo.smithi167.nhhxhd ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi167 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2023-11-30T23:10:30Z\" level=warning msg=\"failed, retrying in 1s ... (1/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-11-30T23:11:08Z\" level=warning msg=\"failed, retrying in 1s ... (2/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-11-30T23:11:45Z\" level=warning msg=\"failed, retrying in 1s ... (3/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi167 -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": 9049, "virtual_ip": "10.0.31.38/16"}, "status": {"created": "2023-11-30T22:58:56.312786Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.38/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2023-11-30T22:54:41.668043Z", "last_refresh": "2023-11-30T23:09:48.452908Z", "running": 2, "size": 2}}, {"events": ["2023-11-30T22:55:50.759225Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi038:172.21.15.38=smithi038", "smithi167:172.21.15.167=smithi167"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2023-11-30T22:55:50.756456Z", "last_refresh": "2023-11-30T23:09:48.452987Z", "running": 2, "size": 2}}, {"events": ["2023-11-30T22:58:56.311581Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2023-11-30T22:58:56.308071Z", "last_refresh": "2023-11-30T23:09:52.311757Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2023-11-30T22:54:46.136630Z", "last_refresh": "2023-11-30T23:09:48.453061Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2023-11-30T22:56:33.258058Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2023-11-30T22:56:33.253117Z", "last_refresh": "2023-11-30T23:09:48.453131Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2023-11-30T22:54:43.949497Z", "last_refresh": "2023-11-30T23:09:52.311357Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2023-11-30T22:58:52.105721Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2023-11-30T22:58:59.793467Z", "last_refresh": "2023-11-30T23:09:48.453411Z", "ports": [8800], "running": 2, "size": 2}}] 2023-11-30T23:14:44.433 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:14:44 smithi038 conmon[81956]: cluster 2023-11-30T23:14:43.028965+0000 mgr.smithi038.ldalxq (mgr.14182) 952 : cluster [DBG] pgmap v618: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2023-11-30T23:14:44.512 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:14:44 smithi167 conmon[87022]: cluster 2023-11-30T23:14:43.028965+0000 mgr.smithi038.ldalxq (mgr.14182) 952 : cluster [DBG] pgmap v618: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2023-11-30T23:14:44.512 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:14:44 smithi167 conmon[87022]: 2023-11-30T23:14:44.838 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2023-11-30T23:14:45.512 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:14:45 smithi167 conmon[87022]: audit 2023-11-30T23:14:44.401432+0000 mgr.smithi038.ldalxq (mgr.14182) 953 : audit [DBG] from='client.15768 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-11-30T23:14:45.512 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:14:45 smithi167 conmon[87022]: 2023-11-30T23:14:45.524 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:14:45 smithi038 conmon[81956]: audit 2023-11-30T23:14:44.401432+0000 mgr.smithi038.ldalxq (mgr.14182 2023-11-30T23:14:45.524 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:14:45 smithi038 conmon[81956]: ) 953 : audit [DBG] from='client.15768 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-11-30T23:14:45.839 DEBUG:teuthology.orchestra.run.smithi038:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:0dc074ce0b0b3b4f393f56dd32ef36884ebf45a9 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 3faf8b00-8fd3-11ee-95a2-87774f69a715 -- ceph orch ls -f json 2023-11-30T23:14:46.274 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:14:46 smithi038 conmon[81956]: cluster 2023-11-30T23:14:45.029629+0000 mgr.smithi038.ldalxq ( 2023-11-30T23:14:46.274 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:14:46 smithi038 conmon[81956]: mgr.14182) 954 : cluster [DBG] pgmap v619: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2023-11-30T23:14:46.512 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:14:46 smithi167 conmon[87022]: cluster 2023-11-30T23:14:45.029629+0000 mgr.smithi038.ldalxq (mgr.14182) 954 : cluster [DBG] pgmap v619: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2023-11-30T23:14:47.551 INFO:teuthology.orchestra.run.smithi038.stdout: 2023-11-30T23:14:47.551 INFO:teuthology.orchestra.run.smithi038.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2023-11-30T22:54:47.122758Z", "last_refresh": "2023-11-30T23:09:52.311067Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2023-11-30T22:54:42.674972Z", "last_refresh": "2023-11-30T23:09:48.452759Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2023-11-30T22:54:45.114633Z", "last_refresh": "2023-11-30T23:09:52.311222Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2023-11-30T23:07:14.865206Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi167.igxkgw on smithi167: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi167-igxkgw\n/bin/podman: stderr Error: error inspecting object: no such container ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi167-igxkgw\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi167.igxkgw\n/bin/podman: stderr Error: error inspecting object: no such container ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi167.igxkgw\nDeploy daemon haproxy.nfs.foo.smithi167.igxkgw ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi167 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2023-11-30T23:05:21Z\" level=warning msg=\"failed, retrying in 1s ... (1/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-11-30T23:05:59Z\" level=warning msg=\"failed, retrying in 1s ... (2/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-11-30T23:06:37Z\" level=warning msg=\"failed, retrying in 1s ... (3/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi167 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-11-30T23:09:45.061230Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi038.ubrlmp on smithi038: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi038-ubrlmp\n/bin/podman: stderr Error: error inspecting object: no such container ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi038-ubrlmp\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi038.ubrlmp\n/bin/podman: stderr Error: error inspecting object: no such container ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi038.ubrlmp\nDeploy daemon haproxy.nfs.foo.smithi038.ubrlmp ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi038 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2023-11-30T23:07:52Z\" level=warning msg=\"failed, retrying in 1s ... (1/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-11-30T23:08:30Z\" level=warning msg=\"failed, retrying in 1s ... (2/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-11-30T23:09:07Z\" level=warning msg=\"failed, retrying in 1s ... (3/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi038 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-11-30T23:09:45.062547Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi038.vjkntq on smithi038: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2023-11-30T23:09:45.063688Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi167.ndkqyv on smithi167: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2023-11-30T23:12:23.150100Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi167.nhhxhd on smithi167: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi167-nhhxhd\n/bin/podman: stderr Error: error inspecting object: no such container ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi167-nhhxhd\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi167.nhhxhd\n/bin/podman: stderr Error: error inspecting object: no such container ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi167.nhhxhd\nDeploy daemon haproxy.nfs.foo.smithi167.nhhxhd ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi167 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2023-11-30T23:10:30Z\" level=warning msg=\"failed, retrying in 1s ... (1/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-11-30T23:11:08Z\" level=warning msg=\"failed, retrying in 1s ... (2/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-11-30T23:11:45Z\" level=warning msg=\"failed, retrying in 1s ... (3/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi167 -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": 9049, "virtual_ip": "10.0.31.38/16"}, "status": {"created": "2023-11-30T22:58:56.312786Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.38/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2023-11-30T22:54:41.668043Z", "last_refresh": "2023-11-30T23:09:48.452908Z", "running": 2, "size": 2}}, {"events": ["2023-11-30T22:55:50.759225Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi038:172.21.15.38=smithi038", "smithi167:172.21.15.167=smithi167"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2023-11-30T22:55:50.756456Z", "last_refresh": "2023-11-30T23:09:48.452987Z", "running": 2, "size": 2}}, {"events": ["2023-11-30T22:58:56.311581Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2023-11-30T22:58:56.308071Z", "last_refresh": "2023-11-30T23:09:52.311757Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2023-11-30T22:54:46.136630Z", "last_refresh": "2023-11-30T23:09:48.453061Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2023-11-30T22:56:33.258058Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2023-11-30T22:56:33.253117Z", "last_refresh": "2023-11-30T23:09:48.453131Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2023-11-30T22:54:43.949497Z", "last_refresh": "2023-11-30T23:09:52.311357Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2023-11-30T22:58:52.105721Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2023-11-30T22:58:59.793467Z", "last_refresh": "2023-11-30T23:09:48.453411Z", "ports": [8800], "running": 2, "size": 2}}] 2023-11-30T23:14:47.991 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2023-11-30T23:14:48.262 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:14:47 smithi167 conmon[87022]: cluster 2023-11-30T23:14:47.030074+0000 mgr.smithi038.ldalxq (mgr.14182) 955 : cluster [DBG] pgmap v620: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2023-11-30T23:14:48.262 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:14:47 smithi167 conmon[87022]: audit 2023-11-30T23:14:47.546474+0000 mgr.smithi038.ldalxq (mgr.14182) 956 : audit [DBG] from='client.15772 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-11-30T23:14:48.274 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:14:47 smithi038 conmon[81956]: cluster 2023-11-30T23:14:47.030074+0000 mgr.smithi038.ldalxq (mgr.14182) 955 : cluster [DBG] pgmap v620: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2023-11-30T23:14:48.274 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:14:47 smithi038 conmon[81956]: audit 2023-11-30T23:14:47.546474+0000 mgr.smithi038.ldalxq (mgr.14182) 956 : audit [DBG] from='client.15772 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-11-30T23:14:48.992 DEBUG:teuthology.orchestra.run.smithi038:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:0dc074ce0b0b3b4f393f56dd32ef36884ebf45a9 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 3faf8b00-8fd3-11ee-95a2-87774f69a715 -- ceph orch ls -f json 2023-11-30T23:14:50.404 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:14:50 smithi038 conmon[81956]: cluster 2023-11-30T23:14:49. 2023-11-30T23:14:50.404 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:14:50 smithi038 conmon[81956]: 030678+0000 mgr.smithi038.ldalxq (mgr.14182) 957 : cluster [DBG] pgmap v621: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2023-11-30T23:14:50.512 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:14:50 smithi167 conmon[87022]: cluster 2023-11-30T23:14:49.030678+0000 mgr.smithi038.ldalxq (mgr.14182) 957 : cluster [DBG] pgmap v621: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2023-11-30T23:14:50.818 INFO:teuthology.orchestra.run.smithi038.stdout: 2023-11-30T23:14:50.818 INFO:teuthology.orchestra.run.smithi038.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2023-11-30T22:54:47.122758Z", "last_refresh": "2023-11-30T23:09:52.311067Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2023-11-30T22:54:42.674972Z", "last_refresh": "2023-11-30T23:09:48.452759Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2023-11-30T22:54:45.114633Z", "last_refresh": "2023-11-30T23:09:52.311222Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2023-11-30T23:07:14.865206Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi167.igxkgw on smithi167: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi167-igxkgw\n/bin/podman: stderr Error: error inspecting object: no such container ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi167-igxkgw\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi167.igxkgw\n/bin/podman: stderr Error: error inspecting object: no such container ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi167.igxkgw\nDeploy daemon haproxy.nfs.foo.smithi167.igxkgw ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi167 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2023-11-30T23:05:21Z\" level=warning msg=\"failed, retrying in 1s ... (1/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-11-30T23:05:59Z\" level=warning msg=\"failed, retrying in 1s ... (2/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-11-30T23:06:37Z\" level=warning msg=\"failed, retrying in 1s ... (3/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi167 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-11-30T23:09:45.061230Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi038.ubrlmp on smithi038: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi038-ubrlmp\n/bin/podman: stderr Error: error inspecting object: no such container ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi038-ubrlmp\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi038.ubrlmp\n/bin/podman: stderr Error: error inspecting object: no such container ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi038.ubrlmp\nDeploy daemon haproxy.nfs.foo.smithi038.ubrlmp ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi038 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2023-11-30T23:07:52Z\" level=warning msg=\"failed, retrying in 1s ... (1/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-11-30T23:08:30Z\" level=warning msg=\"failed, retrying in 1s ... (2/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-11-30T23:09:07Z\" level=warning msg=\"failed, retrying in 1s ... (3/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi038 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-11-30T23:09:45.062547Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi038.vjkntq on smithi038: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2023-11-30T23:09:45.063688Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi167.ndkqyv on smithi167: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2023-11-30T23:12:23.150100Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi167.nhhxhd on smithi167: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi167-nhhxhd\n/bin/podman: stderr Error: error inspecting object: no such container ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi167-nhhxhd\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi167.nhhxhd\n/bin/podman: stderr Error: error inspecting object: no such container ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi167.nhhxhd\nDeploy daemon haproxy.nfs.foo.smithi167.nhhxhd ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi167 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2023-11-30T23:10:30Z\" level=warning msg=\"failed, retrying in 1s ... (1/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-11-30T23:11:08Z\" level=warning msg=\"failed, retrying in 1s ... (2/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-11-30T23:11:45Z\" level=warning msg=\"failed, retrying in 1s ... (3/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi167 -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": 9049, "virtual_ip": "10.0.31.38/16"}, "status": {"created": "2023-11-30T22:58:56.312786Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.38/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2023-11-30T22:54:41.668043Z", "last_refresh": "2023-11-30T23:09:48.452908Z", "running": 2, "size": 2}}, {"events": ["2023-11-30T22:55:50.759225Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi038:172.21.15.38=smithi038", "smithi167:172.21.15.167=smithi167"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2023-11-30T22:55:50.756456Z", "last_refresh": "2023-11-30T23:09:48.452987Z", "running": 2, "size": 2}}, {"events": ["2023-11-30T22:58:56.311581Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2023-11-30T22:58:56.308071Z", "last_refresh": "2023-11-30T23:09:52.311757Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2023-11-30T22:54:46.136630Z", "last_refresh": "2023-11-30T23:09:48.453061Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2023-11-30T22:56:33.258058Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2023-11-30T22:56:33.253117Z", "last_refresh": "2023-11-30T23:09:48.453131Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2023-11-30T22:54:43.949497Z", "last_refresh": "2023-11-30T23:09:52.311357Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2023-11-30T22:58:52.105721Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2023-11-30T22:58:59.793467Z", "last_refresh": "2023-11-30T23:09:48.453411Z", "ports": [8800], "running": 2, "size": 2}}] 2023-11-30T23:14:51.340 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2023-11-30T23:14:52.341 DEBUG:teuthology.orchestra.run.smithi038:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:0dc074ce0b0b3b4f393f56dd32ef36884ebf45a9 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 3faf8b00-8fd3-11ee-95a2-87774f69a715 -- ceph orch ls -f json 2023-11-30T23:14:52.372 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:14:52 smithi038 conmon[81956]: audit 2023-11-30T23:14:50.814573+0000 mgr.smithi038.ldalxq (mgr.14182) 958 : audit [DBG] from='client.15776 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-11-30T23:14:52.372 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:14:52 smithi038 conmon[81956]: cluster 2023-11-30T23:14:51.031456+0000 mgr.smithi038.ldalxq (mgr.14182) 959 : cluster [DBG] pgmap v622: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2023-11-30T23:14:52.512 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:14:52 smithi167 conmon[87022]: audit 2023-11-30T23:14:50.814573+0000 mgr.smithi038.ldalxq (mgr.14182) 958 : audit [DBG] from='client.15776 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-11-30T23:14:52.512 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:14:52 smithi167 conmon[87022]: cluster 2023-11-30T23:14:51.031456+0000 mgr.smithi038.ldalxq (mgr.14182) 959 : cluster [DBG] pgmap v622: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2023-11-30T23:14:54.034 INFO:teuthology.orchestra.run.smithi038.stdout: 2023-11-30T23:14:54.034 INFO:teuthology.orchestra.run.smithi038.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2023-11-30T22:54:47.122758Z", "last_refresh": "2023-11-30T23:09:52.311067Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2023-11-30T22:54:42.674972Z", "last_refresh": "2023-11-30T23:09:48.452759Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2023-11-30T22:54:45.114633Z", "last_refresh": "2023-11-30T23:09:52.311222Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2023-11-30T23:09:45.063688Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi167.ndkqyv on smithi167: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2023-11-30T23:12:23.150100Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi167.nhhxhd on smithi167: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi167-nhhxhd\n/bin/podman: stderr Error: error inspecting object: no such container ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi167-nhhxhd\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi167.nhhxhd\n/bin/podman: stderr Error: error inspecting object: no such container ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi167.nhhxhd\nDeploy daemon haproxy.nfs.foo.smithi167.nhhxhd ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi167 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2023-11-30T23:10:30Z\" level=warning msg=\"failed, retrying in 1s ... (1/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-11-30T23:11:08Z\" level=warning msg=\"failed, retrying in 1s ... (2/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-11-30T23:11:45Z\" level=warning msg=\"failed, retrying in 1s ... (3/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi167 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-11-30T23:14:53.155795Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi038.njeday on smithi038: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi038-njeday\n/bin/podman: stderr Error: error inspecting object: no such container ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi038-njeday\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi038.njeday\n/bin/podman: stderr Error: error inspecting object: no such container ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi038.njeday\nDeploy daemon haproxy.nfs.foo.smithi038.njeday ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi038 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2023-11-30T23:13:00Z\" level=warning msg=\"failed, retrying in 1s ... (1/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-11-30T23:13:38Z\" level=warning msg=\"failed, retrying in 1s ... (2/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-11-30T23:14:15Z\" level=warning msg=\"failed, retrying in 1s ... (3/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi038 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-11-30T23:14:53.157035Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi038.pwduyd on smithi038: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2023-11-30T23:14:53.158104Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi167.obmcvj on smithi167: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.38/16"}, "status": {"created": "2023-11-30T22:58:56.312786Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.38/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2023-11-30T22:54:41.668043Z", "last_refresh": "2023-11-30T23:09:48.452908Z", "running": 2, "size": 2}}, {"events": ["2023-11-30T22:55:50.759225Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi038:172.21.15.38=smithi038", "smithi167:172.21.15.167=smithi167"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2023-11-30T22:55:50.756456Z", "last_refresh": "2023-11-30T23:09:48.452987Z", "running": 2, "size": 2}}, {"events": ["2023-11-30T22:58:56.311581Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2023-11-30T22:58:56.308071Z", "last_refresh": "2023-11-30T23:09:52.311757Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2023-11-30T22:54:46.136630Z", "last_refresh": "2023-11-30T23:09:48.453061Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2023-11-30T22:56:33.258058Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2023-11-30T22:56:33.253117Z", "last_refresh": "2023-11-30T23:09:48.453131Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2023-11-30T22:54:43.949497Z", "last_refresh": "2023-11-30T23:09:52.311357Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2023-11-30T22:58:52.105721Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2023-11-30T22:58:59.793467Z", "last_refresh": "2023-11-30T23:09:48.453411Z", "ports": [8800], "running": 2, "size": 2}}] 2023-11-30T23:14:54.470 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:14:54 smithi038 conmon[81956]: cluster 2023-11-30T23:14:53.031929+0000 mgr.smithi038.ldalxq (mgr.14182) 960 : cluster [DBG] pgmap v623: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2023-11-30T23:14:54.470 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:14:54 smithi038 conmon[81956]: cephadm 2023-11-30T23:14:53.154752+0000 mgr.smithi038.ldalxq (mgr.14182) 961 : cephadm [ERR] cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi038-njeday 2023-11-30T23:14:54.470 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:14:54 smithi038 conmon[81956]: /bin/podman: stderr Error: error inspecting object: no such container ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi038-njeday 2023-11-30T23:14:54.470 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:14:54 smithi038 conmon[81956]: Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi038.njeday 2023-11-30T23:14:54.470 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:14:54 smithi038 conmon[81956]: /bin/podman: stderr Error: error inspecting object: no such container ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi038.njeday 2023-11-30T23:14:54.470 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:14:54 smithi038 conmon[81956]: Deploy daemon haproxy.nfs.foo.smithi038.njeday ... 2023-11-30T23:14:54.470 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:14:54 smithi038 conmon[81956]: Non-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi038 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2023-11-30T23:14:54.470 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:14:54 smithi038 conmon[81956]: stat: stderr Trying to pull docker.io/library/haproxy:2.3... 2023-11-30T23:14:54.471 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:14:54 smithi038 conmon[81956]: stat: stderr time="2023-11-30T23:13:00Z" level=warning msg="failed, retrying in 1s ... (1/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit" 2023-11-30T23:14:54.471 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:14:54 smithi038 conmon[81956]: stat: stderr time="2023-11-30T23:13:38Z" level=warning msg="failed, retrying in 1s ... (2/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit" 2023-11-30T23:14:54.471 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:14:54 smithi038 conmon[81956]: stat: stderr time="2023-11-30T23:14:15Z" level=warning msg="failed, retrying in 1s ... (3/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit" 2023-11-30T23:14:54.471 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:14:54 smithi038 conmon[81956]: stat: stderr Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get "https://docker-mirror.front.sepia.ceph.com:5000/v2/": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit 2023-11-30T23:14:54.471 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:14:54 smithi038 conmon[81956]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi038 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2023-11-30T23:14:54.471 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:14:54 smithi038 conmon[81956]: Traceback (most recent call last): 2023-11-30T23:14:54.471 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:14:54 smithi038 conmon[81956]: File "/usr/share/ceph/mgr/cephadm/serve.py", line 1538, in _remote_connection 2023-11-30T23:14:54.471 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:14:54 smithi038 conmon[81956]: yield (conn, connr) 2023-11-30T23:14:54.471 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:14:54 smithi038 conmon[81956]: File "/usr/share/ceph/mgr/cephadm/serve.py", line 1426, in _run_cephadm 2023-11-30T23:14:54.471 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:14:54 smithi038 conmon[81956]: code, '\n'.join(err))) 2023-11-30T23:14:54.472 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:14:54 smithi038 conmon[81956]: orchestrator._interface.OrchestratorError: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi038-njeday 2023-11-30T23:14:54.472 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:14:54 smithi038 conmon[81956]: /bin/podman: stderr Error: error inspecting object: no such container ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi038-njeday 2023-11-30T23:14:54.472 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:14:54 smithi038 conmon[81956]: Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi038.njeday 2023-11-30T23:14:54.472 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:14:54 smithi038 conmon[81956]: /bin/podman: stderr Error: error inspecting object: no such container ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi038.njeday 2023-11-30T23:14:54.472 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:14:54 smithi038 conmon[81956]: Deploy daemon haproxy.nfs.foo.smithi038.njeday ... 2023-11-30T23:14:54.472 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:14:54 smithi038 conmon[81956]: Non-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi038 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2023-11-30T23:14:54.472 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:14:54 smithi038 conmon[81956]: stat: stderr Trying to pull docker.io/library/haproxy:2.3... 2023-11-30T23:14:54.472 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:14:54 smithi038 conmon[81956]: stat: stderr time="2023-11-30T23:13:00Z" level=warning msg="failed, retrying in 1s ... (1/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit" 2023-11-30T23:14:54.472 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:14:54 smithi038 conmon[81956]: stat: stderr time="2023-11-30T23:13:38Z" level=warning msg="failed, retrying in 1s ... (2/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit" 2023-11-30T23:14:54.473 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:14:54 smithi038 conmon[81956]: stat: stderr time="2023-11-30T23:14:15Z" level=warning msg="failed, retrying in 1s ... (3/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit" 2023-11-30T23:14:54.473 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:14:54 smithi038 conmon[81956]: stat: stderr Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get "https://docker-mirror.front.sepia.ceph.com:5000/v2/": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit 2023-11-30T23:14:54.473 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:14:54 smithi038 conmon[81956]: ERROR: Failed to extract uid/gid for path /var/lib: Failed 2023-11-30T23:14:54.473 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:14:54 smithi038 conmon[81956]: command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi038 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2023-11-30T23:14:54.473 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:14:54 smithi038 conmon[81956]: cephadm 2023-11-30T23:14:53.154916+0000 mgr.smithi038.ldalxq (mgr.14182) 962 : cephadm [INF] Removing key for client.ingress.nfs.foo.smithi038.njeday 2023-11-30T23:14:54.473 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:14:54 smithi038 conmon[81956]: audit 2023-11-30T23:14:53.155263+0000 mon.smithi038 (mon.0) 715 : audit [INF] from='mgr.14182 172.21.15.38:0/2999689707' entity='mgr.smithi038.ldalxq' cmd=[{"prefix": "auth rm", "entity": "client.ingress.nfs.foo.smithi038.njeday"}]: dispatch 2023-11-30T23:14:54.473 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:14:54 smithi038 conmon[81956]: cephadm 2023-11-30T23:14:53.155884+0000 mgr.smithi038.ldalxq (mgr.14182) 963 : cephadm [ERR] Failed while placing haproxy.nfs.foo.smithi038.njeday on smithi038: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi038-njeday 2023-11-30T23:14:54.473 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:14:54 smithi038 conmon[81956]: /bin/podman: stderr Error: error inspecting object: no such container ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi038-njeday 2023-11-30T23:14:54.473 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:14:54 smithi038 conmon[81956]: Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi038.njeday 2023-11-30T23:14:54.473 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:14:54 smithi038 conmon[81956]: /bin/podman: stderr Error: error inspecting object: no such container ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi038.njeday 2023-11-30T23:14:54.474 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:14:54 smithi038 conmon[81956]: Deploy daemon haproxy.nfs.foo.smithi038.njeday ... 2023-11-30T23:14:54.474 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:14:54 smithi038 conmon[81956]: Non-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi038 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2023-11-30T23:14:54.474 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:14:54 smithi038 conmon[81956]: stat: stderr Trying to pull docker.io/library/haproxy:2.3... 2023-11-30T23:14:54.474 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:14:54 smithi038 conmon[81956]: stat: stderr time="2023-11-30T23:13:00Z" level=warning msg="failed, retrying in 1s ... (1/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit" 2023-11-30T23:14:54.474 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:14:54 smithi038 conmon[81956]: stat: stderr time="2023-11-30T23:13:38Z" level=warning msg="failed, retrying in 1s ... (2/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit" 2023-11-30T23:14:54.474 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:14:54 smithi038 conmon[81956]: stat: stderr time="2023-11-30T23:14:15Z" level=warning msg="failed, retrying in 1s ... (3/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit" 2023-11-30T23:14:54.474 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:14:54 smithi038 conmon[81956]: stat: stderr Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get "https://docker-mirror.front.sepia.ceph.com:5000/v2/": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit 2023-11-30T23:14:54.475 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:14:54 smithi038 conmon[81956]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi038 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2023-11-30T23:14:54.475 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:14:54 smithi038 conmon[81956]: cephadm 2023-11-30T23:14:53.157109+0000 mgr.smithi038.ldalxq (mgr.14182) 964 : cephadm [ERR] Failed while placing keepalived.nfs.foo.smithi038.pwduyd on smithi038: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo 2023-11-30T23:14:54.475 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:14:54 smithi038 conmon[81956]: cephadm 2023-11-30T23:14:53.158208+0000 mgr.smithi038.ldalxq (mgr.14182) 965 : cephadm [ERR] Failed while placing keepalived.nfs.foo.smithi167.obmcvj on smithi167: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo 2023-11-30T23:14:54.475 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:14:54 smithi038 conmon[81956]: cluster 2023-11-30T23:14:53.158893+0000 mgr.smithi038.ldalxq (mgr.14182) 966 : cluster [DBG] pgmap v624: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 101 B/s rd, 0 op/s 2023-11-30T23:14:54.503 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2023-11-30T23:14:54.512 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:14:54 smithi167 conmon[87022]: cluster 2023-11-30T23:14:53.031929+0000 mgr.smithi038.ldalxq (mgr.14182) 960 : cluster [DBG] pgmap v623: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2023-11-30T23:14:54.512 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:14:54 smithi167 conmon[87022]: 2023-11-30T23:14:54.512 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:14:54 smithi167 conmon[87022]: cephadm 2023-11-30T23:14:53.154752+0000 mgr.smithi038.ldalxq (mgr.14182) 961 : cephadm [ERR] cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi038-njeday 2023-11-30T23:14:54.512 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:14:54 smithi167 conmon[87022]: /bin/podman: stderr Error: error inspecting object: no such container ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi038-njeday 2023-11-30T23:14:54.513 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:14:54 smithi167 conmon[87022]: Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi038.njeday 2023-11-30T23:14:54.513 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:14:54 smithi167 conmon[87022]: /bin/podman: stderr Error: error inspecting object: no such container ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi038.njeday 2023-11-30T23:14:54.513 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:14:54 smithi167 conmon[87022]: Deploy daemon haproxy.nfs.foo.smithi038.njeday ... 2023-11-30T23:14:54.513 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:14:54 smithi167 conmon[87022]: Non-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi038 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2023-11-30T23:14:54.513 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:14:54 smithi167 conmon[87022]: stat: stderr Trying to pull docker.io/library/haproxy:2.3... 2023-11-30T23:14:54.513 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:14:54 smithi167 conmon[87022]: stat: stderr time="2023-11-30T23:13:00Z" level=warning msg="failed, retrying in 1s ... (1/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit" 2023-11-30T23:14:54.513 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:14:54 smithi167 conmon[87022]: stat: stderr time="2023-11-30T23:13:38Z" level=warning msg="failed, retrying in 1s ... (2/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit" 2023-11-30T23:14:54.513 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:14:54 smithi167 conmon[87022]: stat: stderr time="2023-11-30T23:14:15Z" level=warning msg="failed, retrying in 1s ... (3/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit" 2023-11-30T23:14:54.513 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:14:54 smithi167 conmon[87022]: stat: stderr Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get "https://docker-mirror.front.sepia.ceph.com:5000/v2/": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit 2023-11-30T23:14:54.513 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:14:54 smithi167 conmon[87022]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi038 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2023-11-30T23:14:54.513 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:14:54 smithi167 conmon[87022]: Traceback (most recent call last): 2023-11-30T23:14:54.513 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:14:54 smithi167 conmon[87022]: File "/usr/share/ceph/mgr/cephadm/serve.py", line 1538, in _remote_connection 2023-11-30T23:14:54.513 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:14:54 smithi167 conmon[87022]: yield (conn, connr) 2023-11-30T23:14:54.514 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:14:54 smithi167 conmon[87022]: File "/usr/share/ceph/mgr/cephadm/serve.py", line 1426, in _run_cephadm 2023-11-30T23:14:54.514 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:14:54 smithi167 conmon[87022]: code, '\n'.join(err))) 2023-11-30T23:14:54.514 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:14:54 smithi167 conmon[87022]: orchestrator._interface.OrchestratorError: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi038-njeday 2023-11-30T23:14:54.514 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:14:54 smithi167 conmon[87022]: /bin/podman: stderr Error: error inspecting object: no such container ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi038-njeday 2023-11-30T23:14:54.514 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:14:54 smithi167 conmon[87022]: Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi038.njeday 2023-11-30T23:14:54.514 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:14:54 smithi167 conmon[87022]: /bin/podman: stderr Error: error inspecting object: no such container ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi038.njeday 2023-11-30T23:14:54.514 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:14:54 smithi167 conmon[87022]: Deploy daemon haproxy.nfs.foo.smithi038.njeday ... 2023-11-30T23:14:54.514 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:14:54 smithi167 conmon[87022]: Non-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi038 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2023-11-30T23:14:54.514 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:14:54 smithi167 conmon[87022]: stat: stderr Trying to pull docker.io/library/haproxy:2.3... 2023-11-30T23:14:54.514 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:14:54 smithi167 conmon[87022]: stat: stderr time="2023-11-30T23:13:00Z" level=warning msg="failed, retrying in 1s ... (1/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit" 2023-11-30T23:14:54.514 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:14:54 smithi167 conmon[87022]: stat: stderr time="2023-11-30T23:13:38Z" level=warning msg="failed, retrying in 1s ... (2/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit" 2023-11-30T23:14:54.515 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:14:54 smithi167 conmon[87022]: stat: stderr time="2023-11-30T23:14:15Z" level=warning msg="failed, retrying in 1s ... (3/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit" 2023-11-30T23:14:54.515 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:14:54 smithi167 conmon[87022]: stat: stderr Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get "https://docker-mirror.front.sepia.ceph.com:5000/v2/": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit 2023-11-30T23:14:54.515 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:14:54 smithi167 conmon[87022]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi038 -e CEPH_USE_RANDOM_NONCE=1 docke 2023-11-30T23:14:54.515 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:14:54 smithi167 conmon[87022]: r.io/library/haproxy:2.3 -c %u %g /var/lib 2023-11-30T23:14:54.515 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:14:54 smithi167 conmon[87022]: cephadm 2023-11-30T23:14:53.154916+0000 mgr.smithi038.ldalxq (mgr.14182) 962 : cephadm [INF] Removing key for client.ingress.nfs.foo.smithi038.njeday 2023-11-30T23:14:54.515 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:14:54 smithi167 conmon[87022]: audit 2023-11-30T23:14:53.155263+0000 mon.smithi038 (mon.0) 715 : audit [INF] from='mgr.14182 172.21.15.38:0/2999689707' entity='mgr.smithi038.ldalxq' cmd=[{"prefix": "auth rm", "entity": "client.ingress.nfs.foo.smithi038.njeday"}]: dispatch 2023-11-30T23:14:54.515 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:14:54 smithi167 conmon[87022]: cephadm 2023-11-30T23:14:53.155884+0000 mgr.smithi038.ldalxq (mgr.14182) 963 : cephadm [ERR] Failed while placing haproxy.nfs.foo.smithi038.njeday on smithi038: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi038-njeday 2023-11-30T23:14:54.515 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:14:54 smithi167 conmon[87022]: /bin/podman: stderr Error: error inspecting object: no such container ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi038-njeday 2023-11-30T23:14:54.515 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:14:54 smithi167 conmon[87022]: Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi038.njeday 2023-11-30T23:14:54.515 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:14:54 smithi167 conmon[87022]: /bin/podman: stderr Error: error inspecting object: no such container ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi038.njeday 2023-11-30T23:14:54.515 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:14:54 smithi167 conmon[87022]: Deploy daemon haproxy.nfs.foo.smithi038.njeday ... 2023-11-30T23:14:54.515 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:14:54 smithi167 conmon[87022]: Non-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi038 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2023-11-30T23:14:54.515 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:14:54 smithi167 conmon[87022]: stat: stderr Trying to pull docker.io/library/haproxy:2.3... 2023-11-30T23:14:54.516 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:14:54 smithi167 conmon[87022]: stat: stderr time="2023-11-30T23:13:00Z" level=warning msg="failed, retrying in 1s ... (1/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit" 2023-11-30T23:14:54.516 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:14:54 smithi167 conmon[87022]: stat: stderr time="2023-11-30T23:13:38Z" level=warning msg="failed, retrying in 1s ... (2/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit" 2023-11-30T23:14:54.516 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:14:54 smithi167 conmon[87022]: stat: stderr time="2023-11-30T23:14:15Z" level=warning msg="failed, retrying in 1s ... (3/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit" 2023-11-30T23:14:54.516 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:14:54 smithi167 conmon[87022]: stat: stderr Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get "https://docker-mirror.front.sepia.ceph.com:5000/v2/": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit 2023-11-30T23:14:54.516 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:14:54 smithi167 conmon[87022]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi038 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2023-11-30T23:14:54.516 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:14:54 smithi167 conmon[87022]: cephadm 2023-11-30T23:14:53.157109+0000 mgr.smithi038.ldalxq (mgr.14182) 964 : cephadm [ERR] Failed while placing keepalived.nfs.foo.smithi038.pwduyd on smithi038: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo 2023-11-30T23:14:54.516 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:14:54 smithi167 conmon[87022]: cephadm 2023-11-30T23:14:53.158208+0000 mgr.smithi038.ldalxq (mgr.14182) 965 : cephadm [ERR] Failed while placing keepalived.nfs.foo.smithi167.obmcvj on smithi167: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo 2023-11-30T23:14:54.516 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:14:54 smithi167 conmon[87022]: cluster 2023-11- 2023-11-30T23:14:54.516 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:14:54 smithi167 conmon[87022]: 30T23:14:53.158893+0000 mgr.smithi038.ldalxq (mgr.14182) 966 : cluster [DBG] pgmap v624: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 101 B/s rd, 0 op/s 2023-11-30T23:14:55.504 DEBUG:teuthology.orchestra.run.smithi038:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:0dc074ce0b0b3b4f393f56dd32ef36884ebf45a9 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 3faf8b00-8fd3-11ee-95a2-87774f69a715 -- ceph orch ls -f json 2023-11-30T23:14:55.512 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:14:55 smithi167 conmon[87022]: audit 2023-11-30T23:14:54.030088+0000 mgr.smithi038.ldalxq (mgr.14182) 967 : audit [DBG] from='client.15780 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-11-30T23:14:55.512 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:14:55 smithi167 conmon[87022]: 2023-11-30T23:14:55.512 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:14:55 smithi167 conmon[87022]: cluster 2023-11-30T23:14:54.097606+0000 mon.smithi038 (mon.0) 716 : cluster [WRN] Health check failed: Failed to place 4 daemon(s) (CEPHADM_DAEMON_PLACE_FAIL) 2023-11-30T23:14:55.524 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:14:55 smithi038 conmon[81956]: audit 2023-11-30T23:14:54.030088+0000 mgr.smithi038.ldalxq (mgr.14182) 967 2023-11-30T23:14:55.524 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:14:55 smithi038 conmon[81956]: : audit [DBG] from='client.15780 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-11-30T23:14:55.524 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:14:55 smithi038 conmon[81956]: cluster 2023-11-30T23:14:54.097606+0000 mon.smithi038 (mon.0) 716 : cluster [WRN] Health check failed: Failed to place 4 daemon(s) (CEPHADM_DAEMON_PLACE_FAIL) 2023-11-30T23:14:56.402 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:14:56 smithi038 conmon[81956]: cluster 2023-11-30T23:14:55.160018+0000 mgr.smithi038.ldalxq (mgr.14182) 968 : cluster [DBG] pgmap v625: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 101 B/s rd, 0 op/s 2023-11-30T23:14:56.512 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:14:56 smithi167 conmon[87022]: cluster 2023-11-30T23:14:55.160018+0000 mgr.smithi038.ldalxq (mgr.14182) 968 : cluster [DBG] pgmap v625: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 101 B/s rd, 0 op/s 2023-11-30T23:14:57.208 INFO:teuthology.orchestra.run.smithi038.stdout: 2023-11-30T23:14:57.208 INFO:teuthology.orchestra.run.smithi038.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2023-11-30T22:54:47.122758Z", "last_refresh": "2023-11-30T23:09:52.311067Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2023-11-30T22:54:42.674972Z", "last_refresh": "2023-11-30T23:09:48.452759Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2023-11-30T22:54:45.114633Z", "last_refresh": "2023-11-30T23:09:52.311222Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2023-11-30T23:09:45.063688Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi167.ndkqyv on smithi167: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2023-11-30T23:12:23.150100Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi167.nhhxhd on smithi167: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi167-nhhxhd\n/bin/podman: stderr Error: error inspecting object: no such container ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi167-nhhxhd\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi167.nhhxhd\n/bin/podman: stderr Error: error inspecting object: no such container ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi167.nhhxhd\nDeploy daemon haproxy.nfs.foo.smithi167.nhhxhd ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi167 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2023-11-30T23:10:30Z\" level=warning msg=\"failed, retrying in 1s ... (1/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-11-30T23:11:08Z\" level=warning msg=\"failed, retrying in 1s ... (2/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-11-30T23:11:45Z\" level=warning msg=\"failed, retrying in 1s ... (3/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi167 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-11-30T23:14:53.155795Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi038.njeday on smithi038: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi038-njeday\n/bin/podman: stderr Error: error inspecting object: no such container ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi038-njeday\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi038.njeday\n/bin/podman: stderr Error: error inspecting object: no such container ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi038.njeday\nDeploy daemon haproxy.nfs.foo.smithi038.njeday ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi038 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2023-11-30T23:13:00Z\" level=warning msg=\"failed, retrying in 1s ... (1/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-11-30T23:13:38Z\" level=warning msg=\"failed, retrying in 1s ... (2/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-11-30T23:14:15Z\" level=warning msg=\"failed, retrying in 1s ... (3/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi038 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-11-30T23:14:53.157035Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi038.pwduyd on smithi038: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2023-11-30T23:14:53.158104Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi167.obmcvj on smithi167: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.38/16"}, "status": {"created": "2023-11-30T22:58:56.312786Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.38/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2023-11-30T22:54:41.668043Z", "last_refresh": "2023-11-30T23:09:48.452908Z", "running": 2, "size": 2}}, {"events": ["2023-11-30T22:55:50.759225Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi038:172.21.15.38=smithi038", "smithi167:172.21.15.167=smithi167"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2023-11-30T22:55:50.756456Z", "last_refresh": "2023-11-30T23:09:48.452987Z", "running": 2, "size": 2}}, {"events": ["2023-11-30T22:58:56.311581Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2023-11-30T22:58:56.308071Z", "last_refresh": "2023-11-30T23:09:52.311757Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2023-11-30T22:54:46.136630Z", "last_refresh": "2023-11-30T23:09:48.453061Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2023-11-30T22:56:33.258058Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2023-11-30T22:56:33.253117Z", "last_refresh": "2023-11-30T23:09:48.453131Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2023-11-30T22:54:43.949497Z", "last_refresh": "2023-11-30T23:09:52.311357Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2023-11-30T22:58:52.105721Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2023-11-30T22:58:59.793467Z", "last_refresh": "2023-11-30T23:09:48.453411Z", "ports": [8800], "running": 2, "size": 2}}] 2023-11-30T23:14:57.664 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2023-11-30T23:14:58.262 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:14:57 smithi167 conmon[87022]: audit 2023-11-30T23:14:56.990666+0000 mon.smithi038 (mon.0) 717 : audit [INF] from='mgr.14182 172.21.15.38:0/2999689707' entity='mgr.smithi038.ldalxq' 2023-11-30T23:14:58.262 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:14:57 smithi167 conmon[87022]: 2023-11-30T23:14:58.262 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:14:57 smithi167 conmon[87022]: cluster 2023-11-30T23:14:57.160713+0000 mgr.smithi038.ldalxq (mgr.14182) 969 : cluster [DBG] pgmap v626: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 101 B/s rd, 0 op/s 2023-11-30T23:14:58.262 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:14:57 smithi167 conmon[87022]: audit 2023-11-30T23:14:57.204287+0000 mgr.smithi038.ldalxq (mgr.14182) 970 : audit [DBG] from='client.15784 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-11-30T23:14:58.262 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:14:57 smithi167 conmon[87022]: audit 2023-11 2023-11-30T23:14:58.262 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:14:57 smithi167 conmon[87022]: -30T23:14:57.354733+0000 mon.smithi038 (mon.0) 718 : audit [INF] from='mgr.14182 172.21.15.38:0/2999689707' entity='mgr.smithi038.ldalxq' 2023-11-30T23:14:58.274 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:14:57 smithi038 conmon[81956]: audit 2023-11-30T23:14:56.990666+0000 mon.smithi038 (mon.0 2023-11-30T23:14:58.274 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:14:57 smithi038 conmon[81956]: ) 717 : audit [INF] from='mgr.14182 172.21.15.38:0/2999689707' entity='mgr.smithi038.ldalxq' 2023-11-30T23:14:58.274 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:14:57 smithi038 conmon[81956]: cluster 2023-11-30T23:14:57.160713+0000 mgr.smithi038.ldalxq (mgr.14182) 969 : cluster [DBG] pgmap v626: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 101 B/s rd, 0 op/s 2023-11-30T23:14:58.274 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:14:57 smithi038 conmon[81956]: audit 2023-11-30T23:14:57.204287+0000 mgr.smithi038.ldalxq (mgr.14182) 970 : audit [DBG] from='client.15784 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-11-30T23:14:58.274 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:14:57 smithi038 conmon[81956]: audit 2023-11-30T23:14:57.354733+0000 mon.smithi038 (mon.0) 718 : audit [INF] from='mgr.14182 172.21.15.38:0/2999689707' entity='mgr.smithi038.ldalxq' 2023-11-30T23:14:58.666 DEBUG:teuthology.orchestra.run.smithi038:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:0dc074ce0b0b3b4f393f56dd32ef36884ebf45a9 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 3faf8b00-8fd3-11ee-95a2-87774f69a715 -- ceph orch ls -f json 2023-11-30T23:15:00.356 INFO:teuthology.orchestra.run.smithi038.stdout: 2023-11-30T23:15:00.356 INFO:teuthology.orchestra.run.smithi038.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2023-11-30T22:54:47.122758Z", "last_refresh": "2023-11-30T23:09:52.311067Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2023-11-30T22:54:42.674972Z", "last_refresh": "2023-11-30T23:09:48.452759Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2023-11-30T22:54:45.114633Z", "last_refresh": "2023-11-30T23:09:52.311222Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2023-11-30T23:09:45.063688Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi167.ndkqyv on smithi167: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2023-11-30T23:12:23.150100Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi167.nhhxhd on smithi167: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi167-nhhxhd\n/bin/podman: stderr Error: error inspecting object: no such container ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi167-nhhxhd\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi167.nhhxhd\n/bin/podman: stderr Error: error inspecting object: no such container ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi167.nhhxhd\nDeploy daemon haproxy.nfs.foo.smithi167.nhhxhd ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi167 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2023-11-30T23:10:30Z\" level=warning msg=\"failed, retrying in 1s ... (1/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-11-30T23:11:08Z\" level=warning msg=\"failed, retrying in 1s ... (2/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-11-30T23:11:45Z\" level=warning msg=\"failed, retrying in 1s ... (3/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi167 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-11-30T23:14:53.155795Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi038.njeday on smithi038: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi038-njeday\n/bin/podman: stderr Error: error inspecting object: no such container ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi038-njeday\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi038.njeday\n/bin/podman: stderr Error: error inspecting object: no such container ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi038.njeday\nDeploy daemon haproxy.nfs.foo.smithi038.njeday ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi038 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2023-11-30T23:13:00Z\" level=warning msg=\"failed, retrying in 1s ... (1/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-11-30T23:13:38Z\" level=warning msg=\"failed, retrying in 1s ... (2/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-11-30T23:14:15Z\" level=warning msg=\"failed, retrying in 1s ... (3/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi038 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-11-30T23:14:53.157035Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi038.pwduyd on smithi038: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2023-11-30T23:14:53.158104Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi167.obmcvj on smithi167: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.38/16"}, "status": {"created": "2023-11-30T22:58:56.312786Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.38/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2023-11-30T22:54:41.668043Z", "last_refresh": "2023-11-30T23:09:48.452908Z", "running": 2, "size": 2}}, {"events": ["2023-11-30T22:55:50.759225Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi038:172.21.15.38=smithi038", "smithi167:172.21.15.167=smithi167"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2023-11-30T22:55:50.756456Z", "last_refresh": "2023-11-30T23:09:48.452987Z", "running": 2, "size": 2}}, {"events": ["2023-11-30T22:58:56.311581Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2023-11-30T22:58:56.308071Z", "last_refresh": "2023-11-30T23:09:52.311757Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2023-11-30T22:54:46.136630Z", "last_refresh": "2023-11-30T23:09:48.453061Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2023-11-30T22:56:33.258058Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2023-11-30T22:56:33.253117Z", "last_refresh": "2023-11-30T23:09:48.453131Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2023-11-30T22:54:43.949497Z", "last_refresh": "2023-11-30T23:09:52.311357Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2023-11-30T22:58:52.105721Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2023-11-30T22:58:59.793467Z", "last_refresh": "2023-11-30T23:09:48.453411Z", "ports": [8800], "running": 2, "size": 2}}] 2023-11-30T23:15:00.512 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:15:00 smithi167 conmon[87022]: cluster 2023-11-30T23:14:59.161568+0000 mgr.smithi038.ldalxq (mgr.14182) 971 : cluster [DBG] pgmap v627: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 101 B/s rd, 0 op/s 2023-11-30T23:15:00.524 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:15:00 smithi038 conmon[81956]: cluster 2023-11-30T23:14:59.161568+0000 2023-11-30T23:15:00.524 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:15:00 smithi038 conmon[81956]: mgr.smithi038.ldalxq (mgr.14182) 971 : cluster [DBG] pgmap v627: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 101 B/s rd, 0 op/s 2023-11-30T23:15:00.827 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2023-11-30T23:15:01.512 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:15:01 smithi167 conmon[87022]: audit 2023-11-30T23:15:00.350808+0000 mgr.smithi038.ldalxq (mgr.14182) 972 : audit [DBG] from='client.15788 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-11-30T23:15:01.512 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:15:01 smithi167 conmon[87022]: 2023-11-30T23:15:01.524 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:15:01 smithi038 conmon[81956]: audit 2023-11-30T23:15:00.350808+0000 mgr.smithi038.ldalxq (mgr. 2023-11-30T23:15:01.524 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:15:01 smithi038 conmon[81956]: 14182) 972 : audit [DBG] from='client.15788 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-11-30T23:15:01.829 DEBUG:teuthology.orchestra.run.smithi038:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:0dc074ce0b0b3b4f393f56dd32ef36884ebf45a9 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 3faf8b00-8fd3-11ee-95a2-87774f69a715 -- ceph orch ls -f json 2023-11-30T23:15:02.512 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:15:02 smithi167 conmon[87022]: cluster 2023-11-30T23:15:01.162685+0000 mgr.smithi038.ldalxq (mgr.14182) 973 : cluster [DBG] pgmap v628: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 101 B/s rd, 0 op/s 2023-11-30T23:15:02.512 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:15:02 smithi167 conmon[87022]: 2023-11-30T23:15:02.525 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:15:02 smithi038 conmon[81956]: cluster 2023-11-30T23:15: 2023-11-30T23:15:02.526 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:15:02 smithi038 conmon[81956]: 01.162685+0000 mgr.smithi038.ldalxq (mgr.14182) 973 : cluster [DBG] pgmap v628: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 101 B/s rd, 0 op/s 2023-11-30T23:15:03.584 INFO:teuthology.orchestra.run.smithi038.stdout: 2023-11-30T23:15:03.584 INFO:teuthology.orchestra.run.smithi038.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2023-11-30T22:54:47.122758Z", "last_refresh": "2023-11-30T23:09:52.311067Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2023-11-30T22:54:42.674972Z", "last_refresh": "2023-11-30T23:09:48.452759Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2023-11-30T22:54:45.114633Z", "last_refresh": "2023-11-30T23:09:52.311222Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2023-11-30T23:09:45.063688Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi167.ndkqyv on smithi167: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2023-11-30T23:12:23.150100Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi167.nhhxhd on smithi167: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi167-nhhxhd\n/bin/podman: stderr Error: error inspecting object: no such container ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi167-nhhxhd\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi167.nhhxhd\n/bin/podman: stderr Error: error inspecting object: no such container ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi167.nhhxhd\nDeploy daemon haproxy.nfs.foo.smithi167.nhhxhd ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi167 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2023-11-30T23:10:30Z\" level=warning msg=\"failed, retrying in 1s ... (1/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-11-30T23:11:08Z\" level=warning msg=\"failed, retrying in 1s ... (2/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-11-30T23:11:45Z\" level=warning msg=\"failed, retrying in 1s ... (3/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi167 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-11-30T23:14:53.155795Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi038.njeday on smithi038: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi038-njeday\n/bin/podman: stderr Error: error inspecting object: no such container ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi038-njeday\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi038.njeday\n/bin/podman: stderr Error: error inspecting object: no such container ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi038.njeday\nDeploy daemon haproxy.nfs.foo.smithi038.njeday ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi038 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2023-11-30T23:13:00Z\" level=warning msg=\"failed, retrying in 1s ... (1/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-11-30T23:13:38Z\" level=warning msg=\"failed, retrying in 1s ... (2/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-11-30T23:14:15Z\" level=warning msg=\"failed, retrying in 1s ... (3/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi038 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-11-30T23:14:53.157035Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi038.pwduyd on smithi038: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2023-11-30T23:14:53.158104Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi167.obmcvj on smithi167: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.38/16"}, "status": {"created": "2023-11-30T22:58:56.312786Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.38/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2023-11-30T22:54:41.668043Z", "last_refresh": "2023-11-30T23:09:48.452908Z", "running": 2, "size": 2}}, {"events": ["2023-11-30T22:55:50.759225Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi038:172.21.15.38=smithi038", "smithi167:172.21.15.167=smithi167"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2023-11-30T22:55:50.756456Z", "last_refresh": "2023-11-30T23:09:48.452987Z", "running": 2, "size": 2}}, {"events": ["2023-11-30T22:58:56.311581Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2023-11-30T22:58:56.308071Z", "last_refresh": "2023-11-30T23:09:52.311757Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2023-11-30T22:54:46.136630Z", "last_refresh": "2023-11-30T23:09:48.453061Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2023-11-30T22:56:33.258058Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2023-11-30T22:56:33.253117Z", "last_refresh": "2023-11-30T23:09:48.453131Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2023-11-30T22:54:43.949497Z", "last_refresh": "2023-11-30T23:09:52.311357Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2023-11-30T22:58:52.105721Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2023-11-30T22:58:59.793467Z", "last_refresh": "2023-11-30T23:09:48.453411Z", "ports": [8800], "running": 2, "size": 2}}] 2023-11-30T23:15:03.993 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2023-11-30T23:15:04.512 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:15:04 smithi167 conmon[87022]: cluster 2023-11-30T23:15:03.163722+0000 mgr.smithi038.ldalxq (mgr.14182) 974 : cluster [DBG] pgmap v629: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 101 B/s rd, 0 op/s 2023-11-30T23:15:04.512 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:15:04 smithi167 conmon[87022]: audit 2023-11-30T23:15:03.580411+0000 mgr.smithi038.ldalxq (mgr.14182) 975 : audit [DBG] from='client.15792 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-11-30T23:15:04.524 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:15:04 smithi038 conmon[81956]: cluster 2023-11-30T23:15:03.163722+0000 mgr.smithi038.ldalxq (mgr.14182) 974 : cluster [DBG] pgmap v629: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 101 B/s rd, 0 op/s 2023-11-30T23:15:04.524 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:15:04 smithi038 conmon[81956]: audit 2023-11-30T23:15:03.580411+0000 mgr.smithi038.ldalxq (mgr.14182) 975 : audit [DBG] from='client.15792 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-11-30T23:15:04.994 DEBUG:teuthology.orchestra.run.smithi038:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:0dc074ce0b0b3b4f393f56dd32ef36884ebf45a9 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 3faf8b00-8fd3-11ee-95a2-87774f69a715 -- ceph orch ls -f json 2023-11-30T23:15:06.512 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:15:06 smithi167 conmon[87022]: cluster 2023-11-30T23:15:05.164617+0000 mgr.smithi038.ldalxq (mgr.14182) 976 : cluster [DBG] pgmap v630: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2023-11-30T23:15:06.524 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:15:06 smithi038 conmon[81956]: cluster 2023-11-30T23:15:05.164617+0000 mgr.smithi038.ldalxq (mgr.14182) 976 : cluster [DBG] pgmap v630: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2023-11-30T23:15:06.718 INFO:teuthology.orchestra.run.smithi038.stdout: 2023-11-30T23:15:06.718 INFO:teuthology.orchestra.run.smithi038.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2023-11-30T22:54:47.122758Z", "last_refresh": "2023-11-30T23:09:52.311067Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2023-11-30T22:54:42.674972Z", "last_refresh": "2023-11-30T23:09:48.452759Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2023-11-30T22:54:45.114633Z", "last_refresh": "2023-11-30T23:09:52.311222Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2023-11-30T23:09:45.063688Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi167.ndkqyv on smithi167: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2023-11-30T23:12:23.150100Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi167.nhhxhd on smithi167: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi167-nhhxhd\n/bin/podman: stderr Error: error inspecting object: no such container ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi167-nhhxhd\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi167.nhhxhd\n/bin/podman: stderr Error: error inspecting object: no such container ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi167.nhhxhd\nDeploy daemon haproxy.nfs.foo.smithi167.nhhxhd ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi167 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2023-11-30T23:10:30Z\" level=warning msg=\"failed, retrying in 1s ... (1/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-11-30T23:11:08Z\" level=warning msg=\"failed, retrying in 1s ... (2/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-11-30T23:11:45Z\" level=warning msg=\"failed, retrying in 1s ... (3/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi167 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-11-30T23:14:53.155795Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi038.njeday on smithi038: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi038-njeday\n/bin/podman: stderr Error: error inspecting object: no such container ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi038-njeday\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi038.njeday\n/bin/podman: stderr Error: error inspecting object: no such container ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi038.njeday\nDeploy daemon haproxy.nfs.foo.smithi038.njeday ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi038 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2023-11-30T23:13:00Z\" level=warning msg=\"failed, retrying in 1s ... (1/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-11-30T23:13:38Z\" level=warning msg=\"failed, retrying in 1s ... (2/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-11-30T23:14:15Z\" level=warning msg=\"failed, retrying in 1s ... (3/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi038 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-11-30T23:14:53.157035Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi038.pwduyd on smithi038: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2023-11-30T23:14:53.158104Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi167.obmcvj on smithi167: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.38/16"}, "status": {"created": "2023-11-30T22:58:56.312786Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.38/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2023-11-30T22:54:41.668043Z", "last_refresh": "2023-11-30T23:09:48.452908Z", "running": 2, "size": 2}}, {"events": ["2023-11-30T22:55:50.759225Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi038:172.21.15.38=smithi038", "smithi167:172.21.15.167=smithi167"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2023-11-30T22:55:50.756456Z", "last_refresh": "2023-11-30T23:09:48.452987Z", "running": 2, "size": 2}}, {"events": ["2023-11-30T22:58:56.311581Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2023-11-30T22:58:56.308071Z", "last_refresh": "2023-11-30T23:09:52.311757Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2023-11-30T22:54:46.136630Z", "last_refresh": "2023-11-30T23:09:48.453061Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2023-11-30T22:56:33.258058Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2023-11-30T22:56:33.253117Z", "last_refresh": "2023-11-30T23:09:48.453131Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2023-11-30T22:54:43.949497Z", "last_refresh": "2023-11-30T23:09:52.311357Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2023-11-30T22:58:52.105721Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2023-11-30T22:58:59.793467Z", "last_refresh": "2023-11-30T23:09:48.453411Z", "ports": [8800], "running": 2, "size": 2}}] 2023-11-30T23:15:07.159 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2023-11-30T23:15:07.512 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:15:07 smithi167 conmon[87022]: audit 2023-11-30T23:15:06.713845+0000 mgr.smithi038.ldalxq (mgr.14182) 977 : audit [DBG] from='client.15796 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-11-30T23:15:07.524 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:15:07 smithi038 conmon[81956]: audit 2023-11-30T23:15:06.713845+0000 2023-11-30T23:15:07.524 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:15:07 smithi038 conmon[81956]: mgr.smithi038.ldalxq (mgr.14182) 977 : audit [DBG] from='client.15796 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-11-30T23:15:08.160 DEBUG:teuthology.orchestra.run.smithi038:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:0dc074ce0b0b3b4f393f56dd32ef36884ebf45a9 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 3faf8b00-8fd3-11ee-95a2-87774f69a715 -- ceph orch ls -f json 2023-11-30T23:15:08.512 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:15:08 smithi167 conmon[87022]: cluster 2023-11-30T23:15:07.165336+0000 mgr.smithi038.ldalxq (mgr.14182) 978 : cluster [DBG] pgmap v631: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2023-11-30T23:15:08.524 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:15:08 smithi038 conmon[81956]: cluster 2023-11-30T23:15:07.165336+0000 mgr.smithi038.ldalxq (mgr. 2023-11-30T23:15:08.524 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:15:08 smithi038 conmon[81956]: 14182) 978 : cluster [DBG] pgmap v631: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2023-11-30T23:15:09.775 INFO:teuthology.orchestra.run.smithi038.stdout: 2023-11-30T23:15:09.776 INFO:teuthology.orchestra.run.smithi038.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2023-11-30T22:54:47.122758Z", "last_refresh": "2023-11-30T23:09:52.311067Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2023-11-30T22:54:42.674972Z", "last_refresh": "2023-11-30T23:09:48.452759Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2023-11-30T22:54:45.114633Z", "last_refresh": "2023-11-30T23:09:52.311222Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2023-11-30T23:09:45.063688Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi167.ndkqyv on smithi167: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2023-11-30T23:12:23.150100Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi167.nhhxhd on smithi167: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi167-nhhxhd\n/bin/podman: stderr Error: error inspecting object: no such container ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi167-nhhxhd\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi167.nhhxhd\n/bin/podman: stderr Error: error inspecting object: no such container ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi167.nhhxhd\nDeploy daemon haproxy.nfs.foo.smithi167.nhhxhd ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi167 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2023-11-30T23:10:30Z\" level=warning msg=\"failed, retrying in 1s ... (1/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-11-30T23:11:08Z\" level=warning msg=\"failed, retrying in 1s ... (2/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-11-30T23:11:45Z\" level=warning msg=\"failed, retrying in 1s ... (3/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi167 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-11-30T23:14:53.155795Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi038.njeday on smithi038: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi038-njeday\n/bin/podman: stderr Error: error inspecting object: no such container ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi038-njeday\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi038.njeday\n/bin/podman: stderr Error: error inspecting object: no such container ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi038.njeday\nDeploy daemon haproxy.nfs.foo.smithi038.njeday ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi038 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2023-11-30T23:13:00Z\" level=warning msg=\"failed, retrying in 1s ... (1/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-11-30T23:13:38Z\" level=warning msg=\"failed, retrying in 1s ... (2/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-11-30T23:14:15Z\" level=warning msg=\"failed, retrying in 1s ... (3/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi038 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-11-30T23:14:53.157035Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi038.pwduyd on smithi038: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2023-11-30T23:14:53.158104Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi167.obmcvj on smithi167: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.38/16"}, "status": {"created": "2023-11-30T22:58:56.312786Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.38/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2023-11-30T22:54:41.668043Z", "last_refresh": "2023-11-30T23:09:48.452908Z", "running": 2, "size": 2}}, {"events": ["2023-11-30T22:55:50.759225Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi038:172.21.15.38=smithi038", "smithi167:172.21.15.167=smithi167"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2023-11-30T22:55:50.756456Z", "last_refresh": "2023-11-30T23:09:48.452987Z", "running": 2, "size": 2}}, {"events": ["2023-11-30T22:58:56.311581Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2023-11-30T22:58:56.308071Z", "last_refresh": "2023-11-30T23:09:52.311757Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2023-11-30T22:54:46.136630Z", "last_refresh": "2023-11-30T23:09:48.453061Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2023-11-30T22:56:33.258058Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2023-11-30T22:56:33.253117Z", "last_refresh": "2023-11-30T23:09:48.453131Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2023-11-30T22:54:43.949497Z", "last_refresh": "2023-11-30T23:09:52.311357Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2023-11-30T22:58:52.105721Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2023-11-30T22:58:59.793467Z", "last_refresh": "2023-11-30T23:09:48.453411Z", "ports": [8800], "running": 2, "size": 2}}] 2023-11-30T23:15:10.210 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2023-11-30T23:15:10.512 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:15:10 smithi167 conmon[87022]: cluster 2023-11-30T23:15:09.166033+0000 mgr.smithi038.ldalxq (mgr.14182) 979 : cluster [DBG] pgmap v632: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2023-11-30T23:15:10.524 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:15:10 smithi038 conmon[81956]: cluster 2023-11-30T23:15:09.166033+0000 mgr.smithi038.ldalxq (mgr.14182) 979 : cluster [DBG] pgmap v632: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2023-11-30T23:15:11.212 DEBUG:teuthology.orchestra.run.smithi038:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:0dc074ce0b0b3b4f393f56dd32ef36884ebf45a9 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 3faf8b00-8fd3-11ee-95a2-87774f69a715 -- ceph orch ls -f json 2023-11-30T23:15:11.512 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:15:11 smithi167 conmon[87022]: audit 2023-11-30T23:15:09.771634+0000 mgr.smithi038.ldalxq (mgr.14182) 980 : 2023-11-30T23:15:11.512 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:15:11 smithi167 conmon[87022]: audit [DBG] from='client.15800 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-11-30T23:15:11.524 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:15:11 smithi038 conmon[81956]: audit 2023-11-30T23:15:09.771634+0000 mgr.smithi038.ldalxq (mgr.14182 2023-11-30T23:15:11.524 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:15:11 smithi038 conmon[81956]: ) 980 : audit [DBG] from='client.15800 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-11-30T23:15:12.512 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:15:12 smithi167 conmon[87022]: cluster 2023-11-30T23:15:11.166974+0000 mgr.smithi038.ldalxq (mgr.14182) 981 : cluster [DBG] pgmap v633: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2023-11-30T23:15:12.518 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:15:12 smithi038 conmon[81956]: cluster 2023-11-30T23:15:11.166974+0000 mgr.smithi038.ldalxq (mgr 2023-11-30T23:15:12.518 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:15:12 smithi038 conmon[81956]: .14182) 981 : cluster [DBG] pgmap v633: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2023-11-30T23:15:12.923 INFO:teuthology.orchestra.run.smithi038.stdout: 2023-11-30T23:15:12.923 INFO:teuthology.orchestra.run.smithi038.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2023-11-30T22:54:47.122758Z", "last_refresh": "2023-11-30T23:09:52.311067Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2023-11-30T22:54:42.674972Z", "last_refresh": "2023-11-30T23:09:48.452759Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2023-11-30T22:54:45.114633Z", "last_refresh": "2023-11-30T23:09:52.311222Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2023-11-30T23:09:45.063688Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi167.ndkqyv on smithi167: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2023-11-30T23:12:23.150100Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi167.nhhxhd on smithi167: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi167-nhhxhd\n/bin/podman: stderr Error: error inspecting object: no such container ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi167-nhhxhd\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi167.nhhxhd\n/bin/podman: stderr Error: error inspecting object: no such container ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi167.nhhxhd\nDeploy daemon haproxy.nfs.foo.smithi167.nhhxhd ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi167 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2023-11-30T23:10:30Z\" level=warning msg=\"failed, retrying in 1s ... (1/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-11-30T23:11:08Z\" level=warning msg=\"failed, retrying in 1s ... (2/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-11-30T23:11:45Z\" level=warning msg=\"failed, retrying in 1s ... (3/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi167 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-11-30T23:14:53.155795Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi038.njeday on smithi038: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi038-njeday\n/bin/podman: stderr Error: error inspecting object: no such container ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi038-njeday\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi038.njeday\n/bin/podman: stderr Error: error inspecting object: no such container ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi038.njeday\nDeploy daemon haproxy.nfs.foo.smithi038.njeday ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi038 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2023-11-30T23:13:00Z\" level=warning msg=\"failed, retrying in 1s ... (1/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-11-30T23:13:38Z\" level=warning msg=\"failed, retrying in 1s ... (2/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-11-30T23:14:15Z\" level=warning msg=\"failed, retrying in 1s ... (3/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi038 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-11-30T23:14:53.157035Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi038.pwduyd on smithi038: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2023-11-30T23:14:53.158104Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi167.obmcvj on smithi167: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.38/16"}, "status": {"created": "2023-11-30T22:58:56.312786Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.38/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2023-11-30T22:54:41.668043Z", "last_refresh": "2023-11-30T23:09:48.452908Z", "running": 2, "size": 2}}, {"events": ["2023-11-30T22:55:50.759225Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi038:172.21.15.38=smithi038", "smithi167:172.21.15.167=smithi167"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2023-11-30T22:55:50.756456Z", "last_refresh": "2023-11-30T23:09:48.452987Z", "running": 2, "size": 2}}, {"events": ["2023-11-30T22:58:56.311581Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2023-11-30T22:58:56.308071Z", "last_refresh": "2023-11-30T23:09:52.311757Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2023-11-30T22:54:46.136630Z", "last_refresh": "2023-11-30T23:09:48.453061Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2023-11-30T22:56:33.258058Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2023-11-30T22:56:33.253117Z", "last_refresh": "2023-11-30T23:09:48.453131Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2023-11-30T22:54:43.949497Z", "last_refresh": "2023-11-30T23:09:52.311357Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2023-11-30T22:58:52.105721Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2023-11-30T22:58:59.793467Z", "last_refresh": "2023-11-30T23:09:48.453411Z", "ports": [8800], "running": 2, "size": 2}}] 2023-11-30T23:15:13.366 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2023-11-30T23:15:14.366 DEBUG:teuthology.orchestra.run.smithi038:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:0dc074ce0b0b3b4f393f56dd32ef36884ebf45a9 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 3faf8b00-8fd3-11ee-95a2-87774f69a715 -- ceph orch ls -f json 2023-11-30T23:15:14.512 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:15:14 smithi167 conmon[87022]: audit 2023-11-30T23:15:12.918910+0000 mgr.smithi038.ldalxq (mgr.14182) 982 : audit [DBG] 2023-11-30T23:15:14.512 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:15:14 smithi167 conmon[87022]: from='client.15804 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-11-30T23:15:14.512 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:15:14 smithi167 conmon[87022]: cluster 2023-11-30T23:15:13.167765+0000 mgr.smithi038.ldalxq (mgr.14182) 983 : cluster [DBG] pgmap v634: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2023-11-30T23:15:14.524 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:15:14 smithi038 conmon[81956]: audit 2023-11-30T23:15:12.918910+0000 mgr.smithi038.ldalxq (mgr.14182) 982 : audit [DBG] from='client.15804 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-11-30T23:15:14.524 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:15:14 smithi038 conmon[81956]: cluster 2023-11-30T23:15:13.167765+0000 mgr.smithi038.ldalxq (mgr.14182) 983 : cluster [DBG] pgmap v634: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2023-11-30T23:15:16.237 INFO:teuthology.orchestra.run.smithi038.stdout: 2023-11-30T23:15:16.237 INFO:teuthology.orchestra.run.smithi038.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2023-11-30T22:54:47.122758Z", "last_refresh": "2023-11-30T23:09:52.311067Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2023-11-30T22:54:42.674972Z", "last_refresh": "2023-11-30T23:09:48.452759Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2023-11-30T22:54:45.114633Z", "last_refresh": "2023-11-30T23:09:52.311222Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2023-11-30T23:09:45.063688Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi167.ndkqyv on smithi167: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2023-11-30T23:12:23.150100Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi167.nhhxhd on smithi167: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi167-nhhxhd\n/bin/podman: stderr Error: error inspecting object: no such container ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi167-nhhxhd\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi167.nhhxhd\n/bin/podman: stderr Error: error inspecting object: no such container ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi167.nhhxhd\nDeploy daemon haproxy.nfs.foo.smithi167.nhhxhd ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi167 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2023-11-30T23:10:30Z\" level=warning msg=\"failed, retrying in 1s ... (1/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-11-30T23:11:08Z\" level=warning msg=\"failed, retrying in 1s ... (2/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-11-30T23:11:45Z\" level=warning msg=\"failed, retrying in 1s ... (3/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi167 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-11-30T23:14:53.155795Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi038.njeday on smithi038: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi038-njeday\n/bin/podman: stderr Error: error inspecting object: no such container ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi038-njeday\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi038.njeday\n/bin/podman: stderr Error: error inspecting object: no such container ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi038.njeday\nDeploy daemon haproxy.nfs.foo.smithi038.njeday ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi038 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2023-11-30T23:13:00Z\" level=warning msg=\"failed, retrying in 1s ... (1/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-11-30T23:13:38Z\" level=warning msg=\"failed, retrying in 1s ... (2/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-11-30T23:14:15Z\" level=warning msg=\"failed, retrying in 1s ... (3/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi038 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-11-30T23:14:53.157035Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi038.pwduyd on smithi038: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2023-11-30T23:14:53.158104Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi167.obmcvj on smithi167: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.38/16"}, "status": {"created": "2023-11-30T22:58:56.312786Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.38/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2023-11-30T22:54:41.668043Z", "last_refresh": "2023-11-30T23:09:48.452908Z", "running": 2, "size": 2}}, {"events": ["2023-11-30T22:55:50.759225Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi038:172.21.15.38=smithi038", "smithi167:172.21.15.167=smithi167"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2023-11-30T22:55:50.756456Z", "last_refresh": "2023-11-30T23:09:48.452987Z", "running": 2, "size": 2}}, {"events": ["2023-11-30T22:58:56.311581Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2023-11-30T22:58:56.308071Z", "last_refresh": "2023-11-30T23:09:52.311757Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2023-11-30T22:54:46.136630Z", "last_refresh": "2023-11-30T23:09:48.453061Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2023-11-30T22:56:33.258058Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2023-11-30T22:56:33.253117Z", "last_refresh": "2023-11-30T23:09:48.453131Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2023-11-30T22:54:43.949497Z", "last_refresh": "2023-11-30T23:09:52.311357Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2023-11-30T22:58:52.105721Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2023-11-30T22:58:59.793467Z", "last_refresh": "2023-11-30T23:09:48.453411Z", "ports": [8800], "running": 2, "size": 2}}] 2023-11-30T23:15:16.524 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:15:16 smithi038 conmon[81956]: cluster 2023-11-30T23:15 2023-11-30T23:15:16.524 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:15:16 smithi038 conmon[81956]: :15.168632+0000 mgr.smithi038.ldalxq (mgr.14182) 984 : cluster [DBG] pgmap v635: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2023-11-30T23:15:16.636 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2023-11-30T23:15:16.762 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:15:16 smithi167 conmon[87022]: cluster 2023-11-30T23:15:15.168632+0000 mgr.smithi038.ldalxq (mgr.14182) 984 : cluster [DBG] pgmap v635: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2023-11-30T23:15:17.524 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:15:17 smithi038 conmon[81956]: audit 2023-11-30T23:15:16.230568+0000 mgr.smithi038.ldalxq (mgr.14182) 985 : audit 2023-11-30T23:15:17.524 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:15:17 smithi038 conmon[81956]: [DBG] from='client.15808 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-11-30T23:15:17.638 DEBUG:teuthology.orchestra.run.smithi038:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:0dc074ce0b0b3b4f393f56dd32ef36884ebf45a9 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 3faf8b00-8fd3-11ee-95a2-87774f69a715 -- ceph orch ls -f json 2023-11-30T23:15:17.762 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:15:17 smithi167 conmon[87022]: audit 2023-11-30T23:15:16.230568+0000 mgr.smithi038.ldalxq (mgr.14182) 985 : audit [DBG] from='client.15808 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-11-30T23:15:18.524 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:15:18 smithi038 conmon[81956]: cluster 2023-11-30T23:15:17.169432+0000 mgr.smithi038.ldalxq (mgr.14182) 986 : cluster [DBG] pgmap v636: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2023-11-30T23:15:18.762 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:15:18 smithi167 conmon[87022]: cluster 2023-11-30T23:15:17.169432+0000 mgr.smithi038.ldalxq (mgr.14182) 986 : cluster [DBG] pgmap v636: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2023-11-30T23:15:19.354 INFO:teuthology.orchestra.run.smithi038.stdout: 2023-11-30T23:15:19.354 INFO:teuthology.orchestra.run.smithi038.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2023-11-30T22:54:47.122758Z", "last_refresh": "2023-11-30T23:09:52.311067Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2023-11-30T22:54:42.674972Z", "last_refresh": "2023-11-30T23:09:48.452759Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2023-11-30T22:54:45.114633Z", "last_refresh": "2023-11-30T23:09:52.311222Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2023-11-30T23:09:45.063688Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi167.ndkqyv on smithi167: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2023-11-30T23:12:23.150100Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi167.nhhxhd on smithi167: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi167-nhhxhd\n/bin/podman: stderr Error: error inspecting object: no such container ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi167-nhhxhd\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi167.nhhxhd\n/bin/podman: stderr Error: error inspecting object: no such container ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi167.nhhxhd\nDeploy daemon haproxy.nfs.foo.smithi167.nhhxhd ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi167 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2023-11-30T23:10:30Z\" level=warning msg=\"failed, retrying in 1s ... (1/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-11-30T23:11:08Z\" level=warning msg=\"failed, retrying in 1s ... (2/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-11-30T23:11:45Z\" level=warning msg=\"failed, retrying in 1s ... (3/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi167 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-11-30T23:14:53.155795Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi038.njeday on smithi038: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi038-njeday\n/bin/podman: stderr Error: error inspecting object: no such container ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi038-njeday\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi038.njeday\n/bin/podman: stderr Error: error inspecting object: no such container ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi038.njeday\nDeploy daemon haproxy.nfs.foo.smithi038.njeday ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi038 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2023-11-30T23:13:00Z\" level=warning msg=\"failed, retrying in 1s ... (1/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-11-30T23:13:38Z\" level=warning msg=\"failed, retrying in 1s ... (2/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-11-30T23:14:15Z\" level=warning msg=\"failed, retrying in 1s ... (3/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi038 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-11-30T23:14:53.157035Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi038.pwduyd on smithi038: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2023-11-30T23:14:53.158104Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi167.obmcvj on smithi167: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.38/16"}, "status": {"created": "2023-11-30T22:58:56.312786Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.38/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2023-11-30T22:54:41.668043Z", "last_refresh": "2023-11-30T23:09:48.452908Z", "running": 2, "size": 2}}, {"events": ["2023-11-30T22:55:50.759225Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi038:172.21.15.38=smithi038", "smithi167:172.21.15.167=smithi167"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2023-11-30T22:55:50.756456Z", "last_refresh": "2023-11-30T23:09:48.452987Z", "running": 2, "size": 2}}, {"events": ["2023-11-30T22:58:56.311581Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2023-11-30T22:58:56.308071Z", "last_refresh": "2023-11-30T23:09:52.311757Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2023-11-30T22:54:46.136630Z", "last_refresh": "2023-11-30T23:09:48.453061Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2023-11-30T22:56:33.258058Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2023-11-30T22:56:33.253117Z", "last_refresh": "2023-11-30T23:09:48.453131Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2023-11-30T22:54:43.949497Z", "last_refresh": "2023-11-30T23:09:52.311357Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2023-11-30T22:58:52.105721Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2023-11-30T22:58:59.793467Z", "last_refresh": "2023-11-30T23:09:48.453411Z", "ports": [8800], "running": 2, "size": 2}}] 2023-11-30T23:15:19.799 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2023-11-30T23:15:20.525 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:15:20 smithi038 conmon[81956]: cluster 2023-11-30T23:15:19.170083+0000 mgr.smithi038.ldalxq (mgr.14182) 987 2023-11-30T23:15:20.525 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:15:20 smithi038 conmon[81956]: : cluster [DBG] pgmap v637: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2023-11-30T23:15:20.525 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:15:20 smithi038 conmon[81956]: audit 2023-11-30T23:15:19.349625+0000 mgr.smithi038.ldalxq (mgr.14182) 988 : audit [DBG] from='client.15812 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-11-30T23:15:20.762 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:15:20 smithi167 conmon[87022]: cluster 2023-11-30T23:15:19.170083+0000 mgr.smithi038.ldalxq (mgr.14182) 987 : cluster [DBG] pgmap v637: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2023-11-30T23:15:20.762 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:15:20 smithi167 conmon[87022]: audit 2023-11-30T23:15:19.349625+0000 mgr.smithi038.ldalxq (mgr.14182) 988 : audit [DBG] from='client.15812 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-11-30T23:15:20.801 DEBUG:teuthology.orchestra.run.smithi038:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:0dc074ce0b0b3b4f393f56dd32ef36884ebf45a9 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 3faf8b00-8fd3-11ee-95a2-87774f69a715 -- ceph orch ls -f json 2023-11-30T23:15:22.395 INFO:teuthology.orchestra.run.smithi038.stdout: 2023-11-30T23:15:22.395 INFO:teuthology.orchestra.run.smithi038.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2023-11-30T22:54:47.122758Z", "last_refresh": "2023-11-30T23:09:52.311067Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2023-11-30T22:54:42.674972Z", "last_refresh": "2023-11-30T23:09:48.452759Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2023-11-30T22:54:45.114633Z", "last_refresh": "2023-11-30T23:09:52.311222Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2023-11-30T23:09:45.063688Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi167.ndkqyv on smithi167: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2023-11-30T23:12:23.150100Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi167.nhhxhd on smithi167: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi167-nhhxhd\n/bin/podman: stderr Error: error inspecting object: no such container ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi167-nhhxhd\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi167.nhhxhd\n/bin/podman: stderr Error: error inspecting object: no such container ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi167.nhhxhd\nDeploy daemon haproxy.nfs.foo.smithi167.nhhxhd ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi167 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2023-11-30T23:10:30Z\" level=warning msg=\"failed, retrying in 1s ... (1/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-11-30T23:11:08Z\" level=warning msg=\"failed, retrying in 1s ... (2/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-11-30T23:11:45Z\" level=warning msg=\"failed, retrying in 1s ... (3/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi167 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-11-30T23:14:53.155795Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi038.njeday on smithi038: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi038-njeday\n/bin/podman: stderr Error: error inspecting object: no such container ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi038-njeday\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi038.njeday\n/bin/podman: stderr Error: error inspecting object: no such container ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi038.njeday\nDeploy daemon haproxy.nfs.foo.smithi038.njeday ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi038 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2023-11-30T23:13:00Z\" level=warning msg=\"failed, retrying in 1s ... (1/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-11-30T23:13:38Z\" level=warning msg=\"failed, retrying in 1s ... (2/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-11-30T23:14:15Z\" level=warning msg=\"failed, retrying in 1s ... (3/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi038 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-11-30T23:14:53.157035Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi038.pwduyd on smithi038: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2023-11-30T23:14:53.158104Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi167.obmcvj on smithi167: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.38/16"}, "status": {"created": "2023-11-30T22:58:56.312786Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.38/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2023-11-30T22:54:41.668043Z", "last_refresh": "2023-11-30T23:09:48.452908Z", "running": 2, "size": 2}}, {"events": ["2023-11-30T22:55:50.759225Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi038:172.21.15.38=smithi038", "smithi167:172.21.15.167=smithi167"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2023-11-30T22:55:50.756456Z", "last_refresh": "2023-11-30T23:09:48.452987Z", "running": 2, "size": 2}}, {"events": ["2023-11-30T22:58:56.311581Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2023-11-30T22:58:56.308071Z", "last_refresh": "2023-11-30T23:09:52.311757Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2023-11-30T22:54:46.136630Z", "last_refresh": "2023-11-30T23:09:48.453061Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2023-11-30T22:56:33.258058Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2023-11-30T22:56:33.253117Z", "last_refresh": "2023-11-30T23:09:48.453131Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2023-11-30T22:54:43.949497Z", "last_refresh": "2023-11-30T23:09:52.311357Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2023-11-30T22:58:52.105721Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2023-11-30T22:58:59.793467Z", "last_refresh": "2023-11-30T23:09:48.453411Z", "ports": [8800], "running": 2, "size": 2}}] 2023-11-30T23:15:22.598 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:15:22 smithi038 conmon[81956]: cluster 2023-11-30T23:15:21.170884+0000 mgr.smithi038.ldalxq (mgr.14182) 989 : cluster [DBG] pgmap v638: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2023-11-30T23:15:22.762 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:15:22 smithi167 conmon[87022]: cluster 2023-11-30T23:15:21.170884+0000 mgr.smithi038.ldalxq (mgr.14182) 989 : cluster [DBG] 2023-11-30T23:15:22.762 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:15:22 smithi167 conmon[87022]: pgmap v638: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2023-11-30T23:15:22.848 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2023-11-30T23:15:23.762 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:15:23 smithi167 conmon[87022]: audit 2023-11-30T23:15:22.391170+0000 mgr.smithi038.ldalxq (mgr.14182) 990 : audit [DBG] from='client.15816 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-11-30T23:15:23.774 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:15:23 smithi038 conmon[81956]: audit 2023-11-30T23:15:22.391170+0000 mgr.smithi038.ldalxq (mgr.14182) 990 : audit [DBG] from='client.15816 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-11-30T23:15:23.849 DEBUG:teuthology.orchestra.run.smithi038:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:0dc074ce0b0b3b4f393f56dd32ef36884ebf45a9 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 3faf8b00-8fd3-11ee-95a2-87774f69a715 -- ceph orch ls -f json 2023-11-30T23:15:24.580 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:15:24 smithi038 conmon[81956]: cluster 2023-11-30T23:15:23.171781+0000 mgr.smithi038.ldalxq ( 2023-11-30T23:15:24.581 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:15:24 smithi038 conmon[81956]: mgr.14182) 991 : cluster [DBG] pgmap v639: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2023-11-30T23:15:24.762 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:15:24 smithi167 conmon[87022]: cluster 2023-11-30T23:15:23.171781+0000 mgr.smithi038.ldalxq (mgr.14182) 991 : cluster [DBG] pgmap v639: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2023-11-30T23:15:24.762 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:15:24 smithi167 conmon[87022]: 2023-11-30T23:15:25.520 INFO:teuthology.orchestra.run.smithi038.stdout: 2023-11-30T23:15:25.521 INFO:teuthology.orchestra.run.smithi038.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2023-11-30T22:54:47.122758Z", "last_refresh": "2023-11-30T23:09:52.311067Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2023-11-30T22:54:42.674972Z", "last_refresh": "2023-11-30T23:09:48.452759Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2023-11-30T22:54:45.114633Z", "last_refresh": "2023-11-30T23:09:52.311222Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2023-11-30T23:09:45.063688Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi167.ndkqyv on smithi167: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2023-11-30T23:12:23.150100Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi167.nhhxhd on smithi167: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi167-nhhxhd\n/bin/podman: stderr Error: error inspecting object: no such container ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi167-nhhxhd\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi167.nhhxhd\n/bin/podman: stderr Error: error inspecting object: no such container ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi167.nhhxhd\nDeploy daemon haproxy.nfs.foo.smithi167.nhhxhd ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi167 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2023-11-30T23:10:30Z\" level=warning msg=\"failed, retrying in 1s ... (1/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-11-30T23:11:08Z\" level=warning msg=\"failed, retrying in 1s ... (2/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-11-30T23:11:45Z\" level=warning msg=\"failed, retrying in 1s ... (3/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi167 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-11-30T23:14:53.155795Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi038.njeday on smithi038: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi038-njeday\n/bin/podman: stderr Error: error inspecting object: no such container ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi038-njeday\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi038.njeday\n/bin/podman: stderr Error: error inspecting object: no such container ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi038.njeday\nDeploy daemon haproxy.nfs.foo.smithi038.njeday ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi038 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2023-11-30T23:13:00Z\" level=warning msg=\"failed, retrying in 1s ... (1/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-11-30T23:13:38Z\" level=warning msg=\"failed, retrying in 1s ... (2/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-11-30T23:14:15Z\" level=warning msg=\"failed, retrying in 1s ... (3/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi038 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-11-30T23:14:53.157035Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi038.pwduyd on smithi038: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2023-11-30T23:14:53.158104Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi167.obmcvj on smithi167: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.38/16"}, "status": {"created": "2023-11-30T22:58:56.312786Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.38/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2023-11-30T22:54:41.668043Z", "last_refresh": "2023-11-30T23:09:48.452908Z", "running": 2, "size": 2}}, {"events": ["2023-11-30T22:55:50.759225Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi038:172.21.15.38=smithi038", "smithi167:172.21.15.167=smithi167"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2023-11-30T22:55:50.756456Z", "last_refresh": "2023-11-30T23:09:48.452987Z", "running": 2, "size": 2}}, {"events": ["2023-11-30T22:58:56.311581Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2023-11-30T22:58:56.308071Z", "last_refresh": "2023-11-30T23:09:52.311757Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2023-11-30T22:54:46.136630Z", "last_refresh": "2023-11-30T23:09:48.453061Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2023-11-30T22:56:33.258058Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2023-11-30T22:56:33.253117Z", "last_refresh": "2023-11-30T23:09:48.453131Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2023-11-30T22:54:43.949497Z", "last_refresh": "2023-11-30T23:09:52.311357Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2023-11-30T22:58:52.105721Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2023-11-30T22:58:59.793467Z", "last_refresh": "2023-11-30T23:09:48.453411Z", "ports": [8800], "running": 2, "size": 2}}] 2023-11-30T23:15:25.999 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2023-11-30T23:15:26.762 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:15:26 smithi167 conmon[87022]: cluster 2023-11-30T23:15:25.172691+0000 mgr.smithi038.ldalxq (mgr.14182) 992 : cluster [DBG] pgmap v640: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2023-11-30T23:15:26.762 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:15:26 smithi167 conmon[87022]: audit 2023-11-30T23:15:25.516339+0000 mgr.smithi038.ldalxq (mgr.14182) 993 : audit [DBG] from='client.15820 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-11-30T23:15:26.774 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:15:26 smithi038 conmon[81956]: cluster 2023-11-30T23:15:25.172691+0000 mgr.smithi038.ldalxq (mgr.14182) 992 : cluster [DBG] pgmap v640: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2023-11-30T23:15:26.774 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:15:26 smithi038 conmon[81956]: audit 2023-11-30T23:15:25.516339+0000 mgr.smithi038.ldalxq (mgr.14182) 993 : audit [DBG] from='client.15820 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-11-30T23:15:27.000 DEBUG:teuthology.orchestra.run.smithi038:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:0dc074ce0b0b3b4f393f56dd32ef36884ebf45a9 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 3faf8b00-8fd3-11ee-95a2-87774f69a715 -- ceph orch ls -f json 2023-11-30T23:15:28.165 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:15:27 smithi038 conmon[81956]: cluster 2023-11-30T23:15:27.173350+0000 mgr.smithi038.ldalxq ( 2023-11-30T23:15:28.165 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:15:27 smithi038 conmon[81956]: mgr.14182) 994 : cluster [DBG] pgmap v641: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2023-11-30T23:15:28.262 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:15:27 smithi167 conmon[87022]: cluster 2023-11-30T23:15:27.173350+0000 mgr.smithi038.ldalxq (mgr.14182) 994 : cluster [DBG] pgmap v641: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2023-11-30T23:15:28.855 INFO:teuthology.orchestra.run.smithi038.stdout: 2023-11-30T23:15:28.856 INFO:teuthology.orchestra.run.smithi038.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2023-11-30T22:54:47.122758Z", "last_refresh": "2023-11-30T23:09:52.311067Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2023-11-30T22:54:42.674972Z", "last_refresh": "2023-11-30T23:09:48.452759Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2023-11-30T22:54:45.114633Z", "last_refresh": "2023-11-30T23:09:52.311222Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2023-11-30T23:09:45.063688Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi167.ndkqyv on smithi167: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2023-11-30T23:12:23.150100Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi167.nhhxhd on smithi167: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi167-nhhxhd\n/bin/podman: stderr Error: error inspecting object: no such container ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi167-nhhxhd\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi167.nhhxhd\n/bin/podman: stderr Error: error inspecting object: no such container ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi167.nhhxhd\nDeploy daemon haproxy.nfs.foo.smithi167.nhhxhd ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi167 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2023-11-30T23:10:30Z\" level=warning msg=\"failed, retrying in 1s ... (1/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-11-30T23:11:08Z\" level=warning msg=\"failed, retrying in 1s ... (2/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-11-30T23:11:45Z\" level=warning msg=\"failed, retrying in 1s ... (3/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi167 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-11-30T23:14:53.155795Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi038.njeday on smithi038: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi038-njeday\n/bin/podman: stderr Error: error inspecting object: no such container ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi038-njeday\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi038.njeday\n/bin/podman: stderr Error: error inspecting object: no such container ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi038.njeday\nDeploy daemon haproxy.nfs.foo.smithi038.njeday ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi038 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2023-11-30T23:13:00Z\" level=warning msg=\"failed, retrying in 1s ... (1/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-11-30T23:13:38Z\" level=warning msg=\"failed, retrying in 1s ... (2/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-11-30T23:14:15Z\" level=warning msg=\"failed, retrying in 1s ... (3/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi038 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-11-30T23:14:53.157035Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi038.pwduyd on smithi038: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2023-11-30T23:14:53.158104Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi167.obmcvj on smithi167: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.38/16"}, "status": {"created": "2023-11-30T22:58:56.312786Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.38/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2023-11-30T22:54:41.668043Z", "last_refresh": "2023-11-30T23:09:48.452908Z", "running": 2, "size": 2}}, {"events": ["2023-11-30T22:55:50.759225Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi038:172.21.15.38=smithi038", "smithi167:172.21.15.167=smithi167"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2023-11-30T22:55:50.756456Z", "last_refresh": "2023-11-30T23:09:48.452987Z", "running": 2, "size": 2}}, {"events": ["2023-11-30T22:58:56.311581Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2023-11-30T22:58:56.308071Z", "last_refresh": "2023-11-30T23:09:52.311757Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2023-11-30T22:54:46.136630Z", "last_refresh": "2023-11-30T23:09:48.453061Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2023-11-30T22:56:33.258058Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2023-11-30T22:56:33.253117Z", "last_refresh": "2023-11-30T23:09:48.453131Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2023-11-30T22:54:43.949497Z", "last_refresh": "2023-11-30T23:09:52.311357Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2023-11-30T22:58:52.105721Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2023-11-30T22:58:59.793467Z", "last_refresh": "2023-11-30T23:09:48.453411Z", "ports": [8800], "running": 2, "size": 2}}] 2023-11-30T23:15:29.254 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2023-11-30T23:15:30.254 DEBUG:teuthology.orchestra.run.smithi038:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:0dc074ce0b0b3b4f393f56dd32ef36884ebf45a9 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 3faf8b00-8fd3-11ee-95a2-87774f69a715 -- ceph orch ls -f json 2023-11-30T23:15:30.512 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:15:30 smithi167 conmon[87022]: audit 2023-11-30T23:15:28.851382+0000 mgr.smithi038.ldalxq (mgr.14182) 995 : audit [DBG] from='client.15824 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-11-30T23:15:30.512 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:15:30 smithi167 conmon[87022]: cluster 2023-11-30T23:15:29.174014+0000 mgr.smithi038.ldalxq (mgr.14182) 996 : cluster [DBG] pgmap v642: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2023-11-30T23:15:30.524 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:15:30 smithi038 conmon[81956]: audit 2023-11-30T23:15:28.851382+0000 mgr.smithi038.ldalxq (mgr 2023-11-30T23:15:30.524 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:15:30 smithi038 conmon[81956]: .14182) 995 : audit [DBG] from='client.15824 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-11-30T23:15:30.524 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:15:30 smithi038 conmon[81956]: cluster 2023-11-30T23:15:29.174014+0000 mgr.smithi038.ldalxq (mgr.14182) 996 : cluster [DBG] pgmap v642: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2023-11-30T23:15:32.057 INFO:teuthology.orchestra.run.smithi038.stdout: 2023-11-30T23:15:32.057 INFO:teuthology.orchestra.run.smithi038.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2023-11-30T22:54:47.122758Z", "last_refresh": "2023-11-30T23:09:52.311067Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2023-11-30T22:54:42.674972Z", "last_refresh": "2023-11-30T23:09:48.452759Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2023-11-30T22:54:45.114633Z", "last_refresh": "2023-11-30T23:09:52.311222Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2023-11-30T23:09:45.063688Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi167.ndkqyv on smithi167: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2023-11-30T23:12:23.150100Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi167.nhhxhd on smithi167: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi167-nhhxhd\n/bin/podman: stderr Error: error inspecting object: no such container ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi167-nhhxhd\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi167.nhhxhd\n/bin/podman: stderr Error: error inspecting object: no such container ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi167.nhhxhd\nDeploy daemon haproxy.nfs.foo.smithi167.nhhxhd ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi167 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2023-11-30T23:10:30Z\" level=warning msg=\"failed, retrying in 1s ... (1/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-11-30T23:11:08Z\" level=warning msg=\"failed, retrying in 1s ... (2/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-11-30T23:11:45Z\" level=warning msg=\"failed, retrying in 1s ... (3/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi167 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-11-30T23:14:53.155795Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi038.njeday on smithi038: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi038-njeday\n/bin/podman: stderr Error: error inspecting object: no such container ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi038-njeday\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi038.njeday\n/bin/podman: stderr Error: error inspecting object: no such container ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi038.njeday\nDeploy daemon haproxy.nfs.foo.smithi038.njeday ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi038 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2023-11-30T23:13:00Z\" level=warning msg=\"failed, retrying in 1s ... (1/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-11-30T23:13:38Z\" level=warning msg=\"failed, retrying in 1s ... (2/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-11-30T23:14:15Z\" level=warning msg=\"failed, retrying in 1s ... (3/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi038 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-11-30T23:14:53.157035Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi038.pwduyd on smithi038: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2023-11-30T23:14:53.158104Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi167.obmcvj on smithi167: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.38/16"}, "status": {"created": "2023-11-30T22:58:56.312786Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.38/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2023-11-30T22:54:41.668043Z", "last_refresh": "2023-11-30T23:09:48.452908Z", "running": 2, "size": 2}}, {"events": ["2023-11-30T22:55:50.759225Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi038:172.21.15.38=smithi038", "smithi167:172.21.15.167=smithi167"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2023-11-30T22:55:50.756456Z", "last_refresh": "2023-11-30T23:09:48.452987Z", "running": 2, "size": 2}}, {"events": ["2023-11-30T22:58:56.311581Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2023-11-30T22:58:56.308071Z", "last_refresh": "2023-11-30T23:09:52.311757Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2023-11-30T22:54:46.136630Z", "last_refresh": "2023-11-30T23:09:48.453061Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2023-11-30T22:56:33.258058Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2023-11-30T22:56:33.253117Z", "last_refresh": "2023-11-30T23:09:48.453131Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2023-11-30T22:54:43.949497Z", "last_refresh": "2023-11-30T23:09:52.311357Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2023-11-30T22:58:52.105721Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2023-11-30T22:58:59.793467Z", "last_refresh": "2023-11-30T23:09:48.453411Z", "ports": [8800], "running": 2, "size": 2}}] 2023-11-30T23:15:32.458 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:15:32 smithi038 conmon[81956]: cluster 2023-11-30T23:15:31.174878+0000 2023-11-30T23:15:32.458 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:15:32 smithi038 conmon[81956]: mgr.smithi038.ldalxq (mgr.14182) 997 : cluster [DBG] pgmap v643: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2023-11-30T23:15:32.512 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:15:32 smithi167 conmon[87022]: cluster 2023-11-30T23:15:31.174878+0000 mgr.smithi038.ldalxq (mgr.14182) 997 : cluster [DBG] pgmap v643: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2023-11-30T23:15:32.519 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2023-11-30T23:15:33.512 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:15:33 smithi167 conmon[87022]: audit 2023-11-30T23:15:32.053402+0000 mgr.smithi038.ldalxq (mgr.14182) 998 : audit [DBG] from='client.15828 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-11-30T23:15:33.520 DEBUG:teuthology.orchestra.run.smithi038:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:0dc074ce0b0b3b4f393f56dd32ef36884ebf45a9 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 3faf8b00-8fd3-11ee-95a2-87774f69a715 -- ceph orch ls -f json 2023-11-30T23:15:33.527 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:15:33 smithi038 conmon[81956]: audit 2023-11-30T23:15:32.053402+0000 mgr.smithi038.ldalxq (mgr.14182) 998 : audit [DBG] from='client.15828 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-11-30T23:15:34.446 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:15:34 smithi038 conmon[81956]: cluster 2023-11-30T23:15:33.175814+0000 mgr.smithi038.ldalxq ( 2023-11-30T23:15:34.447 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:15:34 smithi038 conmon[81956]: mgr.14182) 999 : cluster [DBG] pgmap v644: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2023-11-30T23:15:34.512 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:15:34 smithi167 conmon[87022]: cluster 2023-11-30T23:15:33.175814+0000 mgr.smithi038.ldalxq (mgr.14182) 999 : cluster [DBG] pgmap v644: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2023-11-30T23:15:34.512 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:15:34 smithi167 conmon[87022]: 2023-11-30T23:15:35.400 INFO:teuthology.orchestra.run.smithi038.stdout: 2023-11-30T23:15:35.401 INFO:teuthology.orchestra.run.smithi038.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2023-11-30T22:54:47.122758Z", "last_refresh": "2023-11-30T23:09:52.311067Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2023-11-30T22:54:42.674972Z", "last_refresh": "2023-11-30T23:09:48.452759Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2023-11-30T22:54:45.114633Z", "last_refresh": "2023-11-30T23:09:52.311222Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2023-11-30T23:09:45.063688Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi167.ndkqyv on smithi167: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2023-11-30T23:12:23.150100Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi167.nhhxhd on smithi167: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi167-nhhxhd\n/bin/podman: stderr Error: error inspecting object: no such container ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi167-nhhxhd\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi167.nhhxhd\n/bin/podman: stderr Error: error inspecting object: no such container ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi167.nhhxhd\nDeploy daemon haproxy.nfs.foo.smithi167.nhhxhd ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi167 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2023-11-30T23:10:30Z\" level=warning msg=\"failed, retrying in 1s ... (1/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-11-30T23:11:08Z\" level=warning msg=\"failed, retrying in 1s ... (2/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-11-30T23:11:45Z\" level=warning msg=\"failed, retrying in 1s ... (3/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi167 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-11-30T23:14:53.155795Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi038.njeday on smithi038: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi038-njeday\n/bin/podman: stderr Error: error inspecting object: no such container ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi038-njeday\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi038.njeday\n/bin/podman: stderr Error: error inspecting object: no such container ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi038.njeday\nDeploy daemon haproxy.nfs.foo.smithi038.njeday ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi038 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2023-11-30T23:13:00Z\" level=warning msg=\"failed, retrying in 1s ... (1/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-11-30T23:13:38Z\" level=warning msg=\"failed, retrying in 1s ... (2/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-11-30T23:14:15Z\" level=warning msg=\"failed, retrying in 1s ... (3/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi038 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-11-30T23:14:53.157035Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi038.pwduyd on smithi038: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2023-11-30T23:14:53.158104Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi167.obmcvj on smithi167: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.38/16"}, "status": {"created": "2023-11-30T22:58:56.312786Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.38/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2023-11-30T22:54:41.668043Z", "last_refresh": "2023-11-30T23:09:48.452908Z", "running": 2, "size": 2}}, {"events": ["2023-11-30T22:55:50.759225Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi038:172.21.15.38=smithi038", "smithi167:172.21.15.167=smithi167"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2023-11-30T22:55:50.756456Z", "last_refresh": "2023-11-30T23:09:48.452987Z", "running": 2, "size": 2}}, {"events": ["2023-11-30T22:58:56.311581Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2023-11-30T22:58:56.308071Z", "last_refresh": "2023-11-30T23:09:52.311757Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2023-11-30T22:54:46.136630Z", "last_refresh": "2023-11-30T23:09:48.453061Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2023-11-30T22:56:33.258058Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2023-11-30T22:56:33.253117Z", "last_refresh": "2023-11-30T23:09:48.453131Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2023-11-30T22:54:43.949497Z", "last_refresh": "2023-11-30T23:09:52.311357Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2023-11-30T22:58:52.105721Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2023-11-30T22:58:59.793467Z", "last_refresh": "2023-11-30T23:09:48.453411Z", "ports": [8800], "running": 2, "size": 2}}] 2023-11-30T23:15:35.789 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2023-11-30T23:15:36.512 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:15:36 smithi167 conmon[87022]: cluster 2023-11-30T23:15:35.176651+0000 mgr.smithi038.ldalxq (mgr.14182) 1000 : cluster [DBG] pgmap v645: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2023-11-30T23:15:36.512 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:15:36 smithi167 conmon[87022]: audit 2023-11-30T23:15:35.396765+0000 mgr.smithi038.ldalxq (mgr.14182) 1001 : audit [DBG] from='client.15832 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-11-30T23:15:36.524 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:15:36 smithi038 conmon[81956]: cluster 2023-11-30T23:15:35.176651+0000 mgr.smithi038.ldalxq (mgr.14182) 1000 : cluster [DBG] pgmap v645: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2023-11-30T23:15:36.524 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:15:36 smithi038 conmon[81956]: audit 2023-11-30T23:15:36.524 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:15:36 smithi038 conmon[81956]: 2023-11-30T23:15:35.396765+0000 mgr.smithi038.ldalxq (mgr.14182) 1001 : audit [DBG] from='client.15832 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-11-30T23:15:36.790 DEBUG:teuthology.orchestra.run.smithi038:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:0dc074ce0b0b3b4f393f56dd32ef36884ebf45a9 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 3faf8b00-8fd3-11ee-95a2-87774f69a715 -- ceph orch ls -f json 2023-11-30T23:15:38.024 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:15:37 smithi038 conmon[81956]: cluster 2023-11-30T23:15:37.177279+0000 mgr.smithi038.ldalxq (mgr.14182) 1002 : cluster [DBG] pgmap v646: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2023-11-30T23:15:38.262 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:15:37 smithi167 conmon[87022]: cluster 2023-11-30T23:15:37.177279+0000 mgr.smithi038.ldalxq (mgr.14182) 1002 : cluster [DBG] pgmap v646: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2023-11-30T23:15:38.513 INFO:teuthology.orchestra.run.smithi038.stdout: 2023-11-30T23:15:38.513 INFO:teuthology.orchestra.run.smithi038.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2023-11-30T22:54:47.122758Z", "last_refresh": "2023-11-30T23:09:52.311067Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2023-11-30T22:54:42.674972Z", "last_refresh": "2023-11-30T23:09:48.452759Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2023-11-30T22:54:45.114633Z", "last_refresh": "2023-11-30T23:09:52.311222Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2023-11-30T23:09:45.063688Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi167.ndkqyv on smithi167: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2023-11-30T23:12:23.150100Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi167.nhhxhd on smithi167: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi167-nhhxhd\n/bin/podman: stderr Error: error inspecting object: no such container ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi167-nhhxhd\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi167.nhhxhd\n/bin/podman: stderr Error: error inspecting object: no such container ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi167.nhhxhd\nDeploy daemon haproxy.nfs.foo.smithi167.nhhxhd ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi167 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2023-11-30T23:10:30Z\" level=warning msg=\"failed, retrying in 1s ... (1/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-11-30T23:11:08Z\" level=warning msg=\"failed, retrying in 1s ... (2/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-11-30T23:11:45Z\" level=warning msg=\"failed, retrying in 1s ... (3/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi167 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-11-30T23:14:53.155795Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi038.njeday on smithi038: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi038-njeday\n/bin/podman: stderr Error: error inspecting object: no such container ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi038-njeday\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi038.njeday\n/bin/podman: stderr Error: error inspecting object: no such container ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi038.njeday\nDeploy daemon haproxy.nfs.foo.smithi038.njeday ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi038 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2023-11-30T23:13:00Z\" level=warning msg=\"failed, retrying in 1s ... (1/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-11-30T23:13:38Z\" level=warning msg=\"failed, retrying in 1s ... (2/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-11-30T23:14:15Z\" level=warning msg=\"failed, retrying in 1s ... (3/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi038 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-11-30T23:14:53.157035Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi038.pwduyd on smithi038: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2023-11-30T23:14:53.158104Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi167.obmcvj on smithi167: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.38/16"}, "status": {"created": "2023-11-30T22:58:56.312786Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.38/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2023-11-30T22:54:41.668043Z", "last_refresh": "2023-11-30T23:09:48.452908Z", "running": 2, "size": 2}}, {"events": ["2023-11-30T22:55:50.759225Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi038:172.21.15.38=smithi038", "smithi167:172.21.15.167=smithi167"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2023-11-30T22:55:50.756456Z", "last_refresh": "2023-11-30T23:09:48.452987Z", "running": 2, "size": 2}}, {"events": ["2023-11-30T22:58:56.311581Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2023-11-30T22:58:56.308071Z", "last_refresh": "2023-11-30T23:09:52.311757Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2023-11-30T22:54:46.136630Z", "last_refresh": "2023-11-30T23:09:48.453061Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2023-11-30T22:56:33.258058Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2023-11-30T22:56:33.253117Z", "last_refresh": "2023-11-30T23:09:48.453131Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2023-11-30T22:54:43.949497Z", "last_refresh": "2023-11-30T23:09:52.311357Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2023-11-30T22:58:52.105721Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2023-11-30T22:58:59.793467Z", "last_refresh": "2023-11-30T23:09:48.453411Z", "ports": [8800], "running": 2, "size": 2}}] 2023-11-30T23:15:38.939 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2023-11-30T23:15:39.262 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:15:38 smithi167 conmon[87022]: audit 2023-11-30T23:15:38.509243+0000 mgr.smithi038.ldalxq (mgr.14182) 1003 : audit [DBG] from='client.15836 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-11-30T23:15:39.262 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:15:38 smithi167 conmon[87022]: 2023-11-30T23:15:39.274 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:15:38 smithi038 conmon[81956]: audit 2023-11-30T23:15:38.509243+0000 mgr.smithi038.ldalxq 2023-11-30T23:15:39.274 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:15:38 smithi038 conmon[81956]: (mgr.14182) 1003 : audit [DBG] from='client.15836 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-11-30T23:15:39.940 DEBUG:teuthology.orchestra.run.smithi038:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:0dc074ce0b0b3b4f393f56dd32ef36884ebf45a9 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 3faf8b00-8fd3-11ee-95a2-87774f69a715 -- ceph orch ls -f json 2023-11-30T23:15:40.262 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:15:39 smithi167 conmon[87022]: cluster 2023-11-30T23:15:39.178094+0000 mgr.smithi038.ldalxq (mgr.14182) 1004 : cluster [DBG] pgmap v647: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2023-11-30T23:15:40.275 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:15:39 smithi038 conmon[81956]: cluster 2023-11-30T23:15:39.178094+0000 mgr.smithi038.ldalxq (mgr.14182) 1004 : cluster [DBG] pgmap v647: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2023-11-30T23:15:41.668 INFO:teuthology.orchestra.run.smithi038.stdout: 2023-11-30T23:15:41.668 INFO:teuthology.orchestra.run.smithi038.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2023-11-30T22:54:47.122758Z", "last_refresh": "2023-11-30T23:09:52.311067Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2023-11-30T22:54:42.674972Z", "last_refresh": "2023-11-30T23:09:48.452759Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2023-11-30T22:54:45.114633Z", "last_refresh": "2023-11-30T23:09:52.311222Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2023-11-30T23:09:45.063688Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi167.ndkqyv on smithi167: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2023-11-30T23:12:23.150100Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi167.nhhxhd on smithi167: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi167-nhhxhd\n/bin/podman: stderr Error: error inspecting object: no such container ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi167-nhhxhd\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi167.nhhxhd\n/bin/podman: stderr Error: error inspecting object: no such container ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi167.nhhxhd\nDeploy daemon haproxy.nfs.foo.smithi167.nhhxhd ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi167 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2023-11-30T23:10:30Z\" level=warning msg=\"failed, retrying in 1s ... (1/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-11-30T23:11:08Z\" level=warning msg=\"failed, retrying in 1s ... (2/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-11-30T23:11:45Z\" level=warning msg=\"failed, retrying in 1s ... (3/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi167 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-11-30T23:14:53.155795Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi038.njeday on smithi038: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi038-njeday\n/bin/podman: stderr Error: error inspecting object: no such container ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi038-njeday\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi038.njeday\n/bin/podman: stderr Error: error inspecting object: no such container ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi038.njeday\nDeploy daemon haproxy.nfs.foo.smithi038.njeday ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi038 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2023-11-30T23:13:00Z\" level=warning msg=\"failed, retrying in 1s ... (1/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-11-30T23:13:38Z\" level=warning msg=\"failed, retrying in 1s ... (2/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-11-30T23:14:15Z\" level=warning msg=\"failed, retrying in 1s ... (3/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi038 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-11-30T23:14:53.157035Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi038.pwduyd on smithi038: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2023-11-30T23:14:53.158104Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi167.obmcvj on smithi167: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.38/16"}, "status": {"created": "2023-11-30T22:58:56.312786Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.38/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2023-11-30T22:54:41.668043Z", "last_refresh": "2023-11-30T23:09:48.452908Z", "running": 2, "size": 2}}, {"events": ["2023-11-30T22:55:50.759225Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi038:172.21.15.38=smithi038", "smithi167:172.21.15.167=smithi167"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2023-11-30T22:55:50.756456Z", "last_refresh": "2023-11-30T23:09:48.452987Z", "running": 2, "size": 2}}, {"events": ["2023-11-30T22:58:56.311581Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2023-11-30T22:58:56.308071Z", "last_refresh": "2023-11-30T23:09:52.311757Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2023-11-30T22:54:46.136630Z", "last_refresh": "2023-11-30T23:09:48.453061Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2023-11-30T22:56:33.258058Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2023-11-30T22:56:33.253117Z", "last_refresh": "2023-11-30T23:09:48.453131Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2023-11-30T22:54:43.949497Z", "last_refresh": "2023-11-30T23:09:52.311357Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2023-11-30T22:58:52.105721Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2023-11-30T22:58:59.793467Z", "last_refresh": "2023-11-30T23:09:48.453411Z", "ports": [8800], "running": 2, "size": 2}}] 2023-11-30T23:15:42.105 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2023-11-30T23:15:42.512 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:15:42 smithi167 conmon[87022]: cluster 2023-11-30T23:15:41.178844+0000 mgr.smithi038.ldalxq (mgr.14182) 1005 : cluster [DBG] 2023-11-30T23:15:42.512 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:15:42 smithi167 conmon[87022]: pgmap v648: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2023-11-30T23:15:42.512 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:15:42 smithi167 conmon[87022]: audit 2023-11-30T23:15:41.662892+0000 mgr.smithi038.ldalxq (mgr.14182) 1006 : audit [DBG] from='client.15840 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-11-30T23:15:42.524 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:15:42 smithi038 conmon[81956]: cluster 2023-11-30T23:15:41.178844+0000 mgr.smithi038.ldalxq (mgr.14182) 1005 : cluster [DBG] pgmap v648: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2023-11-30T23:15:42.524 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:15:42 smithi038 conmon[81956]: audit 2023-11-30T23:15:41.662892+0000 mgr.smithi038.ldalxq (mgr.14182) 1006 : audit [DBG] from='client.15840 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-11-30T23:15:43.106 DEBUG:teuthology.orchestra.run.smithi038:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:0dc074ce0b0b3b4f393f56dd32ef36884ebf45a9 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 3faf8b00-8fd3-11ee-95a2-87774f69a715 -- ceph orch ls -f json 2023-11-30T23:15:44.512 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:15:44 smithi167 conmon[87022]: cluster 2023-11-30T23:15:43.179847+0000 mgr.smithi038.ldalxq (mgr.14182) 1007 : cluster [DBG] pgmap v649: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2023-11-30T23:15:44.524 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:15:44 smithi038 conmon[81956]: cluster 2023-11-30T23:15:43.179847+0000 mgr.smithi038.ldalxq (mgr.14182) 1007 : cluster [DBG] pgmap v649: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2023-11-30T23:15:44.783 INFO:teuthology.orchestra.run.smithi038.stdout: 2023-11-30T23:15:44.783 INFO:teuthology.orchestra.run.smithi038.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2023-11-30T22:54:47.122758Z", "last_refresh": "2023-11-30T23:09:52.311067Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2023-11-30T22:54:42.674972Z", "last_refresh": "2023-11-30T23:09:48.452759Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2023-11-30T22:54:45.114633Z", "last_refresh": "2023-11-30T23:09:52.311222Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2023-11-30T23:09:45.063688Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi167.ndkqyv on smithi167: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2023-11-30T23:12:23.150100Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi167.nhhxhd on smithi167: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi167-nhhxhd\n/bin/podman: stderr Error: error inspecting object: no such container ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi167-nhhxhd\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi167.nhhxhd\n/bin/podman: stderr Error: error inspecting object: no such container ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi167.nhhxhd\nDeploy daemon haproxy.nfs.foo.smithi167.nhhxhd ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi167 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2023-11-30T23:10:30Z\" level=warning msg=\"failed, retrying in 1s ... (1/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-11-30T23:11:08Z\" level=warning msg=\"failed, retrying in 1s ... (2/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-11-30T23:11:45Z\" level=warning msg=\"failed, retrying in 1s ... (3/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi167 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-11-30T23:14:53.155795Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi038.njeday on smithi038: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi038-njeday\n/bin/podman: stderr Error: error inspecting object: no such container ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi038-njeday\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi038.njeday\n/bin/podman: stderr Error: error inspecting object: no such container ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi038.njeday\nDeploy daemon haproxy.nfs.foo.smithi038.njeday ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi038 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2023-11-30T23:13:00Z\" level=warning msg=\"failed, retrying in 1s ... (1/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-11-30T23:13:38Z\" level=warning msg=\"failed, retrying in 1s ... (2/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-11-30T23:14:15Z\" level=warning msg=\"failed, retrying in 1s ... (3/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi038 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-11-30T23:14:53.157035Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi038.pwduyd on smithi038: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2023-11-30T23:14:53.158104Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi167.obmcvj on smithi167: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.38/16"}, "status": {"created": "2023-11-30T22:58:56.312786Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.38/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2023-11-30T22:54:41.668043Z", "last_refresh": "2023-11-30T23:09:48.452908Z", "running": 2, "size": 2}}, {"events": ["2023-11-30T22:55:50.759225Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi038:172.21.15.38=smithi038", "smithi167:172.21.15.167=smithi167"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2023-11-30T22:55:50.756456Z", "last_refresh": "2023-11-30T23:09:48.452987Z", "running": 2, "size": 2}}, {"events": ["2023-11-30T22:58:56.311581Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2023-11-30T22:58:56.308071Z", "last_refresh": "2023-11-30T23:09:52.311757Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2023-11-30T22:54:46.136630Z", "last_refresh": "2023-11-30T23:09:48.453061Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2023-11-30T22:56:33.258058Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2023-11-30T22:56:33.253117Z", "last_refresh": "2023-11-30T23:09:48.453131Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2023-11-30T22:54:43.949497Z", "last_refresh": "2023-11-30T23:09:52.311357Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2023-11-30T22:58:52.105721Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2023-11-30T22:58:59.793467Z", "last_refresh": "2023-11-30T23:09:48.453411Z", "ports": [8800], "running": 2, "size": 2}}] 2023-11-30T23:15:45.260 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2023-11-30T23:15:46.261 DEBUG:teuthology.orchestra.run.smithi038:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:0dc074ce0b0b3b4f393f56dd32ef36884ebf45a9 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 3faf8b00-8fd3-11ee-95a2-87774f69a715 -- ceph orch ls -f json 2023-11-30T23:15:46.512 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:15:46 smithi167 conmon[87022]: audit 2023-11-30T23:15:44.778624+0000 mgr.smithi038.ldalxq (mgr.14182) 1008 : audit [DBG] from='client.15844 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-11-30T23:15:46.512 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:15:46 smithi167 conmon[87022]: cluster 2023-11-30T23:15:45.180951+0000 mgr.smithi038.ldalxq (mgr.14182) 1009 : cluster [DBG] pgmap v650: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2023-11-30T23:15:46.524 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:15:46 smithi038 conmon[81956]: audit 2023-11-30T23:15:44.778624+0000 mgr.smithi038.ldalxq (mgr.14182) 1008 : audit [DBG] 2023-11-30T23:15:46.524 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:15:46 smithi038 conmon[81956]: from='client.15844 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-11-30T23:15:46.524 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:15:46 smithi038 conmon[81956]: cluster 2023-11-30T23:15:45.180951+0000 mgr.smithi038.ldalxq (mgr.14182) 1009 : cluster [DBG] pgmap v650: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2023-11-30T23:15:47.968 INFO:teuthology.orchestra.run.smithi038.stdout: 2023-11-30T23:15:47.968 INFO:teuthology.orchestra.run.smithi038.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2023-11-30T22:54:47.122758Z", "last_refresh": "2023-11-30T23:09:52.311067Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2023-11-30T22:54:42.674972Z", "last_refresh": "2023-11-30T23:09:48.452759Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2023-11-30T22:54:45.114633Z", "last_refresh": "2023-11-30T23:09:52.311222Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2023-11-30T23:09:45.063688Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi167.ndkqyv on smithi167: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2023-11-30T23:12:23.150100Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi167.nhhxhd on smithi167: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi167-nhhxhd\n/bin/podman: stderr Error: error inspecting object: no such container ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi167-nhhxhd\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi167.nhhxhd\n/bin/podman: stderr Error: error inspecting object: no such container ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi167.nhhxhd\nDeploy daemon haproxy.nfs.foo.smithi167.nhhxhd ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi167 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2023-11-30T23:10:30Z\" level=warning msg=\"failed, retrying in 1s ... (1/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-11-30T23:11:08Z\" level=warning msg=\"failed, retrying in 1s ... (2/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-11-30T23:11:45Z\" level=warning msg=\"failed, retrying in 1s ... (3/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi167 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-11-30T23:14:53.155795Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi038.njeday on smithi038: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi038-njeday\n/bin/podman: stderr Error: error inspecting object: no such container ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi038-njeday\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi038.njeday\n/bin/podman: stderr Error: error inspecting object: no such container ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi038.njeday\nDeploy daemon haproxy.nfs.foo.smithi038.njeday ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi038 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2023-11-30T23:13:00Z\" level=warning msg=\"failed, retrying in 1s ... (1/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-11-30T23:13:38Z\" level=warning msg=\"failed, retrying in 1s ... (2/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-11-30T23:14:15Z\" level=warning msg=\"failed, retrying in 1s ... (3/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi038 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-11-30T23:14:53.157035Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi038.pwduyd on smithi038: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2023-11-30T23:14:53.158104Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi167.obmcvj on smithi167: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.38/16"}, "status": {"created": "2023-11-30T22:58:56.312786Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.38/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2023-11-30T22:54:41.668043Z", "last_refresh": "2023-11-30T23:09:48.452908Z", "running": 2, "size": 2}}, {"events": ["2023-11-30T22:55:50.759225Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi038:172.21.15.38=smithi038", "smithi167:172.21.15.167=smithi167"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2023-11-30T22:55:50.756456Z", "last_refresh": "2023-11-30T23:09:48.452987Z", "running": 2, "size": 2}}, {"events": ["2023-11-30T22:58:56.311581Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2023-11-30T22:58:56.308071Z", "last_refresh": "2023-11-30T23:09:52.311757Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2023-11-30T22:54:46.136630Z", "last_refresh": "2023-11-30T23:09:48.453061Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2023-11-30T22:56:33.258058Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2023-11-30T22:56:33.253117Z", "last_refresh": "2023-11-30T23:09:48.453131Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2023-11-30T22:54:43.949497Z", "last_refresh": "2023-11-30T23:09:52.311357Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2023-11-30T22:58:52.105721Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2023-11-30T22:58:59.793467Z", "last_refresh": "2023-11-30T23:09:48.453411Z", "ports": [8800], "running": 2, "size": 2}}] 2023-11-30T23:15:48.195 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:15:47 smithi038 conmon[81956]: cluster 2023-11-30T23:15:47.181829+0000 mgr.smithi038.ldalxq (mgr.14182) 1010 : cluster [DBG] pgmap v651: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2023-11-30T23:15:48.262 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:15:47 smithi167 conmon[87022]: cluster 2023-11-30T23:15:47.181829+0000 mgr.smithi038.ldalxq (mgr.14182) 1010 : cluster [DBG] pgmap v651: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2023-11-30T23:15:48.413 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2023-11-30T23:15:49.262 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:15:48 smithi167 conmon[87022]: audit 2023-11-30T23:15:47.964268+0000 mgr.smithi038.ldalxq (mgr.14182) 1011 : 2023-11-30T23:15:49.262 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:15:48 smithi167 conmon[87022]: audit [DBG] from='client.15848 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-11-30T23:15:49.274 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:15:48 smithi038 conmon[81956]: audit 2023-11-30T23:15:47.964268+0000 mgr.smithi038.ldalxq (mgr.14182) 2023-11-30T23:15:49.274 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:15:48 smithi038 conmon[81956]: 1011 : audit [DBG] from='client.15848 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-11-30T23:15:49.414 DEBUG:teuthology.orchestra.run.smithi038:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:0dc074ce0b0b3b4f393f56dd32ef36884ebf45a9 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 3faf8b00-8fd3-11ee-95a2-87774f69a715 -- ceph orch ls -f json 2023-11-30T23:15:50.262 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:15:49 smithi167 conmon[87022]: cluster 2023-11-30T23:15:49.182752+0000 mgr.smithi038.ldalxq (mgr.14182) 1012 : cluster [DBG] pgmap v652: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2023-11-30T23:15:50.274 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:15:49 smithi038 conmon[81956]: cluster 2023-11-30T23:15:49.182752+0000 mgr.smithi038.ldalxq (mgr. 2023-11-30T23:15:50.274 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:15:49 smithi038 conmon[81956]: 14182) 1012 : cluster [DBG] pgmap v652: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2023-11-30T23:15:51.132 INFO:teuthology.orchestra.run.smithi038.stdout: 2023-11-30T23:15:51.133 INFO:teuthology.orchestra.run.smithi038.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2023-11-30T22:54:47.122758Z", "last_refresh": "2023-11-30T23:09:52.311067Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2023-11-30T22:54:42.674972Z", "last_refresh": "2023-11-30T23:09:48.452759Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2023-11-30T22:54:45.114633Z", "last_refresh": "2023-11-30T23:09:52.311222Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2023-11-30T23:09:45.063688Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi167.ndkqyv on smithi167: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2023-11-30T23:12:23.150100Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi167.nhhxhd on smithi167: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi167-nhhxhd\n/bin/podman: stderr Error: error inspecting object: no such container ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi167-nhhxhd\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi167.nhhxhd\n/bin/podman: stderr Error: error inspecting object: no such container ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi167.nhhxhd\nDeploy daemon haproxy.nfs.foo.smithi167.nhhxhd ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi167 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2023-11-30T23:10:30Z\" level=warning msg=\"failed, retrying in 1s ... (1/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-11-30T23:11:08Z\" level=warning msg=\"failed, retrying in 1s ... (2/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-11-30T23:11:45Z\" level=warning msg=\"failed, retrying in 1s ... (3/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi167 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-11-30T23:14:53.155795Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi038.njeday on smithi038: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi038-njeday\n/bin/podman: stderr Error: error inspecting object: no such container ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi038-njeday\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi038.njeday\n/bin/podman: stderr Error: error inspecting object: no such container ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi038.njeday\nDeploy daemon haproxy.nfs.foo.smithi038.njeday ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi038 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2023-11-30T23:13:00Z\" level=warning msg=\"failed, retrying in 1s ... (1/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-11-30T23:13:38Z\" level=warning msg=\"failed, retrying in 1s ... (2/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-11-30T23:14:15Z\" level=warning msg=\"failed, retrying in 1s ... (3/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi038 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-11-30T23:14:53.157035Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi038.pwduyd on smithi038: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2023-11-30T23:14:53.158104Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi167.obmcvj on smithi167: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.38/16"}, "status": {"created": "2023-11-30T22:58:56.312786Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.38/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2023-11-30T22:54:41.668043Z", "last_refresh": "2023-11-30T23:09:48.452908Z", "running": 2, "size": 2}}, {"events": ["2023-11-30T22:55:50.759225Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi038:172.21.15.38=smithi038", "smithi167:172.21.15.167=smithi167"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2023-11-30T22:55:50.756456Z", "last_refresh": "2023-11-30T23:09:48.452987Z", "running": 2, "size": 2}}, {"events": ["2023-11-30T22:58:56.311581Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2023-11-30T22:58:56.308071Z", "last_refresh": "2023-11-30T23:09:52.311757Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2023-11-30T22:54:46.136630Z", "last_refresh": "2023-11-30T23:09:48.453061Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2023-11-30T22:56:33.258058Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2023-11-30T22:56:33.253117Z", "last_refresh": "2023-11-30T23:09:48.453131Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2023-11-30T22:54:43.949497Z", "last_refresh": "2023-11-30T23:09:52.311357Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2023-11-30T22:58:52.105721Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2023-11-30T22:58:59.793467Z", "last_refresh": "2023-11-30T23:09:48.453411Z", "ports": [8800], "running": 2, "size": 2}}] 2023-11-30T23:15:51.576 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2023-11-30T23:15:52.512 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:15:52 smithi167 conmon[87022]: audit 2023-11-30T23:15:51.127113+0000 mgr.smithi038.ldalxq (mgr.14182) 1013 : audit [DBG] from='client.15852 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-11-30T23:15:52.513 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:15:52 smithi167 conmon[87022]: cluster 2023-11-30T23:15:51.183741+0000 mgr.smithi038.ldalxq (mgr.14182) 1014 : cluster [DBG] pgmap v653: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2023-11-30T23:15:52.524 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:15:52 smithi038 conmon[81956]: audit 2023-11-30T23:15:51.127113+0000 mgr.smithi038.ldalxq (mgr.14182) 1013 : audit [DBG] from='client.15852 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-11-30T23:15:52.525 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:15:52 smithi038 conmon[81956]: cluster 2023-11-30T23:15:51.183741+0000 mgr.smithi038.ldalxq (mgr.14182) 1014 : cluster [DBG] pgmap v653: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2023-11-30T23:15:52.576 DEBUG:teuthology.orchestra.run.smithi038:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:0dc074ce0b0b3b4f393f56dd32ef36884ebf45a9 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 3faf8b00-8fd3-11ee-95a2-87774f69a715 -- ceph orch ls -f json 2023-11-30T23:15:53.501 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:15:53 smithi038 conmon[81956]: audit 2023-11-30T23:15:53.160511+0000 mon.smithi038 (mon.0) 719 : 2023-11-30T23:15:53.502 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:15:53 smithi038 conmon[81956]: audit [DBG] from='mgr.14182 172.21.15.38:0/2999689707' entity='mgr.smithi038.ldalxq' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2023-11-30T23:15:53.518 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:15:53 smithi167 conmon[87022]: audit 2023-11-30T23:15:53.160511+0000 mon.smithi038 (mon.0) 719 : audit [DBG] from='mgr.14182 172.21.15.38:0/2999689707' entity='mgr.smithi038.ldalxq' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2023-11-30T23:15:54.282 INFO:teuthology.orchestra.run.smithi038.stdout: 2023-11-30T23:15:54.282 INFO:teuthology.orchestra.run.smithi038.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2023-11-30T22:54:47.122758Z", "last_refresh": "2023-11-30T23:09:52.311067Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2023-11-30T22:54:42.674972Z", "last_refresh": "2023-11-30T23:09:48.452759Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2023-11-30T22:54:45.114633Z", "last_refresh": "2023-11-30T23:09:52.311222Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2023-11-30T23:09:45.063688Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi167.ndkqyv on smithi167: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2023-11-30T23:12:23.150100Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi167.nhhxhd on smithi167: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi167-nhhxhd\n/bin/podman: stderr Error: error inspecting object: no such container ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi167-nhhxhd\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi167.nhhxhd\n/bin/podman: stderr Error: error inspecting object: no such container ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi167.nhhxhd\nDeploy daemon haproxy.nfs.foo.smithi167.nhhxhd ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi167 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2023-11-30T23:10:30Z\" level=warning msg=\"failed, retrying in 1s ... (1/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-11-30T23:11:08Z\" level=warning msg=\"failed, retrying in 1s ... (2/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-11-30T23:11:45Z\" level=warning msg=\"failed, retrying in 1s ... (3/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi167 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-11-30T23:14:53.155795Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi038.njeday on smithi038: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi038-njeday\n/bin/podman: stderr Error: error inspecting object: no such container ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi038-njeday\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi038.njeday\n/bin/podman: stderr Error: error inspecting object: no such container ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi038.njeday\nDeploy daemon haproxy.nfs.foo.smithi038.njeday ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi038 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2023-11-30T23:13:00Z\" level=warning msg=\"failed, retrying in 1s ... (1/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-11-30T23:13:38Z\" level=warning msg=\"failed, retrying in 1s ... (2/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-11-30T23:14:15Z\" level=warning msg=\"failed, retrying in 1s ... (3/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi038 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-11-30T23:14:53.157035Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi038.pwduyd on smithi038: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2023-11-30T23:14:53.158104Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi167.obmcvj on smithi167: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.38/16"}, "status": {"created": "2023-11-30T22:58:56.312786Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.38/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2023-11-30T22:54:41.668043Z", "last_refresh": "2023-11-30T23:09:48.452908Z", "running": 2, "size": 2}}, {"events": ["2023-11-30T22:55:50.759225Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi038:172.21.15.38=smithi038", "smithi167:172.21.15.167=smithi167"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2023-11-30T22:55:50.756456Z", "last_refresh": "2023-11-30T23:09:48.452987Z", "running": 2, "size": 2}}, {"events": ["2023-11-30T22:58:56.311581Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2023-11-30T22:58:56.308071Z", "last_refresh": "2023-11-30T23:09:52.311757Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2023-11-30T22:54:46.136630Z", "last_refresh": "2023-11-30T23:09:48.453061Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2023-11-30T22:56:33.258058Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2023-11-30T22:56:33.253117Z", "last_refresh": "2023-11-30T23:09:48.453131Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2023-11-30T22:54:43.949497Z", "last_refresh": "2023-11-30T23:09:52.311357Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2023-11-30T22:58:52.105721Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2023-11-30T22:58:59.793467Z", "last_refresh": "2023-11-30T23:09:48.453411Z", "ports": [8800], "running": 2, "size": 2}}] 2023-11-30T23:15:54.512 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:15:54 smithi167 conmon[87022]: cluster 2023-11-30T23:15:53.184417+0000 mgr.smithi038.ldalxq (mgr.14182) 1015 : cluster [DBG] pgmap v654: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2023-11-30T23:15:54.524 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:15:54 smithi038 conmon[81956]: cluster 2023-11-30T23:15:53.184417+0000 mgr.smithi038.ldalxq (mgr.14182) 1015 : cluster [DBG] pgmap v654: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2023-11-30T23:15:55.036 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2023-11-30T23:15:55.511 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:15:55 smithi167 conmon[87022]: audit 2023-11-30T23:15:54.277701+0000 mgr.smithi038.ldalxq (mgr.14182) 2023-11-30T23:15:55.512 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:15:55 smithi167 conmon[87022]: 1016 : audit [DBG] from='client.15856 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-11-30T23:15:55.524 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:15:55 smithi038 conmon[81956]: audit 2023-11-30T23:15:54.277701+0000 mgr.smithi038.ldalxq ( 2023-11-30T23:15:55.524 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:15:55 smithi038 conmon[81956]: mgr.14182) 1016 : audit [DBG] from='client.15856 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-11-30T23:15:56.038 DEBUG:teuthology.orchestra.run.smithi038:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:0dc074ce0b0b3b4f393f56dd32ef36884ebf45a9 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 3faf8b00-8fd3-11ee-95a2-87774f69a715 -- ceph orch ls -f json 2023-11-30T23:15:56.511 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:15:56 smithi167 conmon[87022]: cluster 2023-11-30T23:15:55.185316+0000 mgr.smithi038.ldalxq (mgr.14182) 1017 : 2023-11-30T23:15:56.512 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:15:56 smithi167 conmon[87022]: cluster [DBG] pgmap v655: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2023-11-30T23:15:56.512 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:15:56 smithi167 conmon[87022]: audit 2023-11-30T23:15:56.220407+0000 mon.smithi038 (mon.0) 720 : audit [INF] from='mgr.14182 172.21.15.38:0/2999689707' entity='mgr.smithi038.ldalxq' 2023-11-30T23:15:56.524 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:15:56 smithi038 conmon[81956]: cluster 2023-11-30T23:15:55.185316+0000 mgr.smithi038.ldalxq ( 2023-11-30T23:15:56.524 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:15:56 smithi038 conmon[81956]: mgr.14182) 1017 : cluster [DBG] pgmap v655: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2023-11-30T23:15:56.524 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:15:56 smithi038 conmon[81956]: audit 2023-11-30T23:15:56.220407+0000 mon.smithi038 (mon.0) 720 : audit [INF] from='mgr.14182 172.21.15.38:0/2999689707' entity='mgr.smithi038.ldalxq' 2023-11-30T23:15:58.232 INFO:teuthology.orchestra.run.smithi038.stdout: 2023-11-30T23:15:58.232 INFO:teuthology.orchestra.run.smithi038.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2023-11-30T22:54:47.122758Z", "last_refresh": "2023-11-30T23:09:52.311067Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2023-11-30T22:54:42.674972Z", "last_refresh": "2023-11-30T23:09:52.311135Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2023-11-30T22:54:45.114633Z", "last_refresh": "2023-11-30T23:09:52.311222Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2023-11-30T23:09:45.063688Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi167.ndkqyv on smithi167: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2023-11-30T23:12:23.150100Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi167.nhhxhd on smithi167: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi167-nhhxhd\n/bin/podman: stderr Error: error inspecting object: no such container ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi167-nhhxhd\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi167.nhhxhd\n/bin/podman: stderr Error: error inspecting object: no such container ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi167.nhhxhd\nDeploy daemon haproxy.nfs.foo.smithi167.nhhxhd ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi167 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2023-11-30T23:10:30Z\" level=warning msg=\"failed, retrying in 1s ... (1/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-11-30T23:11:08Z\" level=warning msg=\"failed, retrying in 1s ... (2/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-11-30T23:11:45Z\" level=warning msg=\"failed, retrying in 1s ... (3/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi167 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-11-30T23:14:53.155795Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi038.njeday on smithi038: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi038-njeday\n/bin/podman: stderr Error: error inspecting object: no such container ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi038-njeday\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi038.njeday\n/bin/podman: stderr Error: error inspecting object: no such container ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi038.njeday\nDeploy daemon haproxy.nfs.foo.smithi038.njeday ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi038 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2023-11-30T23:13:00Z\" level=warning msg=\"failed, retrying in 1s ... (1/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-11-30T23:13:38Z\" level=warning msg=\"failed, retrying in 1s ... (2/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-11-30T23:14:15Z\" level=warning msg=\"failed, retrying in 1s ... (3/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi038 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-11-30T23:14:53.157035Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi038.pwduyd on smithi038: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2023-11-30T23:14:53.158104Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi167.obmcvj on smithi167: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.38/16"}, "status": {"created": "2023-11-30T22:58:56.312786Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.38/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2023-11-30T22:54:41.668043Z", "last_refresh": "2023-11-30T23:09:52.310991Z", "running": 2, "size": 2}}, {"events": ["2023-11-30T22:55:50.759225Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi038:172.21.15.38=smithi038", "smithi167:172.21.15.167=smithi167"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2023-11-30T22:55:50.756456Z", "last_refresh": "2023-11-30T23:09:52.310850Z", "running": 2, "size": 2}}, {"events": ["2023-11-30T22:58:56.311581Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2023-11-30T22:58:56.308071Z", "last_refresh": "2023-11-30T23:09:52.311757Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2023-11-30T22:54:46.136630Z", "last_refresh": "2023-11-30T23:09:52.311288Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2023-11-30T22:56:33.258058Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2023-11-30T22:56:33.253117Z", "last_refresh": "2023-11-30T23:09:52.311422Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2023-11-30T22:54:43.949497Z", "last_refresh": "2023-11-30T23:09:52.311357Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2023-11-30T22:58:52.105721Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2023-11-30T22:58:59.793467Z", "last_refresh": "2023-11-30T23:09:52.311692Z", "ports": [8800], "running": 2, "size": 2}}] 2023-11-30T23:15:58.257 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:15:57 smithi038 conmon[81956]: cluster 2023-11-30T23:15:57. 2023-11-30T23:15:58.258 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:15:57 smithi038 conmon[81956]: 185900+0000 mgr.smithi038.ldalxq (mgr.14182) 1018 : cluster [DBG] pgmap v656: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2023-11-30T23:15:58.262 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:15:57 smithi167 conmon[87022]: cluster 2023-11-30T23:15:57.185900+0000 mgr.smithi038.ldalxq (mgr.14182) 1018 : cluster [DBG] 2023-11-30T23:15:58.262 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:15:57 smithi167 conmon[87022]: pgmap v656: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2023-11-30T23:15:58.689 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2023-11-30T23:15:59.262 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:15:58 smithi167 conmon[87022]: audit 2023-11-30T23:15:58.226130+0000 mgr.smithi038.ldalxq (mgr. 2023-11-30T23:15:59.262 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:15:58 smithi167 conmon[87022]: 14182) 1019 : audit [DBG] from='client.15860 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-11-30T23:15:59.274 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:15:58 smithi038 conmon[81956]: audit 2023-11-30T23:15:58.226130+0000 mgr.smithi038.ldalxq (mgr.14182) 1019 : audit [DBG] 2023-11-30T23:15:59.274 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:15:58 smithi038 conmon[81956]: from='client.15860 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-11-30T23:15:59.691 DEBUG:teuthology.orchestra.run.smithi038:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:0dc074ce0b0b3b4f393f56dd32ef36884ebf45a9 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 3faf8b00-8fd3-11ee-95a2-87774f69a715 -- ceph orch ls -f json 2023-11-30T23:16:00.844 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:16:00 smithi038 conmon[81956]: cluster 2023-11-30T23:15:59.186586+0000 mgr.smithi038.ldalxq (mgr.14182) 1020 : cluster [DBG] pgmap v657: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2023-11-30T23:16:00.844 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:16:00 smithi038 conmon[81956]: audit 2023-11-30T23:15:59.571902+0000 mon.smithi038 (mon.0) 721 : audit [INF] from='mgr.14182 172.21.15.38:0/2999689707' entity='mgr.smithi038.ldalxq' 2023-11-30T23:16:00.844 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:16:00 smithi038 conmon[81956]: audit 2023-11-30T23:16:00.000690+0000 mon.smithi038 (mon.0) 722 : audit [DBG] from='mgr.14182 172.21.15.38:0/2999689707' entity='mgr.smithi038.ldalxq' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2023-11-30T23:16:00.844 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:16:00 smithi038 conmon[81956]: audit 2023-11-30T23:16:00.001384+0000 mon.smithi038 (mon.0) 723 : audit [INF] from='mgr.14182 172.21.15.38:0/2999689707' entity='mgr.smithi038.ldalxq' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2023-11-30T23:16:00.844 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:16:00 smithi038 conmon[81956]: audit 2023-11-30T23:16:00.007141+0000 mon.smithi038 (mon.0) 724 : audit [INF] from='mgr.14182 172.21.15.38:0/2999689707' entity='mgr.smithi038.ldalxq' 2023-11-30T23:16:00.845 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:16:00 smithi038 conmon[81956]: audit 2023-11-30T23:16:00.010873+0000 mon.smithi038 (mon.0) 725 : audit [DBG] from='mgr.14182 172.21.15.38:0/2999689707' entity='mgr.smithi038.ldalxq' cmd=[{"prefix": "osd tree", "states": ["destroyed"], "format": "json"}]: dispatch 2023-11-30T23:16:00.845 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:16:00 smithi038 conmon[81956]: audit 2023-11-30T23:16:00.017558+0000 mon.smithi038 (mon.0) 726 : audit [INF] 2023-11-30T23:16:00.845 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:16:00 smithi038 conmon[81956]: from='mgr.14182 172.21.15.38:0/2999689707' entity='mgr.smithi038.ldalxq' 2023-11-30T23:16:01.012 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:16:00 smithi167 conmon[87022]: cluster 2023-11-30T23:15:59.186586+0000 mgr.smithi038.ldalxq (mgr.14182) 2023-11-30T23:16:01.012 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:16:00 smithi167 conmon[87022]: 1020 : cluster [DBG] pgmap v657: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2023-11-30T23:16:01.012 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:16:00 smithi167 conmon[87022]: audit 2023-11-30T23:15:59.571902+0000 mon.smithi038 (mon.0) 721 : audit [INF] from='mgr.14182 172.21.15.38:0/2999689707' entity='mgr.smithi038.ldalxq' 2023-11-30T23:16:01.012 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:16:00 smithi167 conmon[87022]: audit 2023-11-30T23:16:00.000690+0000 mon.smithi038 (mon.0) 722 : audit [DBG] from='mgr.14182 172.21.15.38:0/2999689707' entity='mgr.smithi038.ldalxq' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2023-11-30T23:16:01.012 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:16:00 smithi167 conmon[87022]: audit 2023-11-30T23:16:00.001384+0000 mon.smithi038 (mon.0) 723 : audit [INF] from='mgr.14182 172.21.15.38:0/2999689707' entity='mgr.smithi038.ldalxq' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2023-11-30T23:16:01.012 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:16:00 smithi167 conmon[87022]: audit 2023-11-30T23:16:00.007141+0000 mon.smithi038 (mon.0) 724 : audit [INF] from='mgr.14182 172.21.15.38:0/2999689707' entity='mgr.smithi038.ldalxq' 2023-11-30T23:16:01.012 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:16:00 smithi167 conmon[87022]: audit 2023-11-30T23:16:00.010873+0000 mon.smithi038 (mon.0) 725 : audit [DBG] from='mgr.14182 172.21.15.38:0/2999689707' entity='mgr.smithi038.ldalxq' cmd=[{"prefix": "osd tree", "states": ["destroyed"], "format": "json"}]: dispatch 2023-11-30T23:16:01.013 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:16:00 smithi167 conmon[87022]: audit 2023-11-30T23:16:00.017558+0000 mon.smithi038 (mon.0) 726 : audit [INF] from='mgr.14182 172.21.15.38:0/2999689707' entity='mgr.smithi038.ldalxq' 2023-11-30T23:16:01.478 INFO:teuthology.orchestra.run.smithi038.stdout: 2023-11-30T23:16:01.479 INFO:teuthology.orchestra.run.smithi038.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2023-11-30T22:54:47.122758Z", "last_refresh": "2023-11-30T23:15:59.564688Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2023-11-30T22:54:42.674972Z", "last_refresh": "2023-11-30T23:15:56.214205Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2023-11-30T22:54:45.114633Z", "last_refresh": "2023-11-30T23:15:59.564823Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2023-11-30T23:09:45.063688Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi167.ndkqyv on smithi167: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2023-11-30T23:12:23.150100Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi167.nhhxhd on smithi167: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi167-nhhxhd\n/bin/podman: stderr Error: error inspecting object: no such container ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi167-nhhxhd\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi167.nhhxhd\n/bin/podman: stderr Error: error inspecting object: no such container ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi167.nhhxhd\nDeploy daemon haproxy.nfs.foo.smithi167.nhhxhd ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi167 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2023-11-30T23:10:30Z\" level=warning msg=\"failed, retrying in 1s ... (1/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-11-30T23:11:08Z\" level=warning msg=\"failed, retrying in 1s ... (2/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-11-30T23:11:45Z\" level=warning msg=\"failed, retrying in 1s ... (3/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi167 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-11-30T23:14:53.155795Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi038.njeday on smithi038: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi038-njeday\n/bin/podman: stderr Error: error inspecting object: no such container ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi038-njeday\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi038.njeday\n/bin/podman: stderr Error: error inspecting object: no such container ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi038.njeday\nDeploy daemon haproxy.nfs.foo.smithi038.njeday ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi038 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2023-11-30T23:13:00Z\" level=warning msg=\"failed, retrying in 1s ... (1/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-11-30T23:13:38Z\" level=warning msg=\"failed, retrying in 1s ... (2/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-11-30T23:14:15Z\" level=warning msg=\"failed, retrying in 1s ... (3/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi038 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-11-30T23:14:53.157035Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi038.pwduyd on smithi038: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2023-11-30T23:14:53.158104Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi167.obmcvj on smithi167: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.38/16"}, "status": {"created": "2023-11-30T22:58:56.312786Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.38/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2023-11-30T22:54:41.668043Z", "last_refresh": "2023-11-30T23:15:56.214350Z", "running": 2, "size": 2}}, {"events": ["2023-11-30T22:55:50.759225Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi038:172.21.15.38=smithi038", "smithi167:172.21.15.167=smithi167"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2023-11-30T22:55:50.756456Z", "last_refresh": "2023-11-30T23:15:56.214426Z", "running": 2, "size": 2}}, {"events": ["2023-11-30T22:58:56.311581Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2023-11-30T22:58:56.308071Z", "last_refresh": "2023-11-30T23:15:59.565359Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2023-11-30T22:54:46.136630Z", "last_refresh": "2023-11-30T23:15:56.214508Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2023-11-30T22:56:33.258058Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2023-11-30T22:56:33.253117Z", "last_refresh": "2023-11-30T23:15:56.214583Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2023-11-30T22:54:43.949497Z", "last_refresh": "2023-11-30T23:15:59.564954Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2023-11-30T22:58:52.105721Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2023-11-30T22:58:59.793467Z", "last_refresh": "2023-11-30T23:15:56.214845Z", "ports": [8800], "running": 2, "size": 2}}] 2023-11-30T23:16:01.774 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:16:01 smithi038 conmon[81956]: cluster 2023-11-30T23:16:00.007858+0000 2023-11-30T23:16:01.774 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:16:01 smithi038 conmon[81956]: mgr.smithi038.ldalxq (mgr.14182) 1021 : cluster [DBG] pgmap v658: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 94 B/s rd, 0 op/s 2023-11-30T23:16:01.774 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:16:01 smithi038 conmon[81956]: cephadm 2023-11-30T23:16:00.019538+0000 mgr.smithi038.ldalxq (mgr.14182) 1022 : cephadm [INF] Deploying daemon haproxy.nfs.foo.smithi167.ktqzxw on smithi167 2023-11-30T23:16:01.774 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:16:01 smithi038 conmon[81956]: cluster 2023-11-30T23:16:01.005413+0000 mon.smithi038 (mon.0) 727 : cluster [INF] Health check cleared: CEPHADM_DAEMON_PLACE_FAIL (was: Failed to place 4 daemon(s)) 2023-11-30T23:16:01.774 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:16:01 smithi038 conmon[81956]: cluster 2023-11-30T23:16:01.005523+0000 mon.smithi038 (mon.0) 728 : cluster [INF] Cluster is now healthy 2023-11-30T23:16:01.935 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2023-11-30T23:16:02.013 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:16:01 smithi167 conmon[87022]: cluster 2023-11-30T23:16:00.007858+0000 mgr.smithi038.ldalxq (mgr.14182) 1021 : cluster [DBG] pgmap v658: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 94 B/s rd, 0 op/s 2023-11-30T23:16:02.013 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:16:01 smithi167 conmon[87022]: cephadm 2023-11-30T23:16:00.019538+0000 mgr.smithi038.ldalxq (mgr.14182) 1022 : cephadm [INF] Deploying daemon haproxy.nfs.foo.smithi167.ktqzxw on smithi167 2023-11-30T23:16:02.013 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:16:01 smithi167 conmon[87022]: cluster 2023-11-30T23:16:01.005413+0000 mon.smithi038 (mon.0) 727 : 2023-11-30T23:16:02.013 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:16:01 smithi167 conmon[87022]: cluster [INF] Health check cleared: CEPHADM_DAEMON_PLACE_FAIL (was: Failed to place 4 daemon(s)) 2023-11-30T23:16:02.013 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:16:01 smithi167 conmon[87022]: cluster 2023-11-30T23: 2023-11-30T23:16:02.013 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:16:01 smithi167 conmon[87022]: 16:01.005523+0000 mon.smithi038 (mon 2023-11-30T23:16:02.013 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:16:01 smithi167 conmon[87022]: .0) 728 : cluster [INF] Cluster is now healthy 2023-11-30T23:16:02.937 DEBUG:teuthology.orchestra.run.smithi038:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:0dc074ce0b0b3b4f393f56dd32ef36884ebf45a9 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 3faf8b00-8fd3-11ee-95a2-87774f69a715 -- ceph orch ls -f json 2023-11-30T23:16:02.968 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:16:02 smithi038 conmon[81956]: audit 2023-11-30T23:16:01.474218+0000 mgr.smithi038.ldalxq (mgr.14182) 1023 2023-11-30T23:16:02.968 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:16:02 smithi038 conmon[81956]: : audit [DBG] from='client.15864 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-11-30T23:16:03.012 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:16:02 smithi167 conmon[87022]: audit 2023-11-30T23:16:01.474218+0000 mgr.smithi038.ldalxq (mgr.14182) 1023 : audit [DBG] from='client.15864 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-11-30T23:16:03.774 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:16:03 smithi038 conmon[81956]: cluster 2023-11-30T23:16:02.008369+0000 mgr.smithi038.ldalxq 2023-11-30T23:16:03.774 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:16:03 smithi038 conmon[81956]: (mgr.14182) 1024 : cluster [DBG] pgmap v659: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 94 B/s rd, 0 op/s 2023-11-30T23:16:04.012 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:16:03 smithi167 conmon[87022]: cluster 2023-11-30T23:16:02.008369+0000 mgr.smithi038.ldalxq (mgr.14182) 1024 : cluster [DBG] pgmap v659: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 94 B/s rd, 0 op/s 2023-11-30T23:16:04.730 INFO:teuthology.orchestra.run.smithi038.stdout: 2023-11-30T23:16:04.730 INFO:teuthology.orchestra.run.smithi038.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2023-11-30T22:54:47.122758Z", "last_refresh": "2023-11-30T23:15:59.564688Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2023-11-30T22:54:42.674972Z", "last_refresh": "2023-11-30T23:15:56.214205Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2023-11-30T22:54:45.114633Z", "last_refresh": "2023-11-30T23:15:59.564823Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2023-11-30T23:09:45.063688Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi167.ndkqyv on smithi167: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2023-11-30T23:12:23.150100Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi167.nhhxhd on smithi167: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi167-nhhxhd\n/bin/podman: stderr Error: error inspecting object: no such container ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi167-nhhxhd\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi167.nhhxhd\n/bin/podman: stderr Error: error inspecting object: no such container ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi167.nhhxhd\nDeploy daemon haproxy.nfs.foo.smithi167.nhhxhd ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi167 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2023-11-30T23:10:30Z\" level=warning msg=\"failed, retrying in 1s ... (1/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-11-30T23:11:08Z\" level=warning msg=\"failed, retrying in 1s ... (2/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-11-30T23:11:45Z\" level=warning msg=\"failed, retrying in 1s ... (3/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi167 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-11-30T23:14:53.155795Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi038.njeday on smithi038: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi038-njeday\n/bin/podman: stderr Error: error inspecting object: no such container ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi038-njeday\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi038.njeday\n/bin/podman: stderr Error: error inspecting object: no such container ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi038.njeday\nDeploy daemon haproxy.nfs.foo.smithi038.njeday ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi038 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2023-11-30T23:13:00Z\" level=warning msg=\"failed, retrying in 1s ... (1/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-11-30T23:13:38Z\" level=warning msg=\"failed, retrying in 1s ... (2/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-11-30T23:14:15Z\" level=warning msg=\"failed, retrying in 1s ... (3/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi038 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-11-30T23:14:53.157035Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi038.pwduyd on smithi038: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2023-11-30T23:14:53.158104Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi167.obmcvj on smithi167: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.38/16"}, "status": {"created": "2023-11-30T22:58:56.312786Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.38/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2023-11-30T22:54:41.668043Z", "last_refresh": "2023-11-30T23:15:56.214350Z", "running": 2, "size": 2}}, {"events": ["2023-11-30T22:55:50.759225Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi038:172.21.15.38=smithi038", "smithi167:172.21.15.167=smithi167"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2023-11-30T22:55:50.756456Z", "last_refresh": "2023-11-30T23:15:56.214426Z", "running": 2, "size": 2}}, {"events": ["2023-11-30T22:58:56.311581Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2023-11-30T22:58:56.308071Z", "last_refresh": "2023-11-30T23:15:59.565359Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2023-11-30T22:54:46.136630Z", "last_refresh": "2023-11-30T23:15:56.214508Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2023-11-30T22:56:33.258058Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2023-11-30T22:56:33.253117Z", "last_refresh": "2023-11-30T23:15:56.214583Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2023-11-30T22:54:43.949497Z", "last_refresh": "2023-11-30T23:15:59.564954Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2023-11-30T22:58:52.105721Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2023-11-30T22:58:59.793467Z", "last_refresh": "2023-11-30T23:15:56.214845Z", "ports": [8800], "running": 2, "size": 2}}] 2023-11-30T23:16:05.188 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2023-11-30T23:16:06.012 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:16:05 smithi167 conmon[87022]: cluster 2023-11-30T23:16:04.009122+0000 mgr.smithi038.ldalxq (mgr.14182) 1025 : cluster [DBG] pgmap v660: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 94 B/s rd, 0 op/s 2023-11-30T23:16:06.012 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:16:05 smithi167 conmon[87022]: audit 2023-11-30T23:16:04.726127+0000 mgr.smithi038.ldalxq (mgr.14182) 1026 : audit [DBG] from='client.15868 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-11-30T23:16:06.024 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:16:05 smithi038 conmon[81956]: cluster 2023-11-30T23:16:04.009122+0000 mgr.smithi038.ldalxq 2023-11-30T23:16:06.024 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:16:05 smithi038 conmon[81956]: (mgr.14182) 1025 : cluster [DBG] pgmap v660: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 94 B/s rd, 0 op/s 2023-11-30T23:16:06.024 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:16:05 smithi038 conmon[81956]: audit 2023-11-30T23:16:04.726127+0000 mgr.smithi038.ldalxq (mgr.14182) 1026 : audit [DBG] from='client.15868 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-11-30T23:16:06.189 DEBUG:teuthology.orchestra.run.smithi038:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:0dc074ce0b0b3b4f393f56dd32ef36884ebf45a9 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 3faf8b00-8fd3-11ee-95a2-87774f69a715 -- ceph orch ls -f json 2023-11-30T23:16:08.012 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:16:07 smithi167 conmon[87022]: cluster 2023-11-30T23:16:06.009905+0000 mgr.smithi038.ldalxq (mgr.14182) 1027 : cluster [DBG] pgmap v661: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 94 B/s rd, 0 op/s 2023-11-30T23:16:08.012 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:16:07 smithi167 conmon[87022]: 2023-11-30T23:16:08.024 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:16:07 smithi038 conmon[81956]: cluster 2023-11-30T23:16:06.009905+0000 mgr.smithi038.ldalxq (mgr.14182) 1027 : cluster [DBG] pgmap v661: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 94 B/s rd, 0 op/s 2023-11-30T23:16:08.032 INFO:teuthology.orchestra.run.smithi038.stdout: 2023-11-30T23:16:08.032 INFO:teuthology.orchestra.run.smithi038.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2023-11-30T22:54:47.122758Z", "last_refresh": "2023-11-30T23:15:59.564688Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2023-11-30T22:54:42.674972Z", "last_refresh": "2023-11-30T23:15:56.214205Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2023-11-30T22:54:45.114633Z", "last_refresh": "2023-11-30T23:15:59.564823Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2023-11-30T23:09:45.063688Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi167.ndkqyv on smithi167: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2023-11-30T23:12:23.150100Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi167.nhhxhd on smithi167: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi167-nhhxhd\n/bin/podman: stderr Error: error inspecting object: no such container ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi167-nhhxhd\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi167.nhhxhd\n/bin/podman: stderr Error: error inspecting object: no such container ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi167.nhhxhd\nDeploy daemon haproxy.nfs.foo.smithi167.nhhxhd ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi167 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2023-11-30T23:10:30Z\" level=warning msg=\"failed, retrying in 1s ... (1/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-11-30T23:11:08Z\" level=warning msg=\"failed, retrying in 1s ... (2/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-11-30T23:11:45Z\" level=warning msg=\"failed, retrying in 1s ... (3/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi167 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-11-30T23:14:53.155795Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi038.njeday on smithi038: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi038-njeday\n/bin/podman: stderr Error: error inspecting object: no such container ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi038-njeday\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi038.njeday\n/bin/podman: stderr Error: error inspecting object: no such container ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi038.njeday\nDeploy daemon haproxy.nfs.foo.smithi038.njeday ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi038 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2023-11-30T23:13:00Z\" level=warning msg=\"failed, retrying in 1s ... (1/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-11-30T23:13:38Z\" level=warning msg=\"failed, retrying in 1s ... (2/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-11-30T23:14:15Z\" level=warning msg=\"failed, retrying in 1s ... (3/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi038 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-11-30T23:14:53.157035Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi038.pwduyd on smithi038: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2023-11-30T23:14:53.158104Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi167.obmcvj on smithi167: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.38/16"}, "status": {"created": "2023-11-30T22:58:56.312786Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.38/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2023-11-30T22:54:41.668043Z", "last_refresh": "2023-11-30T23:15:56.214350Z", "running": 2, "size": 2}}, {"events": ["2023-11-30T22:55:50.759225Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi038:172.21.15.38=smithi038", "smithi167:172.21.15.167=smithi167"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2023-11-30T22:55:50.756456Z", "last_refresh": "2023-11-30T23:15:56.214426Z", "running": 2, "size": 2}}, {"events": ["2023-11-30T22:58:56.311581Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2023-11-30T22:58:56.308071Z", "last_refresh": "2023-11-30T23:15:59.565359Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2023-11-30T22:54:46.136630Z", "last_refresh": "2023-11-30T23:15:56.214508Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2023-11-30T22:56:33.258058Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2023-11-30T22:56:33.253117Z", "last_refresh": "2023-11-30T23:15:56.214583Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2023-11-30T22:54:43.949497Z", "last_refresh": "2023-11-30T23:15:59.564954Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2023-11-30T22:58:52.105721Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2023-11-30T22:58:59.793467Z", "last_refresh": "2023-11-30T23:15:56.214845Z", "ports": [8800], "running": 2, "size": 2}}] 2023-11-30T23:16:08.452 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2023-11-30T23:16:09.453 DEBUG:teuthology.orchestra.run.smithi038:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:0dc074ce0b0b3b4f393f56dd32ef36884ebf45a9 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 3faf8b00-8fd3-11ee-95a2-87774f69a715 -- ceph orch ls -f json 2023-11-30T23:16:09.774 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:16:09 smithi038 conmon[81956]: cluster 2023-11-30T23:16:08 2023-11-30T23:16:09.774 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:16:09 smithi038 conmon[81956]: .010479+0000 mgr.smithi038.ldalxq (mgr.14182) 1028 : cluster [DBG] pgmap v662: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 94 B/s rd, 0 op/s 2023-11-30T23:16:09.774 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:16:09 smithi038 conmon[81956]: audit 2023-11-30T23:16:08.028222+0000 mgr.smithi038.ldalxq (mgr.14182) 1029 : audit [DBG] from='client.15872 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-11-30T23:16:10.012 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:16:09 smithi167 conmon[87022]: cluster 2023-11-30T23:16:08.010479+0000 mgr.smithi038.ldalxq (mgr.14182) 1028 : cluster [DBG] pgmap v662: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 94 B/s rd, 0 op/s 2023-11-30T23:16:10.012 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:16:09 smithi167 conmon[87022]: audit 2023-11-30T23:16:08.028222+0000 mgr.smithi038.ldalxq (mgr.14182) 1029 : audit [DBG] from='client.15872 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-11-30T23:16:11.193 INFO:teuthology.orchestra.run.smithi038.stdout: 2023-11-30T23:16:11.193 INFO:teuthology.orchestra.run.smithi038.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2023-11-30T22:54:47.122758Z", "last_refresh": "2023-11-30T23:15:59.564688Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2023-11-30T22:54:42.674972Z", "last_refresh": "2023-11-30T23:15:56.214205Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2023-11-30T22:54:45.114633Z", "last_refresh": "2023-11-30T23:15:59.564823Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2023-11-30T23:09:45.063688Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi167.ndkqyv on smithi167: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2023-11-30T23:12:23.150100Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi167.nhhxhd on smithi167: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi167-nhhxhd\n/bin/podman: stderr Error: error inspecting object: no such container ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi167-nhhxhd\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi167.nhhxhd\n/bin/podman: stderr Error: error inspecting object: no such container ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi167.nhhxhd\nDeploy daemon haproxy.nfs.foo.smithi167.nhhxhd ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi167 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2023-11-30T23:10:30Z\" level=warning msg=\"failed, retrying in 1s ... (1/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-11-30T23:11:08Z\" level=warning msg=\"failed, retrying in 1s ... (2/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-11-30T23:11:45Z\" level=warning msg=\"failed, retrying in 1s ... (3/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi167 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-11-30T23:14:53.155795Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi038.njeday on smithi038: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi038-njeday\n/bin/podman: stderr Error: error inspecting object: no such container ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi038-njeday\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi038.njeday\n/bin/podman: stderr Error: error inspecting object: no such container ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi038.njeday\nDeploy daemon haproxy.nfs.foo.smithi038.njeday ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi038 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2023-11-30T23:13:00Z\" level=warning msg=\"failed, retrying in 1s ... (1/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-11-30T23:13:38Z\" level=warning msg=\"failed, retrying in 1s ... (2/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-11-30T23:14:15Z\" level=warning msg=\"failed, retrying in 1s ... (3/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi038 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-11-30T23:14:53.157035Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi038.pwduyd on smithi038: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2023-11-30T23:14:53.158104Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi167.obmcvj on smithi167: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.38/16"}, "status": {"created": "2023-11-30T22:58:56.312786Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.38/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2023-11-30T22:54:41.668043Z", "last_refresh": "2023-11-30T23:15:56.214350Z", "running": 2, "size": 2}}, {"events": ["2023-11-30T22:55:50.759225Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi038:172.21.15.38=smithi038", "smithi167:172.21.15.167=smithi167"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2023-11-30T22:55:50.756456Z", "last_refresh": "2023-11-30T23:15:56.214426Z", "running": 2, "size": 2}}, {"events": ["2023-11-30T22:58:56.311581Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2023-11-30T22:58:56.308071Z", "last_refresh": "2023-11-30T23:15:59.565359Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2023-11-30T22:54:46.136630Z", "last_refresh": "2023-11-30T23:15:56.214508Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2023-11-30T22:56:33.258058Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2023-11-30T22:56:33.253117Z", "last_refresh": "2023-11-30T23:15:56.214583Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2023-11-30T22:54:43.949497Z", "last_refresh": "2023-11-30T23:15:59.564954Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2023-11-30T22:58:52.105721Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2023-11-30T22:58:59.793467Z", "last_refresh": "2023-11-30T23:15:56.214845Z", "ports": [8800], "running": 2, "size": 2}}] 2023-11-30T23:16:11.620 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2023-11-30T23:16:12.012 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:16:11 smithi167 conmon[87022]: cluster 2023-11-30T23:16:10.011329+0000 mgr.smithi038.ldalxq (mgr.14182) 1030 : cluster [DBG] pgmap v663: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 94 B/s rd, 0 op/s 2023-11-30T23:16:12.024 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:16:11 smithi038 conmon[81956]: cluster 2023-11-30T23:16:10.011329+0000 mgr.smithi038.ldalxq (mgr.14182) 1030 : cluster [DBG] pgmap v663: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 94 B/s rd, 0 op/s 2023-11-30T23:16:12.622 DEBUG:teuthology.orchestra.run.smithi038:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:0dc074ce0b0b3b4f393f56dd32ef36884ebf45a9 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 3faf8b00-8fd3-11ee-95a2-87774f69a715 -- ceph orch ls -f json 2023-11-30T23:16:13.012 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:16:12 smithi167 conmon[87022]: audit 2023-11-30T23:16:11.188759+0000 mgr.smithi038.ldalxq (mgr.14182) 1031 : audit [DBG] from='client.15876 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-11-30T23:16:13.012 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:16:12 smithi167 conmon[87022]: audit 2023-11-30T23:16:12.355802+0000 2023-11-30T23:16:13.012 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:16:12 smithi167 conmon[87022]: mon.smithi038 (mon.0) 729 : audit [INF] from='mgr.14182 172.21.15.38:0/2999689707' entity='mgr.smithi038.ldalxq' 2023-11-30T23:16:13.024 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:16:12 smithi038 conmon[81956]: audit 2023-11-30T23:16:11.188759+0000 mgr.smithi038.ldalxq (mgr.14182) 1031 : audit [DBG] 2023-11-30T23:16:13.024 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:16:12 smithi038 conmon[81956]: from='client.15876 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-11-30T23:16:13.024 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:16:12 smithi038 conmon[81956]: audit 2023-11-30T23:16:12.355802+0000 mon.smithi038 (mon.0) 729 : audit [INF] from='mgr.14182 172.21.15.38:0/2999689707' entity='mgr.smithi038.ldalxq' 2023-11-30T23:16:13.926 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:16:13 smithi038 conmon[81956]: cluster 2023-11-30T23:16:12.012005+0000 mgr.smithi038.ldalxq ( 2023-11-30T23:16:13.926 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:16:13 smithi038 conmon[81956]: mgr.14182) 1032 : cluster [DBG] pgmap v664: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2023-11-30T23:16:14.012 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:16:13 smithi167 conmon[87022]: cluster 2023-11-30T23:16:12.012005+0000 mgr.smithi038.ldalxq (mgr.14182) 1032 : cluster [DBG] 2023-11-30T23:16:14.012 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:16:13 smithi167 conmon[87022]: pgmap v664: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2023-11-30T23:16:14.313 INFO:teuthology.orchestra.run.smithi038.stdout: 2023-11-30T23:16:14.313 INFO:teuthology.orchestra.run.smithi038.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2023-11-30T22:54:47.122758Z", "last_refresh": "2023-11-30T23:15:59.564688Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2023-11-30T22:54:42.674972Z", "last_refresh": "2023-11-30T23:15:56.214205Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2023-11-30T22:54:45.114633Z", "last_refresh": "2023-11-30T23:15:59.564823Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2023-11-30T23:09:45.063688Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi167.ndkqyv on smithi167: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2023-11-30T23:12:23.150100Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi167.nhhxhd on smithi167: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi167-nhhxhd\n/bin/podman: stderr Error: error inspecting object: no such container ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi167-nhhxhd\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi167.nhhxhd\n/bin/podman: stderr Error: error inspecting object: no such container ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi167.nhhxhd\nDeploy daemon haproxy.nfs.foo.smithi167.nhhxhd ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi167 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2023-11-30T23:10:30Z\" level=warning msg=\"failed, retrying in 1s ... (1/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-11-30T23:11:08Z\" level=warning msg=\"failed, retrying in 1s ... (2/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-11-30T23:11:45Z\" level=warning msg=\"failed, retrying in 1s ... (3/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi167 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-11-30T23:14:53.155795Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi038.njeday on smithi038: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi038-njeday\n/bin/podman: stderr Error: error inspecting object: no such container ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi038-njeday\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi038.njeday\n/bin/podman: stderr Error: error inspecting object: no such container ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi038.njeday\nDeploy daemon haproxy.nfs.foo.smithi038.njeday ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi038 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2023-11-30T23:13:00Z\" level=warning msg=\"failed, retrying in 1s ... (1/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-11-30T23:13:38Z\" level=warning msg=\"failed, retrying in 1s ... (2/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-11-30T23:14:15Z\" level=warning msg=\"failed, retrying in 1s ... (3/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi038 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-11-30T23:14:53.157035Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi038.pwduyd on smithi038: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2023-11-30T23:14:53.158104Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi167.obmcvj on smithi167: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.38/16"}, "status": {"created": "2023-11-30T22:58:56.312786Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.38/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2023-11-30T22:54:41.668043Z", "last_refresh": "2023-11-30T23:15:56.214350Z", "running": 2, "size": 2}}, {"events": ["2023-11-30T22:55:50.759225Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi038:172.21.15.38=smithi038", "smithi167:172.21.15.167=smithi167"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2023-11-30T22:55:50.756456Z", "last_refresh": "2023-11-30T23:15:56.214426Z", "running": 2, "size": 2}}, {"events": ["2023-11-30T22:58:56.311581Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2023-11-30T22:58:56.308071Z", "last_refresh": "2023-11-30T23:15:59.565359Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2023-11-30T22:54:46.136630Z", "last_refresh": "2023-11-30T23:15:56.214508Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2023-11-30T22:56:33.258058Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2023-11-30T22:56:33.253117Z", "last_refresh": "2023-11-30T23:15:56.214583Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2023-11-30T22:54:43.949497Z", "last_refresh": "2023-11-30T23:15:59.564954Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2023-11-30T22:58:52.105721Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2023-11-30T22:58:59.793467Z", "last_refresh": "2023-11-30T23:15:56.214845Z", "ports": [8800], "running": 2, "size": 2}}] 2023-11-30T23:16:14.770 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2023-11-30T23:16:15.771 DEBUG:teuthology.orchestra.run.smithi038:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:0dc074ce0b0b3b4f393f56dd32ef36884ebf45a9 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 3faf8b00-8fd3-11ee-95a2-87774f69a715 -- ceph orch ls -f json 2023-11-30T23:16:16.012 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:16:15 smithi167 conmon[87022]: cluster 2023-11-30T23:16:14.012608+0000 mgr.smithi038.ldalxq (mgr.14182) 1033 : cluster [DBG] pgmap v665: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2023-11-30T23:16:16.012 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:16:15 smithi167 conmon[87022]: audit 2023-11-30T23:16:14.309376+0000 mgr.smithi038.ldalxq 2023-11-30T23:16:16.012 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:16:15 smithi167 conmon[87022]: (mgr.14182) 1034 : audit [DBG] from='client.15880 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-11-30T23:16:16.024 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:16:15 smithi038 conmon[81956]: cluster 2023-11-30T23:16:14.012608+0000 mgr.smithi038.ldalxq (mgr.14182) 1033 : cluster [DBG] pgmap v665: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2023-11-30T23:16:16.024 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:16:15 smithi038 conmon[81956]: audit 2023-11-30T23:16:14.309376+0000 mgr.smithi038.ldalxq (mgr.14182) 1034 : audit [DBG] from='client.15880 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-11-30T23:16:17.496 INFO:teuthology.orchestra.run.smithi038.stdout: 2023-11-30T23:16:17.497 INFO:teuthology.orchestra.run.smithi038.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2023-11-30T22:54:47.122758Z", "last_refresh": "2023-11-30T23:15:59.564688Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2023-11-30T22:54:42.674972Z", "last_refresh": "2023-11-30T23:15:56.214205Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2023-11-30T22:54:45.114633Z", "last_refresh": "2023-11-30T23:15:59.564823Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2023-11-30T23:09:45.063688Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi167.ndkqyv on smithi167: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2023-11-30T23:12:23.150100Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi167.nhhxhd on smithi167: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi167-nhhxhd\n/bin/podman: stderr Error: error inspecting object: no such container ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi167-nhhxhd\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi167.nhhxhd\n/bin/podman: stderr Error: error inspecting object: no such container ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi167.nhhxhd\nDeploy daemon haproxy.nfs.foo.smithi167.nhhxhd ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi167 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2023-11-30T23:10:30Z\" level=warning msg=\"failed, retrying in 1s ... (1/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-11-30T23:11:08Z\" level=warning msg=\"failed, retrying in 1s ... (2/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-11-30T23:11:45Z\" level=warning msg=\"failed, retrying in 1s ... (3/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi167 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-11-30T23:14:53.155795Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi038.njeday on smithi038: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi038-njeday\n/bin/podman: stderr Error: error inspecting object: no such container ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi038-njeday\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi038.njeday\n/bin/podman: stderr Error: error inspecting object: no such container ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi038.njeday\nDeploy daemon haproxy.nfs.foo.smithi038.njeday ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi038 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2023-11-30T23:13:00Z\" level=warning msg=\"failed, retrying in 1s ... (1/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-11-30T23:13:38Z\" level=warning msg=\"failed, retrying in 1s ... (2/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-11-30T23:14:15Z\" level=warning msg=\"failed, retrying in 1s ... (3/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi038 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-11-30T23:14:53.157035Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi038.pwduyd on smithi038: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2023-11-30T23:14:53.158104Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi167.obmcvj on smithi167: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.38/16"}, "status": {"created": "2023-11-30T22:58:56.312786Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.38/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2023-11-30T22:54:41.668043Z", "last_refresh": "2023-11-30T23:15:56.214350Z", "running": 2, "size": 2}}, {"events": ["2023-11-30T22:55:50.759225Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi038:172.21.15.38=smithi038", "smithi167:172.21.15.167=smithi167"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2023-11-30T22:55:50.756456Z", "last_refresh": "2023-11-30T23:15:56.214426Z", "running": 2, "size": 2}}, {"events": ["2023-11-30T22:58:56.311581Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2023-11-30T22:58:56.308071Z", "last_refresh": "2023-11-30T23:15:59.565359Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2023-11-30T22:54:46.136630Z", "last_refresh": "2023-11-30T23:15:56.214508Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2023-11-30T22:56:33.258058Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2023-11-30T22:56:33.253117Z", "last_refresh": "2023-11-30T23:15:56.214583Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2023-11-30T22:54:43.949497Z", "last_refresh": "2023-11-30T23:15:59.564954Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2023-11-30T22:58:52.105721Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2023-11-30T22:58:59.793467Z", "last_refresh": "2023-11-30T23:15:56.214845Z", "ports": [8800], "running": 2, "size": 2}}] 2023-11-30T23:16:17.928 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:16:17 smithi038 conmon[81956]: cluster 2023-11-30T23:16:16. 2023-11-30T23:16:17.928 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:16:17 smithi038 conmon[81956]: 013525+0000 mgr.smithi038.ldalxq (mgr.14182) 1035 : cluster [DBG] pgmap v666: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2023-11-30T23:16:17.930 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2023-11-30T23:16:18.012 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:16:17 smithi167 conmon[87022]: cluster 2023-11-30T23:16:16.013525+0000 mgr.smithi038.ldalxq (mgr.14182) 1035 : cluster [DBG] pgmap v666: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2023-11-30T23:16:18.931 DEBUG:teuthology.orchestra.run.smithi038:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:0dc074ce0b0b3b4f393f56dd32ef36884ebf45a9 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 3faf8b00-8fd3-11ee-95a2-87774f69a715 -- ceph orch ls -f json 2023-11-30T23:16:18.944 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:16:18 smithi038 conmon[81956]: audit 2023-11-30T23:16:17.492795+0000 mgr.smithi038.ldalxq (mgr.14182) 1036 : audit [DBG] from='client.15884 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-11-30T23:16:19.011 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:16:18 smithi167 conmon[87022]: audit 2023-11-30T23:16:17.492795+0000 mgr.smithi038.ldalxq (mgr.14182) 1036 : audit [DBG] from='client.15884 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-11-30T23:16:19.774 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:16:19 smithi038 conmon[81956]: cluster 2023-11-30T23:16:18.014111+0000 mgr.smithi038.ldalxq (mgr.14182) 1037 : cluster [DBG] pgmap v667: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2023-11-30T23:16:20.012 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:16:19 smithi167 conmon[87022]: cluster 2023-11-30T23:16:18.014111+0000 mgr.smithi038.ldalxq (mgr.14182) 1037 : cluster [DBG] pgmap v667: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2023-11-30T23:16:20.785 INFO:teuthology.orchestra.run.smithi038.stdout: 2023-11-30T23:16:20.785 INFO:teuthology.orchestra.run.smithi038.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2023-11-30T22:54:47.122758Z", "last_refresh": "2023-11-30T23:15:59.564688Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2023-11-30T22:54:42.674972Z", "last_refresh": "2023-11-30T23:15:56.214205Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2023-11-30T22:54:45.114633Z", "last_refresh": "2023-11-30T23:15:59.564823Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2023-11-30T23:09:45.063688Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi167.ndkqyv on smithi167: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2023-11-30T23:12:23.150100Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi167.nhhxhd on smithi167: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi167-nhhxhd\n/bin/podman: stderr Error: error inspecting object: no such container ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi167-nhhxhd\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi167.nhhxhd\n/bin/podman: stderr Error: error inspecting object: no such container ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi167.nhhxhd\nDeploy daemon haproxy.nfs.foo.smithi167.nhhxhd ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi167 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2023-11-30T23:10:30Z\" level=warning msg=\"failed, retrying in 1s ... (1/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-11-30T23:11:08Z\" level=warning msg=\"failed, retrying in 1s ... (2/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-11-30T23:11:45Z\" level=warning msg=\"failed, retrying in 1s ... (3/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi167 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-11-30T23:14:53.155795Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi038.njeday on smithi038: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi038-njeday\n/bin/podman: stderr Error: error inspecting object: no such container ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi038-njeday\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi038.njeday\n/bin/podman: stderr Error: error inspecting object: no such container ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi038.njeday\nDeploy daemon haproxy.nfs.foo.smithi038.njeday ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi038 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2023-11-30T23:13:00Z\" level=warning msg=\"failed, retrying in 1s ... (1/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-11-30T23:13:38Z\" level=warning msg=\"failed, retrying in 1s ... (2/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-11-30T23:14:15Z\" level=warning msg=\"failed, retrying in 1s ... (3/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi038 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-11-30T23:14:53.157035Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi038.pwduyd on smithi038: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2023-11-30T23:14:53.158104Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi167.obmcvj on smithi167: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.38/16"}, "status": {"created": "2023-11-30T22:58:56.312786Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.38/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2023-11-30T22:54:41.668043Z", "last_refresh": "2023-11-30T23:15:56.214350Z", "running": 2, "size": 2}}, {"events": ["2023-11-30T22:55:50.759225Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi038:172.21.15.38=smithi038", "smithi167:172.21.15.167=smithi167"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2023-11-30T22:55:50.756456Z", "last_refresh": "2023-11-30T23:15:56.214426Z", "running": 2, "size": 2}}, {"events": ["2023-11-30T22:58:56.311581Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2023-11-30T22:58:56.308071Z", "last_refresh": "2023-11-30T23:15:59.565359Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2023-11-30T22:54:46.136630Z", "last_refresh": "2023-11-30T23:15:56.214508Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2023-11-30T22:56:33.258058Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2023-11-30T22:56:33.253117Z", "last_refresh": "2023-11-30T23:15:56.214583Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2023-11-30T22:54:43.949497Z", "last_refresh": "2023-11-30T23:15:59.564954Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2023-11-30T22:58:52.105721Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2023-11-30T22:58:59.793467Z", "last_refresh": "2023-11-30T23:15:56.214845Z", "ports": [8800], "running": 2, "size": 2}}] 2023-11-30T23:16:21.192 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2023-11-30T23:16:22.012 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:16:21 smithi167 conmon[87022]: cluster 2023-11-30T23:16:20.014799+0000 mgr.smithi038.ldalxq (mgr.14182) 1038 : cluster [DBG] pgmap v668: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2023-11-30T23:16:22.024 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:16:21 smithi038 conmon[81956]: cluster 2023-11-30T23:16:20.014799+0000 mgr.smithi038.ldalxq (mgr 2023-11-30T23:16:22.024 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:16:21 smithi038 conmon[81956]: .14182) 1038 : cluster [DBG] pgmap v668: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2023-11-30T23:16:22.193 DEBUG:teuthology.orchestra.run.smithi038:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:0dc074ce0b0b3b4f393f56dd32ef36884ebf45a9 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 3faf8b00-8fd3-11ee-95a2-87774f69a715 -- ceph orch ls -f json 2023-11-30T23:16:22.911 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:16:22 smithi038 conmon[81956]: audit 2023-11-30T23:16:20.780869 2023-11-30T23:16:22.912 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:16:22 smithi038 conmon[81956]: +0000 mgr.smithi038.ldalxq (mgr.14182) 1039 : audit [DBG] from='client.15888 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-11-30T23:16:23.012 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:16:22 smithi167 conmon[87022]: audit 2023-11-30T23:16:20.780869+0000 mgr.smithi038.ldalxq (mgr.14182) 1039 : audit 2023-11-30T23:16:23.012 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:16:22 smithi167 conmon[87022]: [DBG] from='client.15888 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-11-30T23:16:23.938 INFO:teuthology.orchestra.run.smithi038.stdout: 2023-11-30T23:16:23.938 INFO:teuthology.orchestra.run.smithi038.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2023-11-30T22:54:47.122758Z", "last_refresh": "2023-11-30T23:15:59.564688Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2023-11-30T22:54:42.674972Z", "last_refresh": "2023-11-30T23:15:56.214205Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2023-11-30T22:54:45.114633Z", "last_refresh": "2023-11-30T23:15:59.564823Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2023-11-30T23:09:45.063688Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi167.ndkqyv on smithi167: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2023-11-30T23:12:23.150100Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi167.nhhxhd on smithi167: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi167-nhhxhd\n/bin/podman: stderr Error: error inspecting object: no such container ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi167-nhhxhd\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi167.nhhxhd\n/bin/podman: stderr Error: error inspecting object: no such container ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi167.nhhxhd\nDeploy daemon haproxy.nfs.foo.smithi167.nhhxhd ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi167 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2023-11-30T23:10:30Z\" level=warning msg=\"failed, retrying in 1s ... (1/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-11-30T23:11:08Z\" level=warning msg=\"failed, retrying in 1s ... (2/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-11-30T23:11:45Z\" level=warning msg=\"failed, retrying in 1s ... (3/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi167 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-11-30T23:14:53.155795Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi038.njeday on smithi038: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi038-njeday\n/bin/podman: stderr Error: error inspecting object: no such container ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi038-njeday\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi038.njeday\n/bin/podman: stderr Error: error inspecting object: no such container ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi038.njeday\nDeploy daemon haproxy.nfs.foo.smithi038.njeday ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi038 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2023-11-30T23:13:00Z\" level=warning msg=\"failed, retrying in 1s ... (1/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-11-30T23:13:38Z\" level=warning msg=\"failed, retrying in 1s ... (2/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-11-30T23:14:15Z\" level=warning msg=\"failed, retrying in 1s ... (3/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi038 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-11-30T23:14:53.157035Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi038.pwduyd on smithi038: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2023-11-30T23:14:53.158104Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi167.obmcvj on smithi167: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.38/16"}, "status": {"created": "2023-11-30T22:58:56.312786Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.38/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2023-11-30T22:54:41.668043Z", "last_refresh": "2023-11-30T23:15:56.214350Z", "running": 2, "size": 2}}, {"events": ["2023-11-30T22:55:50.759225Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi038:172.21.15.38=smithi038", "smithi167:172.21.15.167=smithi167"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2023-11-30T22:55:50.756456Z", "last_refresh": "2023-11-30T23:15:56.214426Z", "running": 2, "size": 2}}, {"events": ["2023-11-30T22:58:56.311581Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2023-11-30T22:58:56.308071Z", "last_refresh": "2023-11-30T23:15:59.565359Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2023-11-30T22:54:46.136630Z", "last_refresh": "2023-11-30T23:15:56.214508Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2023-11-30T22:56:33.258058Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2023-11-30T22:56:33.253117Z", "last_refresh": "2023-11-30T23:15:56.214583Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2023-11-30T22:54:43.949497Z", "last_refresh": "2023-11-30T23:15:59.564954Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2023-11-30T22:58:52.105721Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2023-11-30T22:58:59.793467Z", "last_refresh": "2023-11-30T23:15:56.214845Z", "ports": [8800], "running": 2, "size": 2}}] 2023-11-30T23:16:23.963 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:16:23 smithi038 conmon[81956]: cluster 2023-11-30T23:16:22.015507+0000 mgr.smithi038.ldalxq (mgr 2023-11-30T23:16:23.963 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:16:23 smithi038 conmon[81956]: .14182) 1040 : cluster [DBG] pgmap v669: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2023-11-30T23:16:24.012 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:16:23 smithi167 conmon[87022]: cluster 2023-11-30T23:16:22.015507+0000 mgr.smithi038.ldalxq (mgr.14182) 1040 : cluster [DBG] pgmap v669: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2023-11-30T23:16:24.444 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2023-11-30T23:16:25.445 DEBUG:teuthology.orchestra.run.smithi038:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:0dc074ce0b0b3b4f393f56dd32ef36884ebf45a9 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 3faf8b00-8fd3-11ee-95a2-87774f69a715 -- ceph orch ls -f json 2023-11-30T23:16:25.775 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:16:25 smithi038 conmon[81956]: audit 2023-11-30T23:16:23.933896+0000 mgr.smithi038.ldalxq (mgr.14182) 1041 : audit [DBG] from='client.15892 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-11-30T23:16:25.775 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:16:25 smithi038 conmon[81956]: cluster 2023-11-30T23:16:24. 2023-11-30T23:16:25.775 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:16:25 smithi038 conmon[81956]: 016067+0000 mgr.smithi038.ldalxq (mgr.14182) 1042 : cluster [DBG] pgmap v670: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2023-11-30T23:16:26.012 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:16:25 smithi167 conmon[87022]: audit 2023-11-30T23:16:23.933896+0000 mgr.smithi038.ldalxq (mgr.14182) 1041 : audit [DBG] from='client.15892 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-11-30T23:16:26.012 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:16:25 smithi167 conmon[87022]: cluster 2023-11-30T23:16:24.016067+0000 mgr.smithi038.ldalxq (mgr.14182) 1042 : cluster [DBG] pgmap v670: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2023-11-30T23:16:27.277 INFO:teuthology.orchestra.run.smithi038.stdout: 2023-11-30T23:16:27.277 INFO:teuthology.orchestra.run.smithi038.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2023-11-30T22:54:47.122758Z", "last_refresh": "2023-11-30T23:15:59.564688Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2023-11-30T22:54:42.674972Z", "last_refresh": "2023-11-30T23:15:56.214205Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2023-11-30T22:54:45.114633Z", "last_refresh": "2023-11-30T23:15:59.564823Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2023-11-30T23:09:45.063688Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi167.ndkqyv on smithi167: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2023-11-30T23:12:23.150100Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi167.nhhxhd on smithi167: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi167-nhhxhd\n/bin/podman: stderr Error: error inspecting object: no such container ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi167-nhhxhd\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi167.nhhxhd\n/bin/podman: stderr Error: error inspecting object: no such container ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi167.nhhxhd\nDeploy daemon haproxy.nfs.foo.smithi167.nhhxhd ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi167 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2023-11-30T23:10:30Z\" level=warning msg=\"failed, retrying in 1s ... (1/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-11-30T23:11:08Z\" level=warning msg=\"failed, retrying in 1s ... (2/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-11-30T23:11:45Z\" level=warning msg=\"failed, retrying in 1s ... (3/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi167 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-11-30T23:14:53.155795Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi038.njeday on smithi038: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi038-njeday\n/bin/podman: stderr Error: error inspecting object: no such container ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi038-njeday\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi038.njeday\n/bin/podman: stderr Error: error inspecting object: no such container ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi038.njeday\nDeploy daemon haproxy.nfs.foo.smithi038.njeday ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi038 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2023-11-30T23:13:00Z\" level=warning msg=\"failed, retrying in 1s ... (1/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-11-30T23:13:38Z\" level=warning msg=\"failed, retrying in 1s ... (2/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-11-30T23:14:15Z\" level=warning msg=\"failed, retrying in 1s ... (3/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi038 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-11-30T23:14:53.157035Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi038.pwduyd on smithi038: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2023-11-30T23:14:53.158104Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi167.obmcvj on smithi167: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.38/16"}, "status": {"created": "2023-11-30T22:58:56.312786Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.38/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2023-11-30T22:54:41.668043Z", "last_refresh": "2023-11-30T23:15:56.214350Z", "running": 2, "size": 2}}, {"events": ["2023-11-30T22:55:50.759225Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi038:172.21.15.38=smithi038", "smithi167:172.21.15.167=smithi167"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2023-11-30T22:55:50.756456Z", "last_refresh": "2023-11-30T23:15:56.214426Z", "running": 2, "size": 2}}, {"events": ["2023-11-30T22:58:56.311581Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2023-11-30T22:58:56.308071Z", "last_refresh": "2023-11-30T23:15:59.565359Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2023-11-30T22:54:46.136630Z", "last_refresh": "2023-11-30T23:15:56.214508Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2023-11-30T22:56:33.258058Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2023-11-30T22:56:33.253117Z", "last_refresh": "2023-11-30T23:15:56.214583Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2023-11-30T22:54:43.949497Z", "last_refresh": "2023-11-30T23:15:59.564954Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2023-11-30T22:58:52.105721Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2023-11-30T22:58:59.793467Z", "last_refresh": "2023-11-30T23:15:56.214845Z", "ports": [8800], "running": 2, "size": 2}}] 2023-11-30T23:16:27.806 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2023-11-30T23:16:28.011 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:16:27 smithi167 conmon[87022]: cluster 2023-11-30T23:16:26.016986+0000 mgr.smithi038.ldalxq (mgr.14182) 1043 : cluster [DBG] pgmap v671: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2023-11-30T23:16:28.024 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:16:27 smithi038 conmon[81956]: cluster 2023-11-30T23:16:26.016986+0000 mgr.smithi038.ldalxq (mgr.14182) 1043 : cluster [DBG] pgmap v671: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2023-11-30T23:16:28.807 DEBUG:teuthology.orchestra.run.smithi038:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:0dc074ce0b0b3b4f393f56dd32ef36884ebf45a9 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 3faf8b00-8fd3-11ee-95a2-87774f69a715 -- ceph orch ls -f json 2023-11-30T23:16:28.944 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:16:28 smithi038 conmon[81956]: audit 2023-11-30T23:16:27.272914+0000 mgr.smithi038.ldalxq (mgr.14182) 1044 : audit [DBG] from='client.15896 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-11-30T23:16:29.012 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:16:28 smithi167 conmon[87022]: audit 2023-11-30T23:16:27.272914+0000 mgr.smithi038.ldalxq (mgr.14182) 1044 : audit [DBG] 2023-11-30T23:16:29.012 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:16:28 smithi167 conmon[87022]: from='client.15896 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-11-30T23:16:30.013 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:16:29 smithi167 conmon[87022]: cluster 2023-11-30T23:16:28.017719+0000 mgr.smithi038.ldalxq (mgr.14182) 1045 : cluster [DBG] pgmap v672: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2023-11-30T23:16:30.024 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:16:29 smithi038 conmon[81956]: cluster 2023-11-30T23:16:28.017719+0000 mgr.smithi038.ldalxq ( 2023-11-30T23:16:30.024 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:16:29 smithi038 conmon[81956]: mgr.14182) 1045 : cluster [DBG] pgmap v672: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2023-11-30T23:16:30.539 INFO:teuthology.orchestra.run.smithi038.stdout: 2023-11-30T23:16:30.540 INFO:teuthology.orchestra.run.smithi038.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2023-11-30T22:54:47.122758Z", "last_refresh": "2023-11-30T23:15:59.564688Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2023-11-30T22:54:42.674972Z", "last_refresh": "2023-11-30T23:15:56.214205Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2023-11-30T22:54:45.114633Z", "last_refresh": "2023-11-30T23:15:59.564823Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2023-11-30T23:09:45.063688Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi167.ndkqyv on smithi167: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2023-11-30T23:12:23.150100Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi167.nhhxhd on smithi167: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi167-nhhxhd\n/bin/podman: stderr Error: error inspecting object: no such container ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi167-nhhxhd\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi167.nhhxhd\n/bin/podman: stderr Error: error inspecting object: no such container ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi167.nhhxhd\nDeploy daemon haproxy.nfs.foo.smithi167.nhhxhd ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi167 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2023-11-30T23:10:30Z\" level=warning msg=\"failed, retrying in 1s ... (1/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-11-30T23:11:08Z\" level=warning msg=\"failed, retrying in 1s ... (2/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-11-30T23:11:45Z\" level=warning msg=\"failed, retrying in 1s ... (3/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi167 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-11-30T23:14:53.155795Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi038.njeday on smithi038: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi038-njeday\n/bin/podman: stderr Error: error inspecting object: no such container ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi038-njeday\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi038.njeday\n/bin/podman: stderr Error: error inspecting object: no such container ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi038.njeday\nDeploy daemon haproxy.nfs.foo.smithi038.njeday ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi038 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2023-11-30T23:13:00Z\" level=warning msg=\"failed, retrying in 1s ... (1/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-11-30T23:13:38Z\" level=warning msg=\"failed, retrying in 1s ... (2/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-11-30T23:14:15Z\" level=warning msg=\"failed, retrying in 1s ... (3/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi038 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-11-30T23:14:53.157035Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi038.pwduyd on smithi038: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2023-11-30T23:14:53.158104Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi167.obmcvj on smithi167: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.38/16"}, "status": {"created": "2023-11-30T22:58:56.312786Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.38/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2023-11-30T22:54:41.668043Z", "last_refresh": "2023-11-30T23:15:56.214350Z", "running": 2, "size": 2}}, {"events": ["2023-11-30T22:55:50.759225Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi038:172.21.15.38=smithi038", "smithi167:172.21.15.167=smithi167"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2023-11-30T22:55:50.756456Z", "last_refresh": "2023-11-30T23:15:56.214426Z", "running": 2, "size": 2}}, {"events": ["2023-11-30T22:58:56.311581Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2023-11-30T22:58:56.308071Z", "last_refresh": "2023-11-30T23:15:59.565359Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2023-11-30T22:54:46.136630Z", "last_refresh": "2023-11-30T23:15:56.214508Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2023-11-30T22:56:33.258058Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2023-11-30T22:56:33.253117Z", "last_refresh": "2023-11-30T23:15:56.214583Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2023-11-30T22:54:43.949497Z", "last_refresh": "2023-11-30T23:15:59.564954Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2023-11-30T22:58:52.105721Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2023-11-30T22:58:59.793467Z", "last_refresh": "2023-11-30T23:15:56.214845Z", "ports": [8800], "running": 2, "size": 2}}] 2023-11-30T23:16:30.960 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2023-11-30T23:16:31.961 DEBUG:teuthology.orchestra.run.smithi038:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:0dc074ce0b0b3b4f393f56dd32ef36884ebf45a9 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 3faf8b00-8fd3-11ee-95a2-87774f69a715 -- ceph orch ls -f json 2023-11-30T23:16:31.993 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:16:31 smithi038 conmon[81956]: cluster 2023-11-30T23:16:30.018407+0000 mgr.smithi038.ldalxq (mgr.14182) 1046 : cluster [DBG] pgmap v673: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2023-11-30T23:16:31.993 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:16:31 smithi038 conmon[81956]: audit 2023-11-30T23:16:30.535408+0000 mgr.smithi038.ldalxq (mgr.14182) 1047 : audit [DBG] from='client.15900 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-11-30T23:16:32.012 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:16:31 smithi167 conmon[87022]: cluster 2023-11-30T23:16:30.018407+0000 mgr.smithi038.ldalxq (mgr.14182) 1046 : cluster [DBG] pgmap v673: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2023-11-30T23:16:32.012 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:16:31 smithi167 conmon[87022]: audit 2023-11-30T23:16:30.535408+0000 mgr.smithi038.ldalxq (mgr.14182) 1047 : audit [DBG] from='client.15900 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-11-30T23:16:33.262 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:16:32 smithi167 conmon[87022]: cluster 2023-11-30T23:16:32.019089+0000 mgr.smithi038.ldalxq (mgr.14182) 1048 : cluster [DBG] 2023-11-30T23:16:33.262 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:16:32 smithi167 conmon[87022]: pgmap v674: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2023-11-30T23:16:33.275 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:16:32 smithi038 conmon[81956]: cluster 2023-11-30T23:16:32.019089+0000 mgr.smithi038.ldalxq (mgr.14182) 1048 : 2023-11-30T23:16:33.276 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:16:32 smithi038 conmon[81956]: cluster [DBG] pgmap v674: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2023-11-30T23:16:33.697 INFO:teuthology.orchestra.run.smithi038.stdout: 2023-11-30T23:16:33.697 INFO:teuthology.orchestra.run.smithi038.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2023-11-30T22:54:47.122758Z", "last_refresh": "2023-11-30T23:15:59.564688Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2023-11-30T22:54:42.674972Z", "last_refresh": "2023-11-30T23:15:56.214205Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2023-11-30T22:54:45.114633Z", "last_refresh": "2023-11-30T23:15:59.564823Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2023-11-30T23:09:45.063688Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi167.ndkqyv on smithi167: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2023-11-30T23:12:23.150100Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi167.nhhxhd on smithi167: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi167-nhhxhd\n/bin/podman: stderr Error: error inspecting object: no such container ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi167-nhhxhd\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi167.nhhxhd\n/bin/podman: stderr Error: error inspecting object: no such container ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi167.nhhxhd\nDeploy daemon haproxy.nfs.foo.smithi167.nhhxhd ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi167 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2023-11-30T23:10:30Z\" level=warning msg=\"failed, retrying in 1s ... (1/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-11-30T23:11:08Z\" level=warning msg=\"failed, retrying in 1s ... (2/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-11-30T23:11:45Z\" level=warning msg=\"failed, retrying in 1s ... (3/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi167 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-11-30T23:14:53.155795Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi038.njeday on smithi038: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi038-njeday\n/bin/podman: stderr Error: error inspecting object: no such container ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi038-njeday\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi038.njeday\n/bin/podman: stderr Error: error inspecting object: no such container ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi038.njeday\nDeploy daemon haproxy.nfs.foo.smithi038.njeday ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi038 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2023-11-30T23:13:00Z\" level=warning msg=\"failed, retrying in 1s ... (1/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-11-30T23:13:38Z\" level=warning msg=\"failed, retrying in 1s ... (2/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-11-30T23:14:15Z\" level=warning msg=\"failed, retrying in 1s ... (3/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi038 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-11-30T23:14:53.157035Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi038.pwduyd on smithi038: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2023-11-30T23:14:53.158104Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi167.obmcvj on smithi167: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.38/16"}, "status": {"created": "2023-11-30T22:58:56.312786Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.38/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2023-11-30T22:54:41.668043Z", "last_refresh": "2023-11-30T23:15:56.214350Z", "running": 2, "size": 2}}, {"events": ["2023-11-30T22:55:50.759225Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi038:172.21.15.38=smithi038", "smithi167:172.21.15.167=smithi167"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2023-11-30T22:55:50.756456Z", "last_refresh": "2023-11-30T23:15:56.214426Z", "running": 2, "size": 2}}, {"events": ["2023-11-30T22:58:56.311581Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2023-11-30T22:58:56.308071Z", "last_refresh": "2023-11-30T23:15:59.565359Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2023-11-30T22:54:46.136630Z", "last_refresh": "2023-11-30T23:15:56.214508Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2023-11-30T22:56:33.258058Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2023-11-30T22:56:33.253117Z", "last_refresh": "2023-11-30T23:15:56.214583Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2023-11-30T22:54:43.949497Z", "last_refresh": "2023-11-30T23:15:59.564954Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2023-11-30T22:58:52.105721Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2023-11-30T22:58:59.793467Z", "last_refresh": "2023-11-30T23:15:56.214845Z", "ports": [8800], "running": 2, "size": 2}}] 2023-11-30T23:16:34.024 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:16:33 smithi038 conmon[81956]: audit 2023-11-30T23:16:33.693159+0000 mgr.smithi038.ldalxq 2023-11-30T23:16:34.024 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:16:33 smithi038 conmon[81956]: (mgr.14182) 1049 : audit [DBG] from='client.15904 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-11-30T23:16:34.129 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2023-11-30T23:16:34.262 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:16:33 smithi167 conmon[87022]: audit 2023-11-30T23:16:33.693159+0000 mgr.smithi038.ldalxq (mgr.14182) 1049 : audit [DBG] from='client.15904 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-11-30T23:16:35.134 DEBUG:teuthology.orchestra.run.smithi038:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:0dc074ce0b0b3b4f393f56dd32ef36884ebf45a9 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 3faf8b00-8fd3-11ee-95a2-87774f69a715 -- ceph orch ls -f json 2023-11-30T23:16:35.180 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:16:34 smithi038 conmon[81956]: cluster 2023-11-30T23:16:34.019795+0000 mgr.smithi038.ldalxq (mgr.14182) 1050 : cluster 2023-11-30T23:16:35.180 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:16:34 smithi038 conmon[81956]: [DBG] pgmap v675: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2023-11-30T23:16:35.261 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:16:34 smithi167 conmon[87022]: cluster 2023-11-30T23:16:34.019795+0000 mgr.smithi038.ldalxq (mgr.14182) 1050 : cluster [DBG] pgmap v675: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2023-11-30T23:16:36.983 INFO:teuthology.orchestra.run.smithi038.stdout: 2023-11-30T23:16:36.983 INFO:teuthology.orchestra.run.smithi038.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2023-11-30T22:54:47.122758Z", "last_refresh": "2023-11-30T23:15:59.564688Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2023-11-30T22:54:42.674972Z", "last_refresh": "2023-11-30T23:15:56.214205Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2023-11-30T22:54:45.114633Z", "last_refresh": "2023-11-30T23:15:59.564823Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2023-11-30T23:09:45.063688Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi167.ndkqyv on smithi167: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2023-11-30T23:12:23.150100Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi167.nhhxhd on smithi167: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi167-nhhxhd\n/bin/podman: stderr Error: error inspecting object: no such container ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi167-nhhxhd\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi167.nhhxhd\n/bin/podman: stderr Error: error inspecting object: no such container ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi167.nhhxhd\nDeploy daemon haproxy.nfs.foo.smithi167.nhhxhd ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi167 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2023-11-30T23:10:30Z\" level=warning msg=\"failed, retrying in 1s ... (1/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-11-30T23:11:08Z\" level=warning msg=\"failed, retrying in 1s ... (2/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-11-30T23:11:45Z\" level=warning msg=\"failed, retrying in 1s ... (3/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi167 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-11-30T23:14:53.155795Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi038.njeday on smithi038: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi038-njeday\n/bin/podman: stderr Error: error inspecting object: no such container ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi038-njeday\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi038.njeday\n/bin/podman: stderr Error: error inspecting object: no such container ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi038.njeday\nDeploy daemon haproxy.nfs.foo.smithi038.njeday ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi038 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2023-11-30T23:13:00Z\" level=warning msg=\"failed, retrying in 1s ... (1/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-11-30T23:13:38Z\" level=warning msg=\"failed, retrying in 1s ... (2/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-11-30T23:14:15Z\" level=warning msg=\"failed, retrying in 1s ... (3/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi038 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-11-30T23:14:53.157035Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi038.pwduyd on smithi038: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2023-11-30T23:14:53.158104Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi167.obmcvj on smithi167: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.38/16"}, "status": {"created": "2023-11-30T22:58:56.312786Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.38/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2023-11-30T22:54:41.668043Z", "last_refresh": "2023-11-30T23:15:56.214350Z", "running": 2, "size": 2}}, {"events": ["2023-11-30T22:55:50.759225Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi038:172.21.15.38=smithi038", "smithi167:172.21.15.167=smithi167"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2023-11-30T22:55:50.756456Z", "last_refresh": "2023-11-30T23:15:56.214426Z", "running": 2, "size": 2}}, {"events": ["2023-11-30T22:58:56.311581Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2023-11-30T22:58:56.308071Z", "last_refresh": "2023-11-30T23:15:59.565359Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2023-11-30T22:54:46.136630Z", "last_refresh": "2023-11-30T23:15:56.214508Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2023-11-30T22:56:33.258058Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2023-11-30T22:56:33.253117Z", "last_refresh": "2023-11-30T23:15:56.214583Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2023-11-30T22:54:43.949497Z", "last_refresh": "2023-11-30T23:15:59.564954Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2023-11-30T22:58:52.105721Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2023-11-30T22:58:59.793467Z", "last_refresh": "2023-11-30T23:15:56.214845Z", "ports": [8800], "running": 2, "size": 2}}] 2023-11-30T23:16:37.274 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:16:37 smithi038 conmon[81956]: cluster 2023-11-30T23:16:36.020444+0000 mgr.smithi038.ldalxq (mgr.14182) 1051 : cluster [DBG] pgmap v676: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2023-11-30T23:16:37.399 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2023-11-30T23:16:37.512 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:16:37 smithi167 conmon[87022]: cluster 2023-11-30T23:16:36.020444+0000 mgr.smithi038.ldalxq (mgr.14182) 1051 : cluster [DBG] pgmap v676: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2023-11-30T23:16:38.402 DEBUG:teuthology.orchestra.run.smithi038:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:0dc074ce0b0b3b4f393f56dd32ef36884ebf45a9 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 3faf8b00-8fd3-11ee-95a2-87774f69a715 -- ceph orch ls -f json 2023-11-30T23:16:38.433 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:16:38 smithi038 conmon[81956]: audit 2023-11-30T23:16:36.979226+0000 mgr.smithi038.ldalxq (mgr.14182) 1052 : audit [DBG] from='client.15908 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-11-30T23:16:38.512 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:16:38 smithi167 conmon[87022]: audit 2023-11-30T23:16:36.979226+0000 mgr.smithi038.ldalxq (mgr.14182) 1052 : audit [DBG] from='client.15908 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-11-30T23:16:39.274 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:16:39 smithi038 conmon[81956]: cluster 2023-11-30T23:16 2023-11-30T23:16:39.274 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:16:39 smithi038 conmon[81956]: :38.021166+0000 mgr.smithi038.ldalxq (mgr.14182) 1053 : cluster [DBG] pgmap v677: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2023-11-30T23:16:39.512 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:16:39 smithi167 conmon[87022]: cluster 2023-11-30T23:16:38.021166+0000 mgr.smithi038.ldalxq (mgr.14182) 1053 : cluster [DBG] pgmap v677: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2023-11-30T23:16:40.132 INFO:teuthology.orchestra.run.smithi038.stdout: 2023-11-30T23:16:40.132 INFO:teuthology.orchestra.run.smithi038.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2023-11-30T22:54:47.122758Z", "last_refresh": "2023-11-30T23:15:59.564688Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2023-11-30T22:54:42.674972Z", "last_refresh": "2023-11-30T23:15:56.214205Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2023-11-30T22:54:45.114633Z", "last_refresh": "2023-11-30T23:15:59.564823Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2023-11-30T23:09:45.063688Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi167.ndkqyv on smithi167: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2023-11-30T23:12:23.150100Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi167.nhhxhd on smithi167: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi167-nhhxhd\n/bin/podman: stderr Error: error inspecting object: no such container ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi167-nhhxhd\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi167.nhhxhd\n/bin/podman: stderr Error: error inspecting object: no such container ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi167.nhhxhd\nDeploy daemon haproxy.nfs.foo.smithi167.nhhxhd ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi167 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2023-11-30T23:10:30Z\" level=warning msg=\"failed, retrying in 1s ... (1/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-11-30T23:11:08Z\" level=warning msg=\"failed, retrying in 1s ... (2/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-11-30T23:11:45Z\" level=warning msg=\"failed, retrying in 1s ... (3/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi167 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-11-30T23:14:53.155795Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi038.njeday on smithi038: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi038-njeday\n/bin/podman: stderr Error: error inspecting object: no such container ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi038-njeday\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi038.njeday\n/bin/podman: stderr Error: error inspecting object: no such container ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi038.njeday\nDeploy daemon haproxy.nfs.foo.smithi038.njeday ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi038 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2023-11-30T23:13:00Z\" level=warning msg=\"failed, retrying in 1s ... (1/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-11-30T23:13:38Z\" level=warning msg=\"failed, retrying in 1s ... (2/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-11-30T23:14:15Z\" level=warning msg=\"failed, retrying in 1s ... (3/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi038 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-11-30T23:14:53.157035Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi038.pwduyd on smithi038: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2023-11-30T23:14:53.158104Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi167.obmcvj on smithi167: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.38/16"}, "status": {"created": "2023-11-30T22:58:56.312786Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.38/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2023-11-30T22:54:41.668043Z", "last_refresh": "2023-11-30T23:15:56.214350Z", "running": 2, "size": 2}}, {"events": ["2023-11-30T22:55:50.759225Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi038:172.21.15.38=smithi038", "smithi167:172.21.15.167=smithi167"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2023-11-30T22:55:50.756456Z", "last_refresh": "2023-11-30T23:15:56.214426Z", "running": 2, "size": 2}}, {"events": ["2023-11-30T22:58:56.311581Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2023-11-30T22:58:56.308071Z", "last_refresh": "2023-11-30T23:15:59.565359Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2023-11-30T22:54:46.136630Z", "last_refresh": "2023-11-30T23:15:56.214508Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2023-11-30T22:56:33.258058Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2023-11-30T22:56:33.253117Z", "last_refresh": "2023-11-30T23:15:56.214583Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2023-11-30T22:54:43.949497Z", "last_refresh": "2023-11-30T23:15:59.564954Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2023-11-30T22:58:52.105721Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2023-11-30T22:58:59.793467Z", "last_refresh": "2023-11-30T23:15:56.214845Z", "ports": [8800], "running": 2, "size": 2}}] 2023-11-30T23:16:40.563 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2023-11-30T23:16:41.512 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:16:41 smithi167 conmon[87022]: cluster 2023-11-30T23:16:40.021820+0000 mgr.smithi038.ldalxq (mgr.14182) 1054 : cluster [DBG] pgmap v678: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2023-11-30T23:16:41.512 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:16:41 smithi167 conmon[87022]: audit 2023-11-30T23:16:40.127658+0000 mgr.smithi038.ldalxq (mgr.14182) 1055 : audit [DBG] from='client.15912 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-11-30T23:16:41.524 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:16:41 smithi038 conmon[81956]: cluster 2023-11-30T23:16:40.021820+0000 mgr.smithi038.ldalxq (mgr.14182 2023-11-30T23:16:41.524 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:16:41 smithi038 conmon[81956]: ) 1054 : cluster [DBG] pgmap v678: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2023-11-30T23:16:41.524 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:16:41 smithi038 conmon[81956]: audit 2023-11-30T23:16:40.127658+0000 mgr.smithi038.ldalxq (mgr.14182) 1055 : audit [DBG] from='client.15912 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-11-30T23:16:41.564 DEBUG:teuthology.orchestra.run.smithi038:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:0dc074ce0b0b3b4f393f56dd32ef36884ebf45a9 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 3faf8b00-8fd3-11ee-95a2-87774f69a715 -- ceph orch ls -f json 2023-11-30T23:16:43.262 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:16:42 smithi167 conmon[87022]: cluster 2023-11-30T23:16:42.022309+0000 mgr.smithi038.ldalxq (mgr.14182) 1056 : cluster [DBG] pgmap v679: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2023-11-30T23:16:43.274 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:16:42 smithi038 conmon[81956]: cluster 2023-11-30T23:16:42.022309+0000 mgr.smithi038.ldalxq (mgr.14182) 1056 : cluster [DBG] pgmap v679: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2023-11-30T23:16:43.312 INFO:teuthology.orchestra.run.smithi038.stdout: 2023-11-30T23:16:43.313 INFO:teuthology.orchestra.run.smithi038.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2023-11-30T22:54:47.122758Z", "last_refresh": "2023-11-30T23:15:59.564688Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2023-11-30T22:54:42.674972Z", "last_refresh": "2023-11-30T23:15:56.214205Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2023-11-30T22:54:45.114633Z", "last_refresh": "2023-11-30T23:15:59.564823Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2023-11-30T23:09:45.063688Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi167.ndkqyv on smithi167: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2023-11-30T23:12:23.150100Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi167.nhhxhd on smithi167: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi167-nhhxhd\n/bin/podman: stderr Error: error inspecting object: no such container ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi167-nhhxhd\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi167.nhhxhd\n/bin/podman: stderr Error: error inspecting object: no such container ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi167.nhhxhd\nDeploy daemon haproxy.nfs.foo.smithi167.nhhxhd ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi167 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2023-11-30T23:10:30Z\" level=warning msg=\"failed, retrying in 1s ... (1/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-11-30T23:11:08Z\" level=warning msg=\"failed, retrying in 1s ... (2/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-11-30T23:11:45Z\" level=warning msg=\"failed, retrying in 1s ... (3/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi167 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-11-30T23:14:53.155795Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi038.njeday on smithi038: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi038-njeday\n/bin/podman: stderr Error: error inspecting object: no such container ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi038-njeday\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi038.njeday\n/bin/podman: stderr Error: error inspecting object: no such container ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi038.njeday\nDeploy daemon haproxy.nfs.foo.smithi038.njeday ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi038 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2023-11-30T23:13:00Z\" level=warning msg=\"failed, retrying in 1s ... (1/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-11-30T23:13:38Z\" level=warning msg=\"failed, retrying in 1s ... (2/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-11-30T23:14:15Z\" level=warning msg=\"failed, retrying in 1s ... (3/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi038 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-11-30T23:14:53.157035Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi038.pwduyd on smithi038: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2023-11-30T23:14:53.158104Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi167.obmcvj on smithi167: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.38/16"}, "status": {"created": "2023-11-30T22:58:56.312786Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.38/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2023-11-30T22:54:41.668043Z", "last_refresh": "2023-11-30T23:15:56.214350Z", "running": 2, "size": 2}}, {"events": ["2023-11-30T22:55:50.759225Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi038:172.21.15.38=smithi038", "smithi167:172.21.15.167=smithi167"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2023-11-30T22:55:50.756456Z", "last_refresh": "2023-11-30T23:15:56.214426Z", "running": 2, "size": 2}}, {"events": ["2023-11-30T22:58:56.311581Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2023-11-30T22:58:56.308071Z", "last_refresh": "2023-11-30T23:15:59.565359Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2023-11-30T22:54:46.136630Z", "last_refresh": "2023-11-30T23:15:56.214508Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2023-11-30T22:56:33.258058Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2023-11-30T22:56:33.253117Z", "last_refresh": "2023-11-30T23:15:56.214583Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2023-11-30T22:54:43.949497Z", "last_refresh": "2023-11-30T23:15:59.564954Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2023-11-30T22:58:52.105721Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2023-11-30T22:58:59.793467Z", "last_refresh": "2023-11-30T23:15:56.214845Z", "ports": [8800], "running": 2, "size": 2}}] 2023-11-30T23:16:43.819 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2023-11-30T23:16:44.024 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:16:43 smithi038 conmon[81956]: audit 2023-11-30T23:16:43.308331+0000 mgr.smithi038.ldalxq 2023-11-30T23:16:44.024 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:16:43 smithi038 conmon[81956]: (mgr.14182) 1057 : audit [DBG] from='client.15916 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-11-30T23:16:44.262 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:16:43 smithi167 conmon[87022]: audit 2023-11-30T23:16:43.308331+0000 mgr.smithi038.ldalxq (mgr.14182) 1057 : audit [DBG] from='client.15916 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-11-30T23:16:44.820 DEBUG:teuthology.orchestra.run.smithi038:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:0dc074ce0b0b3b4f393f56dd32ef36884ebf45a9 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 3faf8b00-8fd3-11ee-95a2-87774f69a715 -- ceph orch ls -f json 2023-11-30T23:16:45.262 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:16:44 smithi167 conmon[87022]: cluster 2023-11-30T23:16:44.022909+0000 mgr.smithi038.ldalxq (mgr.14182) 1058 : cluster [DBG] pgmap v680: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2023-11-30T23:16:45.274 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:16:44 smithi038 conmon[81956]: cluster 2023-11-30T23:16:44.022909+0000 mgr.smithi038.ldalxq (mgr.14182) 1058 2023-11-30T23:16:45.274 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:16:44 smithi038 conmon[81956]: : cluster [DBG] pgmap v680: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2023-11-30T23:16:46.555 INFO:teuthology.orchestra.run.smithi038.stdout: 2023-11-30T23:16:46.556 INFO:teuthology.orchestra.run.smithi038.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2023-11-30T22:54:47.122758Z", "last_refresh": "2023-11-30T23:15:59.564688Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2023-11-30T22:54:42.674972Z", "last_refresh": "2023-11-30T23:15:56.214205Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2023-11-30T22:54:45.114633Z", "last_refresh": "2023-11-30T23:15:59.564823Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2023-11-30T23:09:45.063688Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi167.ndkqyv on smithi167: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2023-11-30T23:12:23.150100Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi167.nhhxhd on smithi167: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi167-nhhxhd\n/bin/podman: stderr Error: error inspecting object: no such container ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi167-nhhxhd\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi167.nhhxhd\n/bin/podman: stderr Error: error inspecting object: no such container ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi167.nhhxhd\nDeploy daemon haproxy.nfs.foo.smithi167.nhhxhd ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi167 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2023-11-30T23:10:30Z\" level=warning msg=\"failed, retrying in 1s ... (1/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-11-30T23:11:08Z\" level=warning msg=\"failed, retrying in 1s ... (2/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-11-30T23:11:45Z\" level=warning msg=\"failed, retrying in 1s ... (3/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi167 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-11-30T23:14:53.155795Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi038.njeday on smithi038: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi038-njeday\n/bin/podman: stderr Error: error inspecting object: no such container ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi038-njeday\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi038.njeday\n/bin/podman: stderr Error: error inspecting object: no such container ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi038.njeday\nDeploy daemon haproxy.nfs.foo.smithi038.njeday ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi038 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2023-11-30T23:13:00Z\" level=warning msg=\"failed, retrying in 1s ... (1/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-11-30T23:13:38Z\" level=warning msg=\"failed, retrying in 1s ... (2/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-11-30T23:14:15Z\" level=warning msg=\"failed, retrying in 1s ... (3/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi038 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-11-30T23:14:53.157035Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi038.pwduyd on smithi038: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2023-11-30T23:14:53.158104Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi167.obmcvj on smithi167: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.38/16"}, "status": {"created": "2023-11-30T22:58:56.312786Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.38/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2023-11-30T22:54:41.668043Z", "last_refresh": "2023-11-30T23:15:56.214350Z", "running": 2, "size": 2}}, {"events": ["2023-11-30T22:55:50.759225Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi038:172.21.15.38=smithi038", "smithi167:172.21.15.167=smithi167"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2023-11-30T22:55:50.756456Z", "last_refresh": "2023-11-30T23:15:56.214426Z", "running": 2, "size": 2}}, {"events": ["2023-11-30T22:58:56.311581Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2023-11-30T22:58:56.308071Z", "last_refresh": "2023-11-30T23:15:59.565359Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2023-11-30T22:54:46.136630Z", "last_refresh": "2023-11-30T23:15:56.214508Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2023-11-30T22:56:33.258058Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2023-11-30T22:56:33.253117Z", "last_refresh": "2023-11-30T23:15:56.214583Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2023-11-30T22:54:43.949497Z", "last_refresh": "2023-11-30T23:15:59.564954Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2023-11-30T22:58:52.105721Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2023-11-30T22:58:59.793467Z", "last_refresh": "2023-11-30T23:15:56.214845Z", "ports": [8800], "running": 2, "size": 2}}] 2023-11-30T23:16:46.984 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2023-11-30T23:16:47.274 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:16:47 smithi038 conmon[81956]: cluster 2023-11-30T23:16:46.023590+0000 mgr.smithi038.ldalxq (mgr.14182) 1059 : cluster [DBG] pgmap v681: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2023-11-30T23:16:47.274 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:16:47 smithi038 conmon[81956]: audit 2023-11-30T23:16:46.550878+0000 mgr.smithi038.ldalxq (mgr.14182) 1060 : audit [DBG] from='client.15920 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-11-30T23:16:47.512 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:16:47 smithi167 conmon[87022]: cluster 2023-11-30T23:16:46.023590+0000 mgr.smithi038.ldalxq (mgr.14182) 1059 : cluster [DBG] pgmap v681: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2023-11-30T23:16:47.512 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:16:47 smithi167 conmon[87022]: audit 2023-11-30T23:16:46.550878+0000 2023-11-30T23:16:47.512 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:16:47 smithi167 conmon[87022]: mgr.smithi038.ldalxq (mgr.14182) 1060 : audit [DBG] from='client.15920 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-11-30T23:16:47.985 DEBUG:teuthology.orchestra.run.smithi038:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:0dc074ce0b0b3b4f393f56dd32ef36884ebf45a9 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 3faf8b00-8fd3-11ee-95a2-87774f69a715 -- ceph orch ls -f json 2023-11-30T23:16:49.274 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:16:49 smithi038 conmon[81956]: cluster 2023-11-30T23:16:48.024187+0000 mgr.smithi038.ldalxq (mgr.14182) 1061 : cluster [DBG] 2023-11-30T23:16:49.275 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:16:49 smithi038 conmon[81956]: pgmap v682: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2023-11-30T23:16:49.512 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:16:49 smithi167 conmon[87022]: cluster 2023-11-30T23:16:48.024187+0000 mgr.smithi038.ldalxq (mgr.14182) 1061 : cluster [DBG] pgmap v682: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2023-11-30T23:16:49.731 INFO:teuthology.orchestra.run.smithi038.stdout: 2023-11-30T23:16:49.731 INFO:teuthology.orchestra.run.smithi038.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2023-11-30T22:54:47.122758Z", "last_refresh": "2023-11-30T23:15:59.564688Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2023-11-30T22:54:42.674972Z", "last_refresh": "2023-11-30T23:15:56.214205Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2023-11-30T22:54:45.114633Z", "last_refresh": "2023-11-30T23:15:59.564823Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2023-11-30T23:09:45.063688Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi167.ndkqyv on smithi167: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2023-11-30T23:12:23.150100Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi167.nhhxhd on smithi167: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi167-nhhxhd\n/bin/podman: stderr Error: error inspecting object: no such container ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi167-nhhxhd\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi167.nhhxhd\n/bin/podman: stderr Error: error inspecting object: no such container ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi167.nhhxhd\nDeploy daemon haproxy.nfs.foo.smithi167.nhhxhd ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi167 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2023-11-30T23:10:30Z\" level=warning msg=\"failed, retrying in 1s ... (1/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-11-30T23:11:08Z\" level=warning msg=\"failed, retrying in 1s ... (2/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-11-30T23:11:45Z\" level=warning msg=\"failed, retrying in 1s ... (3/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi167 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-11-30T23:14:53.155795Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi038.njeday on smithi038: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi038-njeday\n/bin/podman: stderr Error: error inspecting object: no such container ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi038-njeday\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi038.njeday\n/bin/podman: stderr Error: error inspecting object: no such container ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi038.njeday\nDeploy daemon haproxy.nfs.foo.smithi038.njeday ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi038 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2023-11-30T23:13:00Z\" level=warning msg=\"failed, retrying in 1s ... (1/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-11-30T23:13:38Z\" level=warning msg=\"failed, retrying in 1s ... (2/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-11-30T23:14:15Z\" level=warning msg=\"failed, retrying in 1s ... (3/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi038 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-11-30T23:14:53.157035Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi038.pwduyd on smithi038: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2023-11-30T23:14:53.158104Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi167.obmcvj on smithi167: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.38/16"}, "status": {"created": "2023-11-30T22:58:56.312786Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.38/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2023-11-30T22:54:41.668043Z", "last_refresh": "2023-11-30T23:15:56.214350Z", "running": 2, "size": 2}}, {"events": ["2023-11-30T22:55:50.759225Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi038:172.21.15.38=smithi038", "smithi167:172.21.15.167=smithi167"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2023-11-30T22:55:50.756456Z", "last_refresh": "2023-11-30T23:15:56.214426Z", "running": 2, "size": 2}}, {"events": ["2023-11-30T22:58:56.311581Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2023-11-30T22:58:56.308071Z", "last_refresh": "2023-11-30T23:15:59.565359Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2023-11-30T22:54:46.136630Z", "last_refresh": "2023-11-30T23:15:56.214508Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2023-11-30T22:56:33.258058Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2023-11-30T22:56:33.253117Z", "last_refresh": "2023-11-30T23:15:56.214583Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2023-11-30T22:54:43.949497Z", "last_refresh": "2023-11-30T23:15:59.564954Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2023-11-30T22:58:52.105721Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2023-11-30T22:58:59.793467Z", "last_refresh": "2023-11-30T23:15:56.214845Z", "ports": [8800], "running": 2, "size": 2}}] 2023-11-30T23:16:50.249 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2023-11-30T23:16:50.512 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:16:50 smithi167 conmon[87022]: audit 2023-11-30T23:16:49.726747+0000 mgr.smithi038.ldalxq (mgr.14182) 1062 : audit [DBG] from='client.15924 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-11-30T23:16:50.524 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:16:50 smithi038 conmon[81956]: audit 2023-11-30T23:16:49.726747+0000 mgr.smithi038.ldalxq (mgr 2023-11-30T23:16:50.524 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:16:50 smithi038 conmon[81956]: .14182) 1062 : audit [DBG] from='client.15924 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-11-30T23:16:51.250 DEBUG:teuthology.orchestra.run.smithi038:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:0dc074ce0b0b3b4f393f56dd32ef36884ebf45a9 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 3faf8b00-8fd3-11ee-95a2-87774f69a715 -- ceph orch ls -f json 2023-11-30T23:16:51.512 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:16:51 smithi167 conmon[87022]: cluster 2023-11-30T23:16:50.024881+0000 mgr.smithi038.ldalxq (mgr.14182) 1063 : cluster [DBG] pgmap v683: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2023-11-30T23:16:51.524 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:16:51 smithi038 conmon[81956]: cluster 2023-11-30T23:16:50.024881+0000 mgr.smithi038.ldalxq (mgr.14182) 1063 : 2023-11-30T23:16:51.524 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:16:51 smithi038 conmon[81956]: cluster [DBG] pgmap v683: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2023-11-30T23:16:52.955 INFO:teuthology.orchestra.run.smithi038.stdout: 2023-11-30T23:16:52.956 INFO:teuthology.orchestra.run.smithi038.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2023-11-30T22:54:47.122758Z", "last_refresh": "2023-11-30T23:15:59.564688Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2023-11-30T22:54:42.674972Z", "last_refresh": "2023-11-30T23:15:56.214205Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2023-11-30T22:54:45.114633Z", "last_refresh": "2023-11-30T23:15:59.564823Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2023-11-30T23:09:45.063688Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi167.ndkqyv on smithi167: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2023-11-30T23:12:23.150100Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi167.nhhxhd on smithi167: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi167-nhhxhd\n/bin/podman: stderr Error: error inspecting object: no such container ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi167-nhhxhd\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi167.nhhxhd\n/bin/podman: stderr Error: error inspecting object: no such container ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi167.nhhxhd\nDeploy daemon haproxy.nfs.foo.smithi167.nhhxhd ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi167 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2023-11-30T23:10:30Z\" level=warning msg=\"failed, retrying in 1s ... (1/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-11-30T23:11:08Z\" level=warning msg=\"failed, retrying in 1s ... (2/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-11-30T23:11:45Z\" level=warning msg=\"failed, retrying in 1s ... (3/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi167 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-11-30T23:14:53.155795Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi038.njeday on smithi038: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi038-njeday\n/bin/podman: stderr Error: error inspecting object: no such container ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi038-njeday\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi038.njeday\n/bin/podman: stderr Error: error inspecting object: no such container ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi038.njeday\nDeploy daemon haproxy.nfs.foo.smithi038.njeday ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi038 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2023-11-30T23:13:00Z\" level=warning msg=\"failed, retrying in 1s ... (1/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-11-30T23:13:38Z\" level=warning msg=\"failed, retrying in 1s ... (2/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-11-30T23:14:15Z\" level=warning msg=\"failed, retrying in 1s ... (3/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi038 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-11-30T23:14:53.157035Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi038.pwduyd on smithi038: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2023-11-30T23:14:53.158104Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi167.obmcvj on smithi167: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.38/16"}, "status": {"created": "2023-11-30T22:58:56.312786Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.38/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2023-11-30T22:54:41.668043Z", "last_refresh": "2023-11-30T23:15:56.214350Z", "running": 2, "size": 2}}, {"events": ["2023-11-30T22:55:50.759225Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi038:172.21.15.38=smithi038", "smithi167:172.21.15.167=smithi167"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2023-11-30T22:55:50.756456Z", "last_refresh": "2023-11-30T23:15:56.214426Z", "running": 2, "size": 2}}, {"events": ["2023-11-30T22:58:56.311581Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2023-11-30T22:58:56.308071Z", "last_refresh": "2023-11-30T23:15:59.565359Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2023-11-30T22:54:46.136630Z", "last_refresh": "2023-11-30T23:15:56.214508Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2023-11-30T22:56:33.258058Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2023-11-30T22:56:33.253117Z", "last_refresh": "2023-11-30T23:15:56.214583Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2023-11-30T22:54:43.949497Z", "last_refresh": "2023-11-30T23:15:59.564954Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2023-11-30T22:58:52.105721Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2023-11-30T22:58:59.793467Z", "last_refresh": "2023-11-30T23:15:56.214845Z", "ports": [8800], "running": 2, "size": 2}}] 2023-11-30T23:16:53.244 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:16:52 smithi038 conmon[81956]: cluster 2023-11-30T23:16:52.025696+0000 mgr.smithi038.ldalxq (mgr.14182) 1064 : cluster [DBG] pgmap v684: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2023-11-30T23:16:53.262 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:16:52 smithi167 conmon[87022]: cluster 2023-11-30T23:16:52.025696+0000 mgr.smithi038.ldalxq (mgr.14182) 1064 : cluster [DBG] pgmap v684: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2023-11-30T23:16:53.500 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2023-11-30T23:16:54.262 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:16:53 smithi167 conmon[87022]: audit 2023-11-30T23:16:52.951396+0000 mgr.smithi038.ldalxq (mgr.14182) 1065 : audit [DBG] from='client.15928 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-11-30T23:16:54.274 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:16:53 smithi038 conmon[81956]: audit 2023-11-30T23:16:52.951396 2023-11-30T23:16:54.274 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:16:53 smithi038 conmon[81956]: +0000 mgr.smithi038.ldalxq (mgr.14182) 1065 : audit [DBG] from='client.15928 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-11-30T23:16:54.501 DEBUG:teuthology.orchestra.run.smithi038:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:0dc074ce0b0b3b4f393f56dd32ef36884ebf45a9 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 3faf8b00-8fd3-11ee-95a2-87774f69a715 -- ceph orch ls -f json 2023-11-30T23:16:55.246 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:16:54 smithi038 conmon[81956]: cluster 2023-11-30T23:16:54.026396+0000 mgr.smithi038.ldalxq ( 2023-11-30T23:16:55.246 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:16:54 smithi038 conmon[81956]: mgr.14182) 1066 : cluster [DBG] pgmap v685: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2023-11-30T23:16:55.262 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:16:54 smithi167 conmon[87022]: cluster 2023-11-30T23:16:54.026396+0000 mgr.smithi038.ldalxq (mgr.14182) 1066 : cluster [DBG] pgmap v685: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2023-11-30T23:16:56.342 INFO:teuthology.orchestra.run.smithi038.stdout: 2023-11-30T23:16:56.342 INFO:teuthology.orchestra.run.smithi038.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2023-11-30T22:54:47.122758Z", "last_refresh": "2023-11-30T23:15:59.564688Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2023-11-30T22:54:42.674972Z", "last_refresh": "2023-11-30T23:15:56.214205Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2023-11-30T22:54:45.114633Z", "last_refresh": "2023-11-30T23:15:59.564823Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2023-11-30T23:09:45.063688Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi167.ndkqyv on smithi167: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2023-11-30T23:12:23.150100Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi167.nhhxhd on smithi167: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi167-nhhxhd\n/bin/podman: stderr Error: error inspecting object: no such container ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi167-nhhxhd\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi167.nhhxhd\n/bin/podman: stderr Error: error inspecting object: no such container ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi167.nhhxhd\nDeploy daemon haproxy.nfs.foo.smithi167.nhhxhd ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi167 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2023-11-30T23:10:30Z\" level=warning msg=\"failed, retrying in 1s ... (1/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-11-30T23:11:08Z\" level=warning msg=\"failed, retrying in 1s ... (2/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-11-30T23:11:45Z\" level=warning msg=\"failed, retrying in 1s ... (3/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi167 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-11-30T23:14:53.155795Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi038.njeday on smithi038: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi038-njeday\n/bin/podman: stderr Error: error inspecting object: no such container ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi038-njeday\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi038.njeday\n/bin/podman: stderr Error: error inspecting object: no such container ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi038.njeday\nDeploy daemon haproxy.nfs.foo.smithi038.njeday ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi038 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2023-11-30T23:13:00Z\" level=warning msg=\"failed, retrying in 1s ... (1/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-11-30T23:13:38Z\" level=warning msg=\"failed, retrying in 1s ... (2/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-11-30T23:14:15Z\" level=warning msg=\"failed, retrying in 1s ... (3/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi038 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-11-30T23:14:53.157035Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi038.pwduyd on smithi038: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2023-11-30T23:14:53.158104Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi167.obmcvj on smithi167: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.38/16"}, "status": {"created": "2023-11-30T22:58:56.312786Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.38/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2023-11-30T22:54:41.668043Z", "last_refresh": "2023-11-30T23:15:56.214350Z", "running": 2, "size": 2}}, {"events": ["2023-11-30T22:55:50.759225Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi038:172.21.15.38=smithi038", "smithi167:172.21.15.167=smithi167"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2023-11-30T22:55:50.756456Z", "last_refresh": "2023-11-30T23:15:56.214426Z", "running": 2, "size": 2}}, {"events": ["2023-11-30T22:58:56.311581Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2023-11-30T22:58:56.308071Z", "last_refresh": "2023-11-30T23:15:59.565359Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2023-11-30T22:54:46.136630Z", "last_refresh": "2023-11-30T23:15:56.214508Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2023-11-30T22:56:33.258058Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2023-11-30T22:56:33.253117Z", "last_refresh": "2023-11-30T23:15:56.214583Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2023-11-30T22:54:43.949497Z", "last_refresh": "2023-11-30T23:15:59.564954Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2023-11-30T22:58:52.105721Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2023-11-30T22:58:59.793467Z", "last_refresh": "2023-11-30T23:15:56.214845Z", "ports": [8800], "running": 2, "size": 2}}] 2023-11-30T23:16:56.764 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2023-11-30T23:16:57.512 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:16:57 smithi167 conmon[87022]: cluster 2023-11-30T23:16:56.027255+0000 mgr.smithi038.ldalxq (mgr.14182) 1067 : cluster [DBG] pgmap v686: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2023-11-30T23:16:57.512 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:16:57 smithi167 conmon[87022]: audit 2023-11-30T23:16:56.337644+0000 mgr.smithi038.ldalxq (mgr.14182) 1068 : audit [DBG] from='client.15932 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-11-30T23:16:57.524 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:16:57 smithi038 conmon[81956]: cluster 2023-11-30T23:16:56.027255+0000 mgr.smithi038.ldalxq (mgr.14182) 1067 : cluster [DBG] pgmap v686: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2023-11-30T23:16:57.524 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:16:57 smithi038 conmon[81956]: audit 2023-11-30T23:16:56.337644+0000 mgr.smithi038.ldalxq (mgr.14182) 1068 : audit [DBG] from='client.15932 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-11-30T23:16:57.764 DEBUG:teuthology.orchestra.run.smithi038:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:0dc074ce0b0b3b4f393f56dd32ef36884ebf45a9 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 3faf8b00-8fd3-11ee-95a2-87774f69a715 -- ceph orch ls -f json 2023-11-30T23:16:59.512 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:16:59 smithi167 conmon[87022]: cluster 2023-11-30T23:16:58.027772+0000 mgr.smithi038.ldalxq (mgr.14182) 1069 : cluster [DBG] pgmap v687: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2023-11-30T23:16:59.524 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:16:59 smithi038 conmon[81956]: cluster 2023-11-30T23 2023-11-30T23:16:59.524 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:16:59 smithi038 conmon[81956]: :16:58.027772+0000 mgr.smithi038.ldalxq (mgr.14182) 1069 : cluster [DBG] pgmap v687: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2023-11-30T23:16:59.548 INFO:teuthology.orchestra.run.smithi038.stdout: 2023-11-30T23:16:59.548 INFO:teuthology.orchestra.run.smithi038.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2023-11-30T22:54:47.122758Z", "last_refresh": "2023-11-30T23:15:59.564688Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2023-11-30T22:54:42.674972Z", "last_refresh": "2023-11-30T23:15:56.214205Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2023-11-30T22:54:45.114633Z", "last_refresh": "2023-11-30T23:15:59.564823Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2023-11-30T23:09:45.063688Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi167.ndkqyv on smithi167: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2023-11-30T23:12:23.150100Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi167.nhhxhd on smithi167: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi167-nhhxhd\n/bin/podman: stderr Error: error inspecting object: no such container ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi167-nhhxhd\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi167.nhhxhd\n/bin/podman: stderr Error: error inspecting object: no such container ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi167.nhhxhd\nDeploy daemon haproxy.nfs.foo.smithi167.nhhxhd ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi167 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2023-11-30T23:10:30Z\" level=warning msg=\"failed, retrying in 1s ... (1/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-11-30T23:11:08Z\" level=warning msg=\"failed, retrying in 1s ... (2/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-11-30T23:11:45Z\" level=warning msg=\"failed, retrying in 1s ... (3/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi167 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-11-30T23:14:53.155795Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi038.njeday on smithi038: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi038-njeday\n/bin/podman: stderr Error: error inspecting object: no such container ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi038-njeday\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi038.njeday\n/bin/podman: stderr Error: error inspecting object: no such container ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi038.njeday\nDeploy daemon haproxy.nfs.foo.smithi038.njeday ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi038 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2023-11-30T23:13:00Z\" level=warning msg=\"failed, retrying in 1s ... (1/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-11-30T23:13:38Z\" level=warning msg=\"failed, retrying in 1s ... (2/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-11-30T23:14:15Z\" level=warning msg=\"failed, retrying in 1s ... (3/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi038 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-11-30T23:14:53.157035Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi038.pwduyd on smithi038: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2023-11-30T23:14:53.158104Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi167.obmcvj on smithi167: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.38/16"}, "status": {"created": "2023-11-30T22:58:56.312786Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.38/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2023-11-30T22:54:41.668043Z", "last_refresh": "2023-11-30T23:15:56.214350Z", "running": 2, "size": 2}}, {"events": ["2023-11-30T22:55:50.759225Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi038:172.21.15.38=smithi038", "smithi167:172.21.15.167=smithi167"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2023-11-30T22:55:50.756456Z", "last_refresh": "2023-11-30T23:15:56.214426Z", "running": 2, "size": 2}}, {"events": ["2023-11-30T22:58:56.311581Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2023-11-30T22:58:56.308071Z", "last_refresh": "2023-11-30T23:15:59.565359Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2023-11-30T22:54:46.136630Z", "last_refresh": "2023-11-30T23:15:56.214508Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2023-11-30T22:56:33.258058Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2023-11-30T22:56:33.253117Z", "last_refresh": "2023-11-30T23:15:56.214583Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2023-11-30T22:54:43.949497Z", "last_refresh": "2023-11-30T23:15:59.564954Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2023-11-30T22:58:52.105721Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2023-11-30T22:58:59.793467Z", "last_refresh": "2023-11-30T23:15:56.214845Z", "ports": [8800], "running": 2, "size": 2}}] 2023-11-30T23:17:00.011 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2023-11-30T23:17:00.274 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:17:00 smithi038 conmon[81956]: audit 2023-11-30T23:16:59.544143+0000 mgr.smithi038.ldalxq (mgr.14182) 1070 : audit [DBG] from='client.15936 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-11-30T23:17:00.512 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:17:00 smithi167 conmon[87022]: audit 2023-11-30T23:16:59.544143+0000 mgr.smithi038.ldalxq (mgr.14182) 1070 : audit [DBG] from='client.15936 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-11-30T23:17:01.012 DEBUG:teuthology.orchestra.run.smithi038:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:0dc074ce0b0b3b4f393f56dd32ef36884ebf45a9 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 3faf8b00-8fd3-11ee-95a2-87774f69a715 -- ceph orch ls -f json 2023-11-30T23:17:01.512 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:17:01 smithi167 conmon[87022]: cluster 2023-11-30T23:17:00.028679+0000 mgr.smithi038.ldalxq (mgr.14182) 1071 : cluster 2023-11-30T23:17:01.512 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:17:01 smithi167 conmon[87022]: [DBG] pgmap v688: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2023-11-30T23:17:01.524 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:17:01 smithi038 conmon[81956]: cluster 2023-11-30T23:17:00.028679+0000 mgr.smithi038.ldalxq ( 2023-11-30T23:17:01.524 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:17:01 smithi038 conmon[81956]: mgr.14182) 1071 : cluster [DBG] pgmap v688: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2023-11-30T23:17:02.862 INFO:teuthology.orchestra.run.smithi038.stdout: 2023-11-30T23:17:02.863 INFO:teuthology.orchestra.run.smithi038.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2023-11-30T22:54:47.122758Z", "last_refresh": "2023-11-30T23:15:59.564688Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2023-11-30T22:54:42.674972Z", "last_refresh": "2023-11-30T23:15:56.214205Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2023-11-30T22:54:45.114633Z", "last_refresh": "2023-11-30T23:15:59.564823Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2023-11-30T23:09:45.063688Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi167.ndkqyv on smithi167: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2023-11-30T23:12:23.150100Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi167.nhhxhd on smithi167: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi167-nhhxhd\n/bin/podman: stderr Error: error inspecting object: no such container ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi167-nhhxhd\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi167.nhhxhd\n/bin/podman: stderr Error: error inspecting object: no such container ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi167.nhhxhd\nDeploy daemon haproxy.nfs.foo.smithi167.nhhxhd ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi167 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2023-11-30T23:10:30Z\" level=warning msg=\"failed, retrying in 1s ... (1/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-11-30T23:11:08Z\" level=warning msg=\"failed, retrying in 1s ... (2/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-11-30T23:11:45Z\" level=warning msg=\"failed, retrying in 1s ... (3/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi167 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-11-30T23:14:53.155795Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi038.njeday on smithi038: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi038-njeday\n/bin/podman: stderr Error: error inspecting object: no such container ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi038-njeday\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi038.njeday\n/bin/podman: stderr Error: error inspecting object: no such container ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi038.njeday\nDeploy daemon haproxy.nfs.foo.smithi038.njeday ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi038 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2023-11-30T23:13:00Z\" level=warning msg=\"failed, retrying in 1s ... (1/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-11-30T23:13:38Z\" level=warning msg=\"failed, retrying in 1s ... (2/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-11-30T23:14:15Z\" level=warning msg=\"failed, retrying in 1s ... (3/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi038 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-11-30T23:14:53.157035Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi038.pwduyd on smithi038: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2023-11-30T23:14:53.158104Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi167.obmcvj on smithi167: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.38/16"}, "status": {"created": "2023-11-30T22:58:56.312786Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.38/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2023-11-30T22:54:41.668043Z", "last_refresh": "2023-11-30T23:15:56.214350Z", "running": 2, "size": 2}}, {"events": ["2023-11-30T22:55:50.759225Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi038:172.21.15.38=smithi038", "smithi167:172.21.15.167=smithi167"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2023-11-30T22:55:50.756456Z", "last_refresh": "2023-11-30T23:15:56.214426Z", "running": 2, "size": 2}}, {"events": ["2023-11-30T22:58:56.311581Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2023-11-30T22:58:56.308071Z", "last_refresh": "2023-11-30T23:15:59.565359Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2023-11-30T22:54:46.136630Z", "last_refresh": "2023-11-30T23:15:56.214508Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2023-11-30T22:56:33.258058Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2023-11-30T22:56:33.253117Z", "last_refresh": "2023-11-30T23:15:56.214583Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2023-11-30T22:54:43.949497Z", "last_refresh": "2023-11-30T23:15:59.564954Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2023-11-30T22:58:52.105721Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2023-11-30T22:58:59.793467Z", "last_refresh": "2023-11-30T23:15:56.214845Z", "ports": [8800], "running": 2, "size": 2}}] 2023-11-30T23:17:03.225 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:17:02 smithi038 conmon[81956]: cluster 2023-11-30T23:17:02.029246+0000 2023-11-30T23:17:03.225 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:17:02 smithi038 conmon[81956]: mgr.smithi038.ldalxq (mgr.14182) 1072 : cluster [DBG] pgmap v689: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2023-11-30T23:17:03.262 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:17:02 smithi167 conmon[87022]: cluster 2023-11-30T23:17:02.029246+0000 mgr.smithi038.ldalxq (mgr.14182) 1072 : cluster [DBG] pgmap v689: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2023-11-30T23:17:03.271 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2023-11-30T23:17:04.262 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:17:03 smithi167 conmon[87022]: audit 2023-11-30T23:17:02.858071+0000 mgr.smithi038.ldalxq (mgr.14182) 1073 : audit [DBG] from='client.15940 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-11-30T23:17:04.262 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:17:03 smithi167 conmon[87022]: 2023-11-30T23:17:04.272 DEBUG:teuthology.orchestra.run.smithi038:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:0dc074ce0b0b3b4f393f56dd32ef36884ebf45a9 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 3faf8b00-8fd3-11ee-95a2-87774f69a715 -- ceph orch ls -f json 2023-11-30T23:17:04.274 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:17:03 smithi038 conmon[81956]: audit 2023-11-30T23:17:02.858071+0000 mgr.smithi038.ldalxq (mgr.14182 2023-11-30T23:17:04.274 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:17:03 smithi038 conmon[81956]: ) 1073 : audit [DBG] from='client.15940 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-11-30T23:17:05.218 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:17:04 smithi038 conmon[81956]: cluster 2023-11-30T23:17:04.030060+0000 mgr.smithi038.ldalxq (mgr.14182) 1074 : cluster [DBG] pgmap v690: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2023-11-30T23:17:05.262 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:17:04 smithi167 conmon[87022]: cluster 2023-11-30T23:17:04.030060+0000 mgr.smithi038.ldalxq (mgr.14182) 1074 : cluster [DBG] pgmap v690: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2023-11-30T23:17:06.070 INFO:teuthology.orchestra.run.smithi038.stdout: 2023-11-30T23:17:06.070 INFO:teuthology.orchestra.run.smithi038.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2023-11-30T22:54:47.122758Z", "last_refresh": "2023-11-30T23:15:59.564688Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2023-11-30T22:54:42.674972Z", "last_refresh": "2023-11-30T23:15:56.214205Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2023-11-30T22:54:45.114633Z", "last_refresh": "2023-11-30T23:15:59.564823Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2023-11-30T23:09:45.063688Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi167.ndkqyv on smithi167: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2023-11-30T23:12:23.150100Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi167.nhhxhd on smithi167: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi167-nhhxhd\n/bin/podman: stderr Error: error inspecting object: no such container ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi167-nhhxhd\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi167.nhhxhd\n/bin/podman: stderr Error: error inspecting object: no such container ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi167.nhhxhd\nDeploy daemon haproxy.nfs.foo.smithi167.nhhxhd ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi167 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2023-11-30T23:10:30Z\" level=warning msg=\"failed, retrying in 1s ... (1/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-11-30T23:11:08Z\" level=warning msg=\"failed, retrying in 1s ... (2/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-11-30T23:11:45Z\" level=warning msg=\"failed, retrying in 1s ... (3/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi167 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-11-30T23:14:53.155795Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi038.njeday on smithi038: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi038-njeday\n/bin/podman: stderr Error: error inspecting object: no such container ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi038-njeday\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi038.njeday\n/bin/podman: stderr Error: error inspecting object: no such container ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi038.njeday\nDeploy daemon haproxy.nfs.foo.smithi038.njeday ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi038 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2023-11-30T23:13:00Z\" level=warning msg=\"failed, retrying in 1s ... (1/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-11-30T23:13:38Z\" level=warning msg=\"failed, retrying in 1s ... (2/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-11-30T23:14:15Z\" level=warning msg=\"failed, retrying in 1s ... (3/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi038 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-11-30T23:14:53.157035Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi038.pwduyd on smithi038: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2023-11-30T23:14:53.158104Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi167.obmcvj on smithi167: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.38/16"}, "status": {"created": "2023-11-30T22:58:56.312786Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.38/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2023-11-30T22:54:41.668043Z", "last_refresh": "2023-11-30T23:15:56.214350Z", "running": 2, "size": 2}}, {"events": ["2023-11-30T22:55:50.759225Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi038:172.21.15.38=smithi038", "smithi167:172.21.15.167=smithi167"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2023-11-30T22:55:50.756456Z", "last_refresh": "2023-11-30T23:15:56.214426Z", "running": 2, "size": 2}}, {"events": ["2023-11-30T22:58:56.311581Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2023-11-30T22:58:56.308071Z", "last_refresh": "2023-11-30T23:15:59.565359Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2023-11-30T22:54:46.136630Z", "last_refresh": "2023-11-30T23:15:56.214508Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2023-11-30T22:56:33.258058Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2023-11-30T22:56:33.253117Z", "last_refresh": "2023-11-30T23:15:56.214583Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2023-11-30T22:54:43.949497Z", "last_refresh": "2023-11-30T23:15:59.564954Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2023-11-30T22:58:52.105721Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2023-11-30T22:58:59.793467Z", "last_refresh": "2023-11-30T23:15:56.214845Z", "ports": [8800], "running": 2, "size": 2}}] 2023-11-30T23:17:06.534 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2023-11-30T23:17:07.512 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:17:07 smithi167 conmon[87022]: cluster 2023-11-30T23:17:06.030733+0000 mgr.smithi038.ldalxq (mgr.14182) 1075 : cluster [DBG] pgmap v691: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2023-11-30T23:17:07.512 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:17:07 smithi167 conmon[87022]: audit 2023-11-30T23:17:06.065427+0000 mgr.smithi038.ldalxq (mgr.14182) 1076 : audit [DBG] from='client.15944 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-11-30T23:17:07.524 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:17:07 smithi038 conmon[81956]: cluster 2023-11-30T23:17:06.030733+0000 2023-11-30T23:17:07.524 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:17:07 smithi038 conmon[81956]: mgr.smithi038.ldalxq (mgr.14182) 1075 : cluster [DBG] pgmap v691: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2023-11-30T23:17:07.524 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:17:07 smithi038 conmon[81956]: audit 2023-11-30T23:17:06.065427+0000 mgr.smithi038.ldalxq (mgr.14182) 1076 : audit [DBG] from='client.15944 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-11-30T23:17:07.535 DEBUG:teuthology.orchestra.run.smithi038:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:0dc074ce0b0b3b4f393f56dd32ef36884ebf45a9 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 3faf8b00-8fd3-11ee-95a2-87774f69a715 -- ceph orch ls -f json 2023-11-30T23:17:09.274 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:17:09 smithi038 conmon[81956]: cluster 2023-11-30T23:17:08.031511+0000 mgr.smithi038.ldalxq (mgr.14182) 1077 : cluster [DBG] pgmap v692: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2023-11-30T23:17:09.368 INFO:teuthology.orchestra.run.smithi038.stdout: 2023-11-30T23:17:09.368 INFO:teuthology.orchestra.run.smithi038.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2023-11-30T22:54:47.122758Z", "last_refresh": "2023-11-30T23:15:59.564688Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2023-11-30T22:54:42.674972Z", "last_refresh": "2023-11-30T23:15:56.214205Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2023-11-30T22:54:45.114633Z", "last_refresh": "2023-11-30T23:15:59.564823Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2023-11-30T23:09:45.063688Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi167.ndkqyv on smithi167: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2023-11-30T23:12:23.150100Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi167.nhhxhd on smithi167: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi167-nhhxhd\n/bin/podman: stderr Error: error inspecting object: no such container ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi167-nhhxhd\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi167.nhhxhd\n/bin/podman: stderr Error: error inspecting object: no such container ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi167.nhhxhd\nDeploy daemon haproxy.nfs.foo.smithi167.nhhxhd ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi167 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2023-11-30T23:10:30Z\" level=warning msg=\"failed, retrying in 1s ... (1/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-11-30T23:11:08Z\" level=warning msg=\"failed, retrying in 1s ... (2/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-11-30T23:11:45Z\" level=warning msg=\"failed, retrying in 1s ... (3/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi167 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-11-30T23:14:53.155795Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi038.njeday on smithi038: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi038-njeday\n/bin/podman: stderr Error: error inspecting object: no such container ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi038-njeday\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi038.njeday\n/bin/podman: stderr Error: error inspecting object: no such container ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi038.njeday\nDeploy daemon haproxy.nfs.foo.smithi038.njeday ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi038 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2023-11-30T23:13:00Z\" level=warning msg=\"failed, retrying in 1s ... (1/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-11-30T23:13:38Z\" level=warning msg=\"failed, retrying in 1s ... (2/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-11-30T23:14:15Z\" level=warning msg=\"failed, retrying in 1s ... (3/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi038 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-11-30T23:14:53.157035Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi038.pwduyd on smithi038: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2023-11-30T23:14:53.158104Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi167.obmcvj on smithi167: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.38/16"}, "status": {"created": "2023-11-30T22:58:56.312786Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.38/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2023-11-30T22:54:41.668043Z", "last_refresh": "2023-11-30T23:15:56.214350Z", "running": 2, "size": 2}}, {"events": ["2023-11-30T22:55:50.759225Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi038:172.21.15.38=smithi038", "smithi167:172.21.15.167=smithi167"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2023-11-30T22:55:50.756456Z", "last_refresh": "2023-11-30T23:15:56.214426Z", "running": 2, "size": 2}}, {"events": ["2023-11-30T22:58:56.311581Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2023-11-30T22:58:56.308071Z", "last_refresh": "2023-11-30T23:15:59.565359Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2023-11-30T22:54:46.136630Z", "last_refresh": "2023-11-30T23:15:56.214508Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2023-11-30T22:56:33.258058Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2023-11-30T22:56:33.253117Z", "last_refresh": "2023-11-30T23:15:56.214583Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2023-11-30T22:54:43.949497Z", "last_refresh": "2023-11-30T23:15:59.564954Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2023-11-30T22:58:52.105721Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2023-11-30T22:58:59.793467Z", "last_refresh": "2023-11-30T23:15:56.214845Z", "ports": [8800], "running": 2, "size": 2}}] 2023-11-30T23:17:09.512 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:17:09 smithi167 conmon[87022]: cluster 2023-11-30T23:17:08.031511+0000 mgr.smithi038.ldalxq (mgr.14182) 1077 : cluster [DBG] pgmap v692: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2023-11-30T23:17:09.795 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2023-11-30T23:17:10.512 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:17:10 smithi167 conmon[87022]: audit 2023-11-30T23:17:09.364476+0000 mgr.smithi038.ldalxq (mgr.14182) 1078 : audit [DBG] from='client.15948 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-11-30T23:17:10.524 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:17:10 smithi038 conmon[81956]: audit 2023-11-30T23:17:09.364476+0000 mgr.smithi038.ldalxq (mgr.14182 2023-11-30T23:17:10.524 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:17:10 smithi038 conmon[81956]: ) 1078 : audit [DBG] from='client.15948 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-11-30T23:17:10.796 DEBUG:teuthology.orchestra.run.smithi038:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:0dc074ce0b0b3b4f393f56dd32ef36884ebf45a9 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 3faf8b00-8fd3-11ee-95a2-87774f69a715 -- ceph orch ls -f json 2023-11-30T23:17:11.366 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:17:11 smithi038 conmon[81956]: cluster 2023-11-30T23:17:10.032220+0000 2023-11-30T23:17:11.367 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:17:11 smithi038 conmon[81956]: mgr.smithi038.ldalxq (mgr.14182) 1079 : cluster [DBG] pgmap v693: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2023-11-30T23:17:11.512 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:17:11 smithi167 conmon[87022]: cluster 2023-11-30T23:17:10.032220+0000 mgr.smithi038.ldalxq (mgr.14182) 1079 : 2023-11-30T23:17:11.512 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:17:11 smithi167 conmon[87022]: cluster [DBG] pgmap v693: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2023-11-30T23:17:12.535 INFO:teuthology.orchestra.run.smithi038.stdout: 2023-11-30T23:17:12.535 INFO:teuthology.orchestra.run.smithi038.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2023-11-30T22:54:47.122758Z", "last_refresh": "2023-11-30T23:15:59.564688Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2023-11-30T22:54:42.674972Z", "last_refresh": "2023-11-30T23:15:56.214205Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2023-11-30T22:54:45.114633Z", "last_refresh": "2023-11-30T23:15:59.564823Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2023-11-30T23:09:45.063688Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi167.ndkqyv on smithi167: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2023-11-30T23:12:23.150100Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi167.nhhxhd on smithi167: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi167-nhhxhd\n/bin/podman: stderr Error: error inspecting object: no such container ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi167-nhhxhd\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi167.nhhxhd\n/bin/podman: stderr Error: error inspecting object: no such container ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi167.nhhxhd\nDeploy daemon haproxy.nfs.foo.smithi167.nhhxhd ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi167 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2023-11-30T23:10:30Z\" level=warning msg=\"failed, retrying in 1s ... (1/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-11-30T23:11:08Z\" level=warning msg=\"failed, retrying in 1s ... (2/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-11-30T23:11:45Z\" level=warning msg=\"failed, retrying in 1s ... (3/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi167 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-11-30T23:14:53.155795Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi038.njeday on smithi038: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi038-njeday\n/bin/podman: stderr Error: error inspecting object: no such container ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi038-njeday\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi038.njeday\n/bin/podman: stderr Error: error inspecting object: no such container ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi038.njeday\nDeploy daemon haproxy.nfs.foo.smithi038.njeday ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi038 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2023-11-30T23:13:00Z\" level=warning msg=\"failed, retrying in 1s ... (1/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-11-30T23:13:38Z\" level=warning msg=\"failed, retrying in 1s ... (2/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-11-30T23:14:15Z\" level=warning msg=\"failed, retrying in 1s ... (3/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi038 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-11-30T23:14:53.157035Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi038.pwduyd on smithi038: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2023-11-30T23:14:53.158104Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi167.obmcvj on smithi167: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.38/16"}, "status": {"created": "2023-11-30T22:58:56.312786Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.38/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2023-11-30T22:54:41.668043Z", "last_refresh": "2023-11-30T23:15:56.214350Z", "running": 2, "size": 2}}, {"events": ["2023-11-30T22:55:50.759225Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi038:172.21.15.38=smithi038", "smithi167:172.21.15.167=smithi167"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2023-11-30T22:55:50.756456Z", "last_refresh": "2023-11-30T23:15:56.214426Z", "running": 2, "size": 2}}, {"events": ["2023-11-30T22:58:56.311581Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2023-11-30T22:58:56.308071Z", "last_refresh": "2023-11-30T23:15:59.565359Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2023-11-30T22:54:46.136630Z", "last_refresh": "2023-11-30T23:15:56.214508Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2023-11-30T22:56:33.258058Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2023-11-30T22:56:33.253117Z", "last_refresh": "2023-11-30T23:15:56.214583Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2023-11-30T22:54:43.949497Z", "last_refresh": "2023-11-30T23:15:59.564954Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2023-11-30T22:58:52.105721Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2023-11-30T22:58:59.793467Z", "last_refresh": "2023-11-30T23:15:56.214845Z", "ports": [8800], "running": 2, "size": 2}}] 2023-11-30T23:17:12.962 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2023-11-30T23:17:13.262 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:17:12 smithi167 conmon[87022]: cluster 2023-11-30T23:17:12.032714+0000 mgr.smithi038.ldalxq (mgr.14182) 1080 : cluster [DBG] pgmap v694: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2023-11-30T23:17:13.262 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:17:12 smithi167 conmon[87022]: audit 2023-11-30T23:17:12.530949+0000 mgr.smithi038.ldalxq (mgr.14182) 1081 : audit [DBG] from='client.15952 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-11-30T23:17:13.274 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:17:12 smithi038 conmon[81956]: cluster 2023-11-30T23:17:12.032714+0000 mgr.smithi038.ldalxq (mgr.14182) 1080 : cluster [DBG] pgmap v694: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2023-11-30T23:17:13.274 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:17:12 smithi038 conmon[81956]: audit 2023-11-30T23:17:12.530949+0000 mgr.smithi038.ldalxq (mgr.14182) 1081 : audit [DBG] from='client.15952 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-11-30T23:17:13.963 DEBUG:teuthology.orchestra.run.smithi038:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:0dc074ce0b0b3b4f393f56dd32ef36884ebf45a9 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 3faf8b00-8fd3-11ee-95a2-87774f69a715 -- ceph orch ls -f json 2023-11-30T23:17:15.268 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:17:15 smithi038 conmon[81956]: cluster 2023-11-30T23:17:14.033448+0000 2023-11-30T23:17:15.268 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:17:15 smithi038 conmon[81956]: mgr.smithi038.ldalxq (mgr.14182) 1082 : cluster [DBG] pgmap v695: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2023-11-30T23:17:15.512 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:17:15 smithi167 conmon[87022]: cluster 2023-11-30T23:17:14.033448+0000 mgr.smithi038.ldalxq (mgr.14182) 1082 : cluster [DBG] pgmap v695: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2023-11-30T23:17:15.699 INFO:teuthology.orchestra.run.smithi038.stdout: 2023-11-30T23:17:15.699 INFO:teuthology.orchestra.run.smithi038.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2023-11-30T22:54:47.122758Z", "last_refresh": "2023-11-30T23:15:59.564688Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2023-11-30T22:54:42.674972Z", "last_refresh": "2023-11-30T23:15:56.214205Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2023-11-30T22:54:45.114633Z", "last_refresh": "2023-11-30T23:15:59.564823Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2023-11-30T23:09:45.063688Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi167.ndkqyv on smithi167: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2023-11-30T23:12:23.150100Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi167.nhhxhd on smithi167: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi167-nhhxhd\n/bin/podman: stderr Error: error inspecting object: no such container ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi167-nhhxhd\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi167.nhhxhd\n/bin/podman: stderr Error: error inspecting object: no such container ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi167.nhhxhd\nDeploy daemon haproxy.nfs.foo.smithi167.nhhxhd ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi167 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2023-11-30T23:10:30Z\" level=warning msg=\"failed, retrying in 1s ... (1/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-11-30T23:11:08Z\" level=warning msg=\"failed, retrying in 1s ... (2/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-11-30T23:11:45Z\" level=warning msg=\"failed, retrying in 1s ... (3/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi167 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-11-30T23:14:53.155795Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi038.njeday on smithi038: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi038-njeday\n/bin/podman: stderr Error: error inspecting object: no such container ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi038-njeday\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi038.njeday\n/bin/podman: stderr Error: error inspecting object: no such container ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi038.njeday\nDeploy daemon haproxy.nfs.foo.smithi038.njeday ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi038 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2023-11-30T23:13:00Z\" level=warning msg=\"failed, retrying in 1s ... (1/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-11-30T23:13:38Z\" level=warning msg=\"failed, retrying in 1s ... (2/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-11-30T23:14:15Z\" level=warning msg=\"failed, retrying in 1s ... (3/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi038 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-11-30T23:14:53.157035Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi038.pwduyd on smithi038: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2023-11-30T23:14:53.158104Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi167.obmcvj on smithi167: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.38/16"}, "status": {"created": "2023-11-30T22:58:56.312786Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.38/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2023-11-30T22:54:41.668043Z", "last_refresh": "2023-11-30T23:15:56.214350Z", "running": 2, "size": 2}}, {"events": ["2023-11-30T22:55:50.759225Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi038:172.21.15.38=smithi038", "smithi167:172.21.15.167=smithi167"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2023-11-30T22:55:50.756456Z", "last_refresh": "2023-11-30T23:15:56.214426Z", "running": 2, "size": 2}}, {"events": ["2023-11-30T22:58:56.311581Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2023-11-30T22:58:56.308071Z", "last_refresh": "2023-11-30T23:15:59.565359Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2023-11-30T22:54:46.136630Z", "last_refresh": "2023-11-30T23:15:56.214508Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2023-11-30T22:56:33.258058Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2023-11-30T22:56:33.253117Z", "last_refresh": "2023-11-30T23:15:56.214583Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2023-11-30T22:54:43.949497Z", "last_refresh": "2023-11-30T23:15:59.564954Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2023-11-30T22:58:52.105721Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2023-11-30T22:58:59.793467Z", "last_refresh": "2023-11-30T23:15:56.214845Z", "ports": [8800], "running": 2, "size": 2}}] 2023-11-30T23:17:16.219 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2023-11-30T23:17:16.512 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:17:16 smithi167 conmon[87022]: audit 2023-11-30T23:17:15.694865+0000 mgr.smithi038.ldalxq (mgr.14182) 1083 : audit [DBG] from='client.15956 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-11-30T23:17:16.524 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:17:16 smithi038 conmon[81956]: audit 2023-11-30T23:17:15.694865+0000 2023-11-30T23:17:16.524 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:17:16 smithi038 conmon[81956]: mgr.smithi038.ldalxq (mgr.14182) 1083 : audit [DBG] from='client.15956 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-11-30T23:17:17.220 DEBUG:teuthology.orchestra.run.smithi038:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:0dc074ce0b0b3b4f393f56dd32ef36884ebf45a9 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 3faf8b00-8fd3-11ee-95a2-87774f69a715 -- ceph orch ls -f json 2023-11-30T23:17:17.512 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:17:17 smithi167 conmon[87022]: cluster 2023-11-30T23:17:16.034117+0000 mgr.smithi038.ldalxq (mgr.14182) 1084 : cluster 2023-11-30T23:17:17.512 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:17:17 smithi167 conmon[87022]: [DBG] pgmap v696: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2023-11-30T23:17:17.524 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:17:17 smithi038 conmon[81956]: cluster 2023-11-30T23:17:16.034117+0000 mgr.smithi038.ldalxq (mgr.14182) 1084 : cluster 2023-11-30T23:17:17.524 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:17:17 smithi038 conmon[81956]: [DBG] pgmap v696: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2023-11-30T23:17:18.995 INFO:teuthology.orchestra.run.smithi038.stdout: 2023-11-30T23:17:18.995 INFO:teuthology.orchestra.run.smithi038.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2023-11-30T22:54:47.122758Z", "last_refresh": "2023-11-30T23:15:59.564688Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2023-11-30T22:54:42.674972Z", "last_refresh": "2023-11-30T23:15:56.214205Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2023-11-30T22:54:45.114633Z", "last_refresh": "2023-11-30T23:15:59.564823Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2023-11-30T23:09:45.063688Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi167.ndkqyv on smithi167: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2023-11-30T23:12:23.150100Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi167.nhhxhd on smithi167: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi167-nhhxhd\n/bin/podman: stderr Error: error inspecting object: no such container ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi167-nhhxhd\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi167.nhhxhd\n/bin/podman: stderr Error: error inspecting object: no such container ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi167.nhhxhd\nDeploy daemon haproxy.nfs.foo.smithi167.nhhxhd ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi167 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2023-11-30T23:10:30Z\" level=warning msg=\"failed, retrying in 1s ... (1/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-11-30T23:11:08Z\" level=warning msg=\"failed, retrying in 1s ... (2/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-11-30T23:11:45Z\" level=warning msg=\"failed, retrying in 1s ... (3/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi167 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-11-30T23:14:53.155795Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi038.njeday on smithi038: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi038-njeday\n/bin/podman: stderr Error: error inspecting object: no such container ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi038-njeday\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi038.njeday\n/bin/podman: stderr Error: error inspecting object: no such container ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi038.njeday\nDeploy daemon haproxy.nfs.foo.smithi038.njeday ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi038 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2023-11-30T23:13:00Z\" level=warning msg=\"failed, retrying in 1s ... (1/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-11-30T23:13:38Z\" level=warning msg=\"failed, retrying in 1s ... (2/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-11-30T23:14:15Z\" level=warning msg=\"failed, retrying in 1s ... (3/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi038 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-11-30T23:14:53.157035Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi038.pwduyd on smithi038: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2023-11-30T23:14:53.158104Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi167.obmcvj on smithi167: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.38/16"}, "status": {"created": "2023-11-30T22:58:56.312786Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.38/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2023-11-30T22:54:41.668043Z", "last_refresh": "2023-11-30T23:15:56.214350Z", "running": 2, "size": 2}}, {"events": ["2023-11-30T22:55:50.759225Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi038:172.21.15.38=smithi038", "smithi167:172.21.15.167=smithi167"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2023-11-30T22:55:50.756456Z", "last_refresh": "2023-11-30T23:15:56.214426Z", "running": 2, "size": 2}}, {"events": ["2023-11-30T22:58:56.311581Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2023-11-30T22:58:56.308071Z", "last_refresh": "2023-11-30T23:15:59.565359Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2023-11-30T22:54:46.136630Z", "last_refresh": "2023-11-30T23:15:56.214508Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2023-11-30T22:56:33.258058Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2023-11-30T22:56:33.253117Z", "last_refresh": "2023-11-30T23:15:56.214583Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2023-11-30T22:54:43.949497Z", "last_refresh": "2023-11-30T23:15:59.564954Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2023-11-30T22:58:52.105721Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2023-11-30T22:58:59.793467Z", "last_refresh": "2023-11-30T23:15:56.214845Z", "ports": [8800], "running": 2, "size": 2}}] 2023-11-30T23:17:19.217 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:17:19 smithi038 conmon[81956]: cluster 2023-11-30T23:17:18.034609+0000 2023-11-30T23:17:19.217 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:17:19 smithi038 conmon[81956]: mgr.smithi038.ldalxq (mgr.14182) 1085 : cluster [DBG] pgmap v697: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2023-11-30T23:17:19.483 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2023-11-30T23:17:19.512 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:17:19 smithi167 conmon[87022]: cluster 2023-11-30T23:17:18.034609+0000 mgr.smithi038.ldalxq (mgr.14182) 1085 : cluster [DBG] pgmap v697: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2023-11-30T23:17:20.484 DEBUG:teuthology.orchestra.run.smithi038:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:0dc074ce0b0b3b4f393f56dd32ef36884ebf45a9 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 3faf8b00-8fd3-11ee-95a2-87774f69a715 -- ceph orch ls -f json 2023-11-30T23:17:20.512 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:17:20 smithi167 conmon[87022]: audit 2023-11-30T23:17:18.990561+0000 mgr.smithi038.ldalxq (mgr.14182) 1086 : audit [DBG] from='client.15960 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-11-30T23:17:20.515 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:17:20 smithi038 conmon[81956]: audit 2023-11-30T23:17:18.990561+0000 mgr.smithi038.ldalxq (mgr.14182) 1086 : audit [DBG] 2023-11-30T23:17:20.515 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:17:20 smithi038 conmon[81956]: from='client.15960 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-11-30T23:17:21.415 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:17:21 smithi038 conmon[81956]: cluster 2023-11-30T23:17:20.035533+0000 mgr.smithi038.ldalxq ( 2023-11-30T23:17:21.415 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:17:21 smithi038 conmon[81956]: mgr.14182) 1087 : cluster [DBG] pgmap v698: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 682 B/s rd, 0 op/s 2023-11-30T23:17:21.512 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:17:21 smithi167 conmon[87022]: cluster 2023-11-30T23:17:20.035533+0000 mgr.smithi038.ldalxq (mgr.14182) 1087 : cluster [DBG] pgmap v698: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 682 B/s rd, 0 op/s 2023-11-30T23:17:22.188 INFO:teuthology.orchestra.run.smithi038.stdout: 2023-11-30T23:17:22.188 INFO:teuthology.orchestra.run.smithi038.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2023-11-30T22:54:47.122758Z", "last_refresh": "2023-11-30T23:15:59.564688Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2023-11-30T22:54:42.674972Z", "last_refresh": "2023-11-30T23:15:56.214205Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2023-11-30T22:54:45.114633Z", "last_refresh": "2023-11-30T23:15:59.564823Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2023-11-30T23:09:45.063688Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi167.ndkqyv on smithi167: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2023-11-30T23:12:23.150100Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi167.nhhxhd on smithi167: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi167-nhhxhd\n/bin/podman: stderr Error: error inspecting object: no such container ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi167-nhhxhd\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi167.nhhxhd\n/bin/podman: stderr Error: error inspecting object: no such container ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi167.nhhxhd\nDeploy daemon haproxy.nfs.foo.smithi167.nhhxhd ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi167 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2023-11-30T23:10:30Z\" level=warning msg=\"failed, retrying in 1s ... (1/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-11-30T23:11:08Z\" level=warning msg=\"failed, retrying in 1s ... (2/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-11-30T23:11:45Z\" level=warning msg=\"failed, retrying in 1s ... (3/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi167 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-11-30T23:14:53.155795Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi038.njeday on smithi038: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi038-njeday\n/bin/podman: stderr Error: error inspecting object: no such container ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi038-njeday\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi038.njeday\n/bin/podman: stderr Error: error inspecting object: no such container ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi038.njeday\nDeploy daemon haproxy.nfs.foo.smithi038.njeday ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi038 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2023-11-30T23:13:00Z\" level=warning msg=\"failed, retrying in 1s ... (1/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-11-30T23:13:38Z\" level=warning msg=\"failed, retrying in 1s ... (2/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-11-30T23:14:15Z\" level=warning msg=\"failed, retrying in 1s ... (3/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi038 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-11-30T23:14:53.157035Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi038.pwduyd on smithi038: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2023-11-30T23:14:53.158104Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi167.obmcvj on smithi167: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.38/16"}, "status": {"created": "2023-11-30T22:58:56.312786Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.38/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2023-11-30T22:54:41.668043Z", "last_refresh": "2023-11-30T23:15:56.214350Z", "running": 2, "size": 2}}, {"events": ["2023-11-30T22:55:50.759225Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi038:172.21.15.38=smithi038", "smithi167:172.21.15.167=smithi167"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2023-11-30T22:55:50.756456Z", "last_refresh": "2023-11-30T23:15:56.214426Z", "running": 2, "size": 2}}, {"events": ["2023-11-30T22:58:56.311581Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2023-11-30T22:58:56.308071Z", "last_refresh": "2023-11-30T23:15:59.565359Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2023-11-30T22:54:46.136630Z", "last_refresh": "2023-11-30T23:15:56.214508Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2023-11-30T22:56:33.258058Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2023-11-30T22:56:33.253117Z", "last_refresh": "2023-11-30T23:15:56.214583Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2023-11-30T22:54:43.949497Z", "last_refresh": "2023-11-30T23:15:59.564954Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2023-11-30T22:58:52.105721Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2023-11-30T22:58:59.793467Z", "last_refresh": "2023-11-30T23:15:56.214845Z", "ports": [8800], "running": 2, "size": 2}}] 2023-11-30T23:17:22.632 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2023-11-30T23:17:23.262 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:17:22 smithi167 conmon[87022]: cluster 2023-11-30T23:17:22.036038+0000 mgr.smithi038.ldalxq (mgr.14182) 1088 : cluster [DBG] pgmap v699: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 682 B/s rd, 0 op/s 2023-11-30T23:17:23.262 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:17:22 smithi167 conmon[87022]: audit 2023-11-30T23:17:22.184408+0000 mgr.smithi038.ldalxq (mgr.14182) 1089 : audit [DBG] from='client.15964 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-11-30T23:17:23.274 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:17:22 smithi038 conmon[81956]: cluster 2023-11-30T23:17:22.036038+0000 mgr.smithi038.ldalxq (mgr.14182) 1088 : cluster [DBG] pgmap v699: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 682 B/s rd, 0 op/s 2023-11-30T23:17:23.274 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:17:22 smithi038 conmon[81956]: audit 2023-11-30T23:17:22.184408+0000 mgr.smithi038.ldalxq (mgr.14182) 1089 : audit [DBG] from='client.15964 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-11-30T23:17:23.633 DEBUG:teuthology.orchestra.run.smithi038:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:0dc074ce0b0b3b4f393f56dd32ef36884ebf45a9 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 3faf8b00-8fd3-11ee-95a2-87774f69a715 -- ceph orch ls -f json 2023-11-30T23:17:25.460 INFO:teuthology.orchestra.run.smithi038.stdout: 2023-11-30T23:17:25.461 INFO:teuthology.orchestra.run.smithi038.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2023-11-30T22:54:47.122758Z", "last_refresh": "2023-11-30T23:15:59.564688Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2023-11-30T22:54:42.674972Z", "last_refresh": "2023-11-30T23:15:56.214205Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2023-11-30T22:54:45.114633Z", "last_refresh": "2023-11-30T23:15:59.564823Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2023-11-30T23:09:45.063688Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi167.ndkqyv on smithi167: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2023-11-30T23:12:23.150100Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi167.nhhxhd on smithi167: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi167-nhhxhd\n/bin/podman: stderr Error: error inspecting object: no such container ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi167-nhhxhd\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi167.nhhxhd\n/bin/podman: stderr Error: error inspecting object: no such container ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi167.nhhxhd\nDeploy daemon haproxy.nfs.foo.smithi167.nhhxhd ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi167 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2023-11-30T23:10:30Z\" level=warning msg=\"failed, retrying in 1s ... (1/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-11-30T23:11:08Z\" level=warning msg=\"failed, retrying in 1s ... (2/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-11-30T23:11:45Z\" level=warning msg=\"failed, retrying in 1s ... (3/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi167 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-11-30T23:14:53.155795Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi038.njeday on smithi038: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi038-njeday\n/bin/podman: stderr Error: error inspecting object: no such container ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi038-njeday\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi038.njeday\n/bin/podman: stderr Error: error inspecting object: no such container ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi038.njeday\nDeploy daemon haproxy.nfs.foo.smithi038.njeday ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi038 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2023-11-30T23:13:00Z\" level=warning msg=\"failed, retrying in 1s ... (1/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-11-30T23:13:38Z\" level=warning msg=\"failed, retrying in 1s ... (2/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-11-30T23:14:15Z\" level=warning msg=\"failed, retrying in 1s ... (3/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi038 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-11-30T23:14:53.157035Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi038.pwduyd on smithi038: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2023-11-30T23:14:53.158104Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi167.obmcvj on smithi167: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.38/16"}, "status": {"created": "2023-11-30T22:58:56.312786Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.38/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2023-11-30T22:54:41.668043Z", "last_refresh": "2023-11-30T23:15:56.214350Z", "running": 2, "size": 2}}, {"events": ["2023-11-30T22:55:50.759225Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi038:172.21.15.38=smithi038", "smithi167:172.21.15.167=smithi167"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2023-11-30T22:55:50.756456Z", "last_refresh": "2023-11-30T23:15:56.214426Z", "running": 2, "size": 2}}, {"events": ["2023-11-30T22:58:56.311581Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2023-11-30T22:58:56.308071Z", "last_refresh": "2023-11-30T23:15:59.565359Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2023-11-30T22:54:46.136630Z", "last_refresh": "2023-11-30T23:15:56.214508Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2023-11-30T22:56:33.258058Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2023-11-30T22:56:33.253117Z", "last_refresh": "2023-11-30T23:15:56.214583Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2023-11-30T22:54:43.949497Z", "last_refresh": "2023-11-30T23:15:59.564954Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2023-11-30T22:58:52.105721Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2023-11-30T22:58:59.793467Z", "last_refresh": "2023-11-30T23:15:56.214845Z", "ports": [8800], "running": 2, "size": 2}}] 2023-11-30T23:17:25.481 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:17:25 smithi038 conmon[81956]: cluster 2023-11-30T23:17:24. 2023-11-30T23:17:25.481 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:17:25 smithi038 conmon[81956]: 036561+0000 mgr.smithi038.ldalxq (mgr.14182) 1090 : cluster [DBG] pgmap v700: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 767 B/s rd, 0 op/s 2023-11-30T23:17:25.512 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:17:25 smithi167 conmon[87022]: cluster 2023-11-30T23:17:24.036561+0000 mgr.smithi038.ldalxq (mgr.14182) 1090 : cluster [DBG] pgmap v700: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 767 B/s rd, 0 op/s 2023-11-30T23:17:25.882 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2023-11-30T23:17:26.512 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:17:26 smithi167 conmon[87022]: audit 2023-11-30T23:17:25.455820+0000 mgr.smithi038.ldalxq (mgr.14182) 1091 : audit [DBG] from='client.15968 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-11-30T23:17:26.524 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:17:26 smithi038 conmon[81956]: audit 2023-11-30T23:17:25.455820+0000 2023-11-30T23:17:26.524 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:17:26 smithi038 conmon[81956]: mgr.smithi038.ldalxq (mgr.14182) 1091 : audit [DBG] from='client.15968 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-11-30T23:17:26.883 DEBUG:teuthology.orchestra.run.smithi038:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:0dc074ce0b0b3b4f393f56dd32ef36884ebf45a9 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 3faf8b00-8fd3-11ee-95a2-87774f69a715 -- ceph orch ls -f json 2023-11-30T23:17:27.274 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:17:27 smithi038 conmon[81956]: cluster 2023-11-30T23:17:26.037231+0000 mgr.smithi038.ldalxq (mgr.14182 2023-11-30T23:17:27.274 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:17:27 smithi038 conmon[81956]: ) 1092 : cluster [DBG] pgmap v701: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 682 B/s rd, 0 op/s 2023-11-30T23:17:27.512 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:17:27 smithi167 conmon[87022]: cluster 2023-11-30T23:17:26.037231+0000 mgr.smithi038.ldalxq (mgr.14182) 1092 : cluster [DBG] pgmap v701: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 682 B/s rd, 0 op/s 2023-11-30T23:17:27.512 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:17:27 smithi167 conmon[87022]: 2023-11-30T23:17:28.614 INFO:teuthology.orchestra.run.smithi038.stdout: 2023-11-30T23:17:28.615 INFO:teuthology.orchestra.run.smithi038.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2023-11-30T22:54:47.122758Z", "last_refresh": "2023-11-30T23:15:59.564688Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2023-11-30T22:54:42.674972Z", "last_refresh": "2023-11-30T23:15:56.214205Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2023-11-30T22:54:45.114633Z", "last_refresh": "2023-11-30T23:15:59.564823Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2023-11-30T23:09:45.063688Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi167.ndkqyv on smithi167: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2023-11-30T23:12:23.150100Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi167.nhhxhd on smithi167: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi167-nhhxhd\n/bin/podman: stderr Error: error inspecting object: no such container ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi167-nhhxhd\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi167.nhhxhd\n/bin/podman: stderr Error: error inspecting object: no such container ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi167.nhhxhd\nDeploy daemon haproxy.nfs.foo.smithi167.nhhxhd ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi167 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2023-11-30T23:10:30Z\" level=warning msg=\"failed, retrying in 1s ... (1/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-11-30T23:11:08Z\" level=warning msg=\"failed, retrying in 1s ... (2/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-11-30T23:11:45Z\" level=warning msg=\"failed, retrying in 1s ... (3/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi167 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-11-30T23:14:53.155795Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi038.njeday on smithi038: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi038-njeday\n/bin/podman: stderr Error: error inspecting object: no such container ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi038-njeday\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi038.njeday\n/bin/podman: stderr Error: error inspecting object: no such container ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi038.njeday\nDeploy daemon haproxy.nfs.foo.smithi038.njeday ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi038 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2023-11-30T23:13:00Z\" level=warning msg=\"failed, retrying in 1s ... (1/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-11-30T23:13:38Z\" level=warning msg=\"failed, retrying in 1s ... (2/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-11-30T23:14:15Z\" level=warning msg=\"failed, retrying in 1s ... (3/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi038 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-11-30T23:14:53.157035Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi038.pwduyd on smithi038: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2023-11-30T23:14:53.158104Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi167.obmcvj on smithi167: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.38/16"}, "status": {"created": "2023-11-30T22:58:56.312786Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.38/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2023-11-30T22:54:41.668043Z", "last_refresh": "2023-11-30T23:15:56.214350Z", "running": 2, "size": 2}}, {"events": ["2023-11-30T22:55:50.759225Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi038:172.21.15.38=smithi038", "smithi167:172.21.15.167=smithi167"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2023-11-30T22:55:50.756456Z", "last_refresh": "2023-11-30T23:15:56.214426Z", "running": 2, "size": 2}}, {"events": ["2023-11-30T22:58:56.311581Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2023-11-30T22:58:56.308071Z", "last_refresh": "2023-11-30T23:15:59.565359Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2023-11-30T22:54:46.136630Z", "last_refresh": "2023-11-30T23:15:56.214508Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2023-11-30T22:56:33.258058Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2023-11-30T22:56:33.253117Z", "last_refresh": "2023-11-30T23:15:56.214583Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2023-11-30T22:54:43.949497Z", "last_refresh": "2023-11-30T23:15:59.564954Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2023-11-30T22:58:52.105721Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2023-11-30T22:58:59.793467Z", "last_refresh": "2023-11-30T23:15:56.214845Z", "ports": [8800], "running": 2, "size": 2}}] 2023-11-30T23:17:29.136 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2023-11-30T23:17:29.274 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:17:29 smithi038 conmon[81956]: cluster 2023-11-30T23:17:28.037742+0000 mgr.smithi038.ldalxq (mgr.14182) 1093 : cluster [DBG] pgmap v702: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 682 B/s rd, 0 op/s 2023-11-30T23:17:29.275 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:17:29 smithi038 conmon[81956]: audit 2023-11-30T23:17:28.610298+0000 mgr.smithi038.ldalxq (mgr.14182) 1094 : audit [DBG] from='client.15972 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-11-30T23:17:29.512 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:17:29 smithi167 conmon[87022]: cluster 2023-11-30T23:17:28.037742+0000 mgr.smithi038.ldalxq (mgr.14182) 1093 : cluster [DBG] pgmap v702: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 682 B/s rd, 0 op/s 2023-11-30T23:17:29.512 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:17:29 smithi167 conmon[87022]: audit 2023-11-30T23:17:28.610298+0000 mgr.smithi038.ldalxq (mgr.14182) 1094 : audit [DBG] from='client.15972 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-11-30T23:17:30.137 DEBUG:teuthology.orchestra.run.smithi038:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:0dc074ce0b0b3b4f393f56dd32ef36884ebf45a9 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 3faf8b00-8fd3-11ee-95a2-87774f69a715 -- ceph orch ls -f json 2023-11-30T23:17:31.274 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:17:31 smithi038 conmon[81956]: cluster 2023-11-30T23:17:30.038623+0000 mgr.smithi038.ldalxq (mgr.14182) 1095 : cluster [DBG] pgmap v703: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 682 B/s rd, 0 op/s 2023-11-30T23:17:31.512 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:17:31 smithi167 conmon[87022]: cluster 2023-11-30T23:17:30.038623+0000 mgr.smithi038.ldalxq (mgr.14182) 1095 : cluster [DBG] pgmap v703: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 682 B/s rd, 0 op/s 2023-11-30T23:17:31.872 INFO:teuthology.orchestra.run.smithi038.stdout: 2023-11-30T23:17:31.873 INFO:teuthology.orchestra.run.smithi038.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2023-11-30T22:54:47.122758Z", "last_refresh": "2023-11-30T23:15:59.564688Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2023-11-30T22:54:42.674972Z", "last_refresh": "2023-11-30T23:15:56.214205Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2023-11-30T22:54:45.114633Z", "last_refresh": "2023-11-30T23:15:59.564823Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2023-11-30T23:09:45.063688Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi167.ndkqyv on smithi167: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2023-11-30T23:12:23.150100Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi167.nhhxhd on smithi167: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi167-nhhxhd\n/bin/podman: stderr Error: error inspecting object: no such container ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi167-nhhxhd\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi167.nhhxhd\n/bin/podman: stderr Error: error inspecting object: no such container ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi167.nhhxhd\nDeploy daemon haproxy.nfs.foo.smithi167.nhhxhd ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi167 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2023-11-30T23:10:30Z\" level=warning msg=\"failed, retrying in 1s ... (1/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-11-30T23:11:08Z\" level=warning msg=\"failed, retrying in 1s ... (2/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-11-30T23:11:45Z\" level=warning msg=\"failed, retrying in 1s ... (3/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi167 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-11-30T23:14:53.155795Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi038.njeday on smithi038: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi038-njeday\n/bin/podman: stderr Error: error inspecting object: no such container ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi038-njeday\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi038.njeday\n/bin/podman: stderr Error: error inspecting object: no such container ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi038.njeday\nDeploy daemon haproxy.nfs.foo.smithi038.njeday ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi038 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2023-11-30T23:13:00Z\" level=warning msg=\"failed, retrying in 1s ... (1/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-11-30T23:13:38Z\" level=warning msg=\"failed, retrying in 1s ... (2/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-11-30T23:14:15Z\" level=warning msg=\"failed, retrying in 1s ... (3/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi038 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-11-30T23:14:53.157035Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi038.pwduyd on smithi038: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2023-11-30T23:14:53.158104Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi167.obmcvj on smithi167: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.38/16"}, "status": {"created": "2023-11-30T22:58:56.312786Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.38/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2023-11-30T22:54:41.668043Z", "last_refresh": "2023-11-30T23:15:56.214350Z", "running": 2, "size": 2}}, {"events": ["2023-11-30T22:55:50.759225Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi038:172.21.15.38=smithi038", "smithi167:172.21.15.167=smithi167"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2023-11-30T22:55:50.756456Z", "last_refresh": "2023-11-30T23:15:56.214426Z", "running": 2, "size": 2}}, {"events": ["2023-11-30T22:58:56.311581Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2023-11-30T22:58:56.308071Z", "last_refresh": "2023-11-30T23:15:59.565359Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2023-11-30T22:54:46.136630Z", "last_refresh": "2023-11-30T23:15:56.214508Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2023-11-30T22:56:33.258058Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2023-11-30T22:56:33.253117Z", "last_refresh": "2023-11-30T23:15:56.214583Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2023-11-30T22:54:43.949497Z", "last_refresh": "2023-11-30T23:15:59.564954Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2023-11-30T22:58:52.105721Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2023-11-30T22:58:59.793467Z", "last_refresh": "2023-11-30T23:15:56.214845Z", "ports": [8800], "running": 2, "size": 2}}] 2023-11-30T23:17:32.300 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2023-11-30T23:17:33.263 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:17:32 smithi167 conmon[87022]: audit 2023-11-30T23:17:31.868358+0000 mgr.smithi038.ldalxq (mgr.14182) 1096 : audit [DBG] 2023-11-30T23:17:33.263 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:17:32 smithi167 conmon[87022]: from='client.15976 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-11-30T23:17:33.263 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:17:32 smithi167 conmon[87022]: cluster 2023-11-30T23:17:32.039117+0000 mgr.smithi038.ldalxq (mgr.14182) 1097 : cluster [DBG] pgmap v704: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2023-11-30T23:17:33.274 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:17:32 smithi038 conmon[81956]: audit 2023-11-30T23:17:31.868358+0000 mgr.smithi038.ldalxq ( 2023-11-30T23:17:33.274 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:17:32 smithi038 conmon[81956]: mgr.14182) 1096 : audit [DBG] from='client.15976 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-11-30T23:17:33.274 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:17:32 smithi038 conmon[81956]: cluster 2023-11-30T23:17:32.039117+0000 mgr.smithi038.ldalxq (mgr.14182) 1097 : cluster [DBG] pgmap v704: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2023-11-30T23:17:33.301 DEBUG:teuthology.orchestra.run.smithi038:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:0dc074ce0b0b3b4f393f56dd32ef36884ebf45a9 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 3faf8b00-8fd3-11ee-95a2-87774f69a715 -- ceph orch ls -f json 2023-11-30T23:17:35.041 INFO:teuthology.orchestra.run.smithi038.stdout: 2023-11-30T23:17:35.041 INFO:teuthology.orchestra.run.smithi038.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2023-11-30T22:54:47.122758Z", "last_refresh": "2023-11-30T23:15:59.564688Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2023-11-30T22:54:42.674972Z", "last_refresh": "2023-11-30T23:15:56.214205Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2023-11-30T22:54:45.114633Z", "last_refresh": "2023-11-30T23:15:59.564823Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2023-11-30T23:09:45.063688Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi167.ndkqyv on smithi167: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2023-11-30T23:12:23.150100Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi167.nhhxhd on smithi167: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi167-nhhxhd\n/bin/podman: stderr Error: error inspecting object: no such container ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi167-nhhxhd\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi167.nhhxhd\n/bin/podman: stderr Error: error inspecting object: no such container ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi167.nhhxhd\nDeploy daemon haproxy.nfs.foo.smithi167.nhhxhd ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi167 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2023-11-30T23:10:30Z\" level=warning msg=\"failed, retrying in 1s ... (1/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-11-30T23:11:08Z\" level=warning msg=\"failed, retrying in 1s ... (2/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-11-30T23:11:45Z\" level=warning msg=\"failed, retrying in 1s ... (3/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi167 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-11-30T23:14:53.155795Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi038.njeday on smithi038: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi038-njeday\n/bin/podman: stderr Error: error inspecting object: no such container ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi038-njeday\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi038.njeday\n/bin/podman: stderr Error: error inspecting object: no such container ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi038.njeday\nDeploy daemon haproxy.nfs.foo.smithi038.njeday ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi038 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2023-11-30T23:13:00Z\" level=warning msg=\"failed, retrying in 1s ... (1/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-11-30T23:13:38Z\" level=warning msg=\"failed, retrying in 1s ... (2/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-11-30T23:14:15Z\" level=warning msg=\"failed, retrying in 1s ... (3/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi038 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-11-30T23:14:53.157035Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi038.pwduyd on smithi038: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2023-11-30T23:14:53.158104Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi167.obmcvj on smithi167: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.38/16"}, "status": {"created": "2023-11-30T22:58:56.312786Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.38/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2023-11-30T22:54:41.668043Z", "last_refresh": "2023-11-30T23:15:56.214350Z", "running": 2, "size": 2}}, {"events": ["2023-11-30T22:55:50.759225Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi038:172.21.15.38=smithi038", "smithi167:172.21.15.167=smithi167"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2023-11-30T22:55:50.756456Z", "last_refresh": "2023-11-30T23:15:56.214426Z", "running": 2, "size": 2}}, {"events": ["2023-11-30T22:58:56.311581Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2023-11-30T22:58:56.308071Z", "last_refresh": "2023-11-30T23:15:59.565359Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2023-11-30T22:54:46.136630Z", "last_refresh": "2023-11-30T23:15:56.214508Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2023-11-30T22:56:33.258058Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2023-11-30T22:56:33.253117Z", "last_refresh": "2023-11-30T23:15:56.214583Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2023-11-30T22:54:43.949497Z", "last_refresh": "2023-11-30T23:15:59.564954Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2023-11-30T22:58:52.105721Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2023-11-30T22:58:59.793467Z", "last_refresh": "2023-11-30T23:15:56.214845Z", "ports": [8800], "running": 2, "size": 2}}] 2023-11-30T23:17:35.452 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:17:35 smithi038 conmon[81956]: cluster 2023-11-30T23:17:34.039775+0000 mgr.smithi038.ldalxq (mgr.14182) 1098 : cluster [DBG] pgmap v705: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2023-11-30T23:17:35.459 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2023-11-30T23:17:35.512 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:17:35 smithi167 conmon[87022]: cluster 2023-11-30T23:17:34.039775+0000 mgr.smithi038.ldalxq (mgr.14182) 1098 : cluster [DBG] pgmap v705: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2023-11-30T23:17:35.512 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:17:35 smithi167 conmon[87022]: 2023-11-30T23:17:36.460 DEBUG:teuthology.orchestra.run.smithi038:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:0dc074ce0b0b3b4f393f56dd32ef36884ebf45a9 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 3faf8b00-8fd3-11ee-95a2-87774f69a715 -- ceph orch ls -f json 2023-11-30T23:17:36.492 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:17:36 smithi038 conmon[81956]: audit 2023-11-30T23:17:35.037077+0000 mgr.smithi038.ldalxq (mgr.14182) 1099 : audit [DBG] from='client.15980 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-11-30T23:17:36.512 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:17:36 smithi167 conmon[87022]: audit 2023-11-30T23:17:35.037077+0000 mgr.smithi038.ldalxq (mgr.14182) 1099 : audit [DBG] from='client.15980 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-11-30T23:17:37.274 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:17:37 smithi038 conmon[81956]: cluster 2023-11-30T23:17:36.040608+0000 mgr.smithi038.ldalxq (mgr.14182) 1100 : cluster [DBG] pgmap v706: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2023-11-30T23:17:37.512 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:17:37 smithi167 conmon[87022]: cluster 2023-11-30T23:17:36.040608+0000 mgr.smithi038.ldalxq (mgr.14182) 1100 : cluster [DBG] 2023-11-30T23:17:37.512 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:17:37 smithi167 conmon[87022]: pgmap v706: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2023-11-30T23:17:38.207 INFO:teuthology.orchestra.run.smithi038.stdout: 2023-11-30T23:17:38.207 INFO:teuthology.orchestra.run.smithi038.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2023-11-30T22:54:47.122758Z", "last_refresh": "2023-11-30T23:15:59.564688Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2023-11-30T22:54:42.674972Z", "last_refresh": "2023-11-30T23:15:56.214205Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2023-11-30T22:54:45.114633Z", "last_refresh": "2023-11-30T23:15:59.564823Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2023-11-30T23:09:45.063688Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi167.ndkqyv on smithi167: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2023-11-30T23:12:23.150100Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi167.nhhxhd on smithi167: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi167-nhhxhd\n/bin/podman: stderr Error: error inspecting object: no such container ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi167-nhhxhd\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi167.nhhxhd\n/bin/podman: stderr Error: error inspecting object: no such container ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi167.nhhxhd\nDeploy daemon haproxy.nfs.foo.smithi167.nhhxhd ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi167 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2023-11-30T23:10:30Z\" level=warning msg=\"failed, retrying in 1s ... (1/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-11-30T23:11:08Z\" level=warning msg=\"failed, retrying in 1s ... (2/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-11-30T23:11:45Z\" level=warning msg=\"failed, retrying in 1s ... (3/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi167 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-11-30T23:14:53.155795Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi038.njeday on smithi038: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi038-njeday\n/bin/podman: stderr Error: error inspecting object: no such container ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi038-njeday\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi038.njeday\n/bin/podman: stderr Error: error inspecting object: no such container ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi038.njeday\nDeploy daemon haproxy.nfs.foo.smithi038.njeday ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi038 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2023-11-30T23:13:00Z\" level=warning msg=\"failed, retrying in 1s ... (1/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-11-30T23:13:38Z\" level=warning msg=\"failed, retrying in 1s ... (2/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-11-30T23:14:15Z\" level=warning msg=\"failed, retrying in 1s ... (3/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi038 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-11-30T23:14:53.157035Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi038.pwduyd on smithi038: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2023-11-30T23:14:53.158104Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi167.obmcvj on smithi167: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.38/16"}, "status": {"created": "2023-11-30T22:58:56.312786Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.38/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2023-11-30T22:54:41.668043Z", "last_refresh": "2023-11-30T23:15:56.214350Z", "running": 2, "size": 2}}, {"events": ["2023-11-30T22:55:50.759225Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi038:172.21.15.38=smithi038", "smithi167:172.21.15.167=smithi167"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2023-11-30T22:55:50.756456Z", "last_refresh": "2023-11-30T23:15:56.214426Z", "running": 2, "size": 2}}, {"events": ["2023-11-30T22:58:56.311581Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2023-11-30T22:58:56.308071Z", "last_refresh": "2023-11-30T23:15:59.565359Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2023-11-30T22:54:46.136630Z", "last_refresh": "2023-11-30T23:15:56.214508Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2023-11-30T22:56:33.258058Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2023-11-30T22:56:33.253117Z", "last_refresh": "2023-11-30T23:15:56.214583Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2023-11-30T22:54:43.949497Z", "last_refresh": "2023-11-30T23:15:59.564954Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2023-11-30T22:58:52.105721Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2023-11-30T22:58:59.793467Z", "last_refresh": "2023-11-30T23:15:56.214845Z", "ports": [8800], "running": 2, "size": 2}}] 2023-11-30T23:17:38.624 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2023-11-30T23:17:39.274 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:17:39 smithi038 conmon[81956]: cluster 2023-11-30T23:17:38.041120+0000 2023-11-30T23:17:39.274 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:17:39 smithi038 conmon[81956]: mgr.smithi038.ldalxq (mgr.14182) 1101 : cluster [DBG] pgmap v707: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2023-11-30T23:17:39.274 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:17:39 smithi038 conmon[81956]: audit 2023-11-30T23:17:38.203329+0000 mgr.smithi038.ldalxq (mgr 2023-11-30T23:17:39.274 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:17:39 smithi038 conmon[81956]: .14182) 1102 : audit [DBG] from='client.15984 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-11-30T23:17:39.512 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:17:39 smithi167 conmon[87022]: cluster 2023-11-30T23:17:38.041120+0000 mgr.smithi038.ldalxq (mgr.14182) 1101 : cluster [DBG] pgmap v707: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2023-11-30T23:17:39.512 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:17:39 smithi167 conmon[87022]: audit 2023-11-30T23:17:38.203329+0000 mgr.smithi038.ldalxq (mgr.14182) 1102 : audit [DBG] from='client.15984 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-11-30T23:17:39.625 DEBUG:teuthology.orchestra.run.smithi038:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:0dc074ce0b0b3b4f393f56dd32ef36884ebf45a9 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 3faf8b00-8fd3-11ee-95a2-87774f69a715 -- ceph orch ls -f json 2023-11-30T23:17:41.274 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:17:41 smithi038 conmon[81956]: cluster 2023-11-30T23:17:40.041785+0000 2023-11-30T23:17:41.274 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:17:41 smithi038 conmon[81956]: mgr.smithi038.ldalxq (mgr.14182) 1103 : cluster [DBG] pgmap v708: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2023-11-30T23:17:41.346 INFO:teuthology.orchestra.run.smithi038.stdout: 2023-11-30T23:17:41.346 INFO:teuthology.orchestra.run.smithi038.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2023-11-30T22:54:47.122758Z", "last_refresh": "2023-11-30T23:15:59.564688Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2023-11-30T22:54:42.674972Z", "last_refresh": "2023-11-30T23:15:56.214205Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2023-11-30T22:54:45.114633Z", "last_refresh": "2023-11-30T23:15:59.564823Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2023-11-30T23:09:45.063688Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi167.ndkqyv on smithi167: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2023-11-30T23:12:23.150100Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi167.nhhxhd on smithi167: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi167-nhhxhd\n/bin/podman: stderr Error: error inspecting object: no such container ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi167-nhhxhd\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi167.nhhxhd\n/bin/podman: stderr Error: error inspecting object: no such container ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi167.nhhxhd\nDeploy daemon haproxy.nfs.foo.smithi167.nhhxhd ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi167 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2023-11-30T23:10:30Z\" level=warning msg=\"failed, retrying in 1s ... (1/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-11-30T23:11:08Z\" level=warning msg=\"failed, retrying in 1s ... (2/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-11-30T23:11:45Z\" level=warning msg=\"failed, retrying in 1s ... (3/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi167 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-11-30T23:14:53.155795Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi038.njeday on smithi038: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi038-njeday\n/bin/podman: stderr Error: error inspecting object: no such container ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi038-njeday\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi038.njeday\n/bin/podman: stderr Error: error inspecting object: no such container ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi038.njeday\nDeploy daemon haproxy.nfs.foo.smithi038.njeday ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi038 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2023-11-30T23:13:00Z\" level=warning msg=\"failed, retrying in 1s ... (1/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-11-30T23:13:38Z\" level=warning msg=\"failed, retrying in 1s ... (2/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-11-30T23:14:15Z\" level=warning msg=\"failed, retrying in 1s ... (3/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi038 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-11-30T23:14:53.157035Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi038.pwduyd on smithi038: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2023-11-30T23:14:53.158104Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi167.obmcvj on smithi167: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.38/16"}, "status": {"created": "2023-11-30T22:58:56.312786Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.38/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2023-11-30T22:54:41.668043Z", "last_refresh": "2023-11-30T23:15:56.214350Z", "running": 2, "size": 2}}, {"events": ["2023-11-30T22:55:50.759225Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi038:172.21.15.38=smithi038", "smithi167:172.21.15.167=smithi167"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2023-11-30T22:55:50.756456Z", "last_refresh": "2023-11-30T23:15:56.214426Z", "running": 2, "size": 2}}, {"events": ["2023-11-30T22:58:56.311581Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2023-11-30T22:58:56.308071Z", "last_refresh": "2023-11-30T23:15:59.565359Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2023-11-30T22:54:46.136630Z", "last_refresh": "2023-11-30T23:15:56.214508Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2023-11-30T22:56:33.258058Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2023-11-30T22:56:33.253117Z", "last_refresh": "2023-11-30T23:15:56.214583Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2023-11-30T22:54:43.949497Z", "last_refresh": "2023-11-30T23:15:59.564954Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2023-11-30T22:58:52.105721Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2023-11-30T22:58:59.793467Z", "last_refresh": "2023-11-30T23:15:56.214845Z", "ports": [8800], "running": 2, "size": 2}}] 2023-11-30T23:17:41.512 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:17:41 smithi167 conmon[87022]: cluster 2023-11-30T23:17:40.041785+0000 mgr.smithi038.ldalxq (mgr.14182) 1103 : cluster [DBG] pgmap v708: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2023-11-30T23:17:41.792 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2023-11-30T23:17:42.512 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:17:42 smithi167 conmon[87022]: audit 2023-11-30T23:17:41.341963+0000 mgr.smithi038.ldalxq (mgr.14182) 1104 : audit [DBG] from='client.15988 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-11-30T23:17:42.524 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:17:42 smithi038 conmon[81956]: audit 2023-11-30T23:17:41.341963+0000 mgr.smithi038.ldalxq (mgr.14182) 1104 : audit [DBG] from='client.15988 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-11-30T23:17:42.793 DEBUG:teuthology.orchestra.run.smithi038:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:0dc074ce0b0b3b4f393f56dd32ef36884ebf45a9 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 3faf8b00-8fd3-11ee-95a2-87774f69a715 -- ceph orch ls -f json 2023-11-30T23:17:43.387 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:17:43 smithi038 conmon[81956]: cluster 2023-11-30T23:17:42.042448+0000 2023-11-30T23:17:43.387 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:17:43 smithi038 conmon[81956]: mgr.smithi038.ldalxq (mgr.14182) 1105 : cluster [DBG] pgmap v709: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2023-11-30T23:17:43.512 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:17:43 smithi167 conmon[87022]: cluster 2023-11-30T23:17:42.042448+0000 mgr.smithi038.ldalxq (mgr.14182) 1105 : cluster [DBG] 2023-11-30T23:17:43.512 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:17:43 smithi167 conmon[87022]: pgmap v709: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2023-11-30T23:17:44.650 INFO:teuthology.orchestra.run.smithi038.stdout: 2023-11-30T23:17:44.650 INFO:teuthology.orchestra.run.smithi038.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2023-11-30T22:54:47.122758Z", "last_refresh": "2023-11-30T23:15:59.564688Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2023-11-30T22:54:42.674972Z", "last_refresh": "2023-11-30T23:15:56.214205Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2023-11-30T22:54:45.114633Z", "last_refresh": "2023-11-30T23:15:59.564823Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2023-11-30T23:09:45.063688Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi167.ndkqyv on smithi167: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2023-11-30T23:12:23.150100Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi167.nhhxhd on smithi167: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi167-nhhxhd\n/bin/podman: stderr Error: error inspecting object: no such container ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi167-nhhxhd\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi167.nhhxhd\n/bin/podman: stderr Error: error inspecting object: no such container ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi167.nhhxhd\nDeploy daemon haproxy.nfs.foo.smithi167.nhhxhd ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi167 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2023-11-30T23:10:30Z\" level=warning msg=\"failed, retrying in 1s ... (1/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-11-30T23:11:08Z\" level=warning msg=\"failed, retrying in 1s ... (2/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-11-30T23:11:45Z\" level=warning msg=\"failed, retrying in 1s ... (3/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi167 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-11-30T23:14:53.155795Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi038.njeday on smithi038: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi038-njeday\n/bin/podman: stderr Error: error inspecting object: no such container ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi038-njeday\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi038.njeday\n/bin/podman: stderr Error: error inspecting object: no such container ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi038.njeday\nDeploy daemon haproxy.nfs.foo.smithi038.njeday ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi038 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2023-11-30T23:13:00Z\" level=warning msg=\"failed, retrying in 1s ... (1/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-11-30T23:13:38Z\" level=warning msg=\"failed, retrying in 1s ... (2/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-11-30T23:14:15Z\" level=warning msg=\"failed, retrying in 1s ... (3/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi038 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-11-30T23:14:53.157035Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi038.pwduyd on smithi038: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2023-11-30T23:14:53.158104Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi167.obmcvj on smithi167: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.38/16"}, "status": {"created": "2023-11-30T22:58:56.312786Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.38/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2023-11-30T22:54:41.668043Z", "last_refresh": "2023-11-30T23:15:56.214350Z", "running": 2, "size": 2}}, {"events": ["2023-11-30T22:55:50.759225Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi038:172.21.15.38=smithi038", "smithi167:172.21.15.167=smithi167"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2023-11-30T22:55:50.756456Z", "last_refresh": "2023-11-30T23:15:56.214426Z", "running": 2, "size": 2}}, {"events": ["2023-11-30T22:58:56.311581Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2023-11-30T22:58:56.308071Z", "last_refresh": "2023-11-30T23:15:59.565359Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2023-11-30T22:54:46.136630Z", "last_refresh": "2023-11-30T23:15:56.214508Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2023-11-30T22:56:33.258058Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2023-11-30T22:56:33.253117Z", "last_refresh": "2023-11-30T23:15:56.214583Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2023-11-30T22:54:43.949497Z", "last_refresh": "2023-11-30T23:15:59.564954Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2023-11-30T22:58:52.105721Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2023-11-30T22:58:59.793467Z", "last_refresh": "2023-11-30T23:15:56.214845Z", "ports": [8800], "running": 2, "size": 2}}] 2023-11-30T23:17:45.042 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2023-11-30T23:17:45.512 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:17:45 smithi167 conmon[87022]: cluster 2023-11-30T23:17:44.042996+0000 mgr.smithi038.ldalxq (mgr.14182) 1106 : cluster [DBG] pgmap v710: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2023-11-30T23:17:45.512 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:17:45 smithi167 conmon[87022]: audit 2023-11-30T23:17:44.646077+0000 mgr.smithi038.ldalxq (mgr.14182) 1107 : audit [DBG] from='client.15992 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-11-30T23:17:45.524 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:17:45 smithi038 conmon[81956]: cluster 2023-11-30T23:17:44.042996+0000 mgr.smithi038.ldalxq (mgr.14182) 1106 : cluster [DBG] pgmap v710: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2023-11-30T23:17:45.524 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:17:45 smithi038 conmon[81956]: audit 2023-11-30T23:17:44.646077+0000 mgr.smithi038.ldalxq (mgr.14182) 1107 : audit [DBG] from='client.15992 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-11-30T23:17:46.043 DEBUG:teuthology.orchestra.run.smithi038:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:0dc074ce0b0b3b4f393f56dd32ef36884ebf45a9 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 3faf8b00-8fd3-11ee-95a2-87774f69a715 -- ceph orch ls -f json 2023-11-30T23:17:47.274 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:17:47 smithi038 conmon[81956]: cluster 2023-11-30T23:17:46.043810+0000 mgr.smithi038.ldalxq (mgr.14182) 1108 2023-11-30T23:17:47.274 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:17:47 smithi038 conmon[81956]: : cluster [DBG] pgmap v711: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2023-11-30T23:17:47.513 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:17:47 smithi167 conmon[87022]: cluster 2023-11-30T23:17:46.043810+0000 mgr.smithi038.ldalxq (mgr.14182) 1108 : cluster [DBG] pgmap v711: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2023-11-30T23:17:47.783 INFO:teuthology.orchestra.run.smithi038.stdout: 2023-11-30T23:17:47.783 INFO:teuthology.orchestra.run.smithi038.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2023-11-30T22:54:47.122758Z", "last_refresh": "2023-11-30T23:15:59.564688Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2023-11-30T22:54:42.674972Z", "last_refresh": "2023-11-30T23:15:56.214205Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2023-11-30T22:54:45.114633Z", "last_refresh": "2023-11-30T23:15:59.564823Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2023-11-30T23:09:45.063688Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi167.ndkqyv on smithi167: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2023-11-30T23:12:23.150100Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi167.nhhxhd on smithi167: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi167-nhhxhd\n/bin/podman: stderr Error: error inspecting object: no such container ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi167-nhhxhd\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi167.nhhxhd\n/bin/podman: stderr Error: error inspecting object: no such container ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi167.nhhxhd\nDeploy daemon haproxy.nfs.foo.smithi167.nhhxhd ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi167 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2023-11-30T23:10:30Z\" level=warning msg=\"failed, retrying in 1s ... (1/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-11-30T23:11:08Z\" level=warning msg=\"failed, retrying in 1s ... (2/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-11-30T23:11:45Z\" level=warning msg=\"failed, retrying in 1s ... (3/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi167 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-11-30T23:14:53.155795Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi038.njeday on smithi038: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi038-njeday\n/bin/podman: stderr Error: error inspecting object: no such container ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi038-njeday\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi038.njeday\n/bin/podman: stderr Error: error inspecting object: no such container ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi038.njeday\nDeploy daemon haproxy.nfs.foo.smithi038.njeday ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi038 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2023-11-30T23:13:00Z\" level=warning msg=\"failed, retrying in 1s ... (1/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-11-30T23:13:38Z\" level=warning msg=\"failed, retrying in 1s ... (2/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-11-30T23:14:15Z\" level=warning msg=\"failed, retrying in 1s ... (3/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi038 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-11-30T23:14:53.157035Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi038.pwduyd on smithi038: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2023-11-30T23:14:53.158104Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi167.obmcvj on smithi167: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.38/16"}, "status": {"created": "2023-11-30T22:58:56.312786Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.38/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2023-11-30T22:54:41.668043Z", "last_refresh": "2023-11-30T23:15:56.214350Z", "running": 2, "size": 2}}, {"events": ["2023-11-30T22:55:50.759225Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi038:172.21.15.38=smithi038", "smithi167:172.21.15.167=smithi167"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2023-11-30T22:55:50.756456Z", "last_refresh": "2023-11-30T23:15:56.214426Z", "running": 2, "size": 2}}, {"events": ["2023-11-30T22:58:56.311581Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2023-11-30T22:58:56.308071Z", "last_refresh": "2023-11-30T23:15:59.565359Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2023-11-30T22:54:46.136630Z", "last_refresh": "2023-11-30T23:15:56.214508Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2023-11-30T22:56:33.258058Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2023-11-30T22:56:33.253117Z", "last_refresh": "2023-11-30T23:15:56.214583Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2023-11-30T22:54:43.949497Z", "last_refresh": "2023-11-30T23:15:59.564954Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2023-11-30T22:58:52.105721Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2023-11-30T22:58:59.793467Z", "last_refresh": "2023-11-30T23:15:56.214845Z", "ports": [8800], "running": 2, "size": 2}}] 2023-11-30T23:17:48.193 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2023-11-30T23:17:48.512 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:17:48 smithi167 conmon[87022]: audit 2023-11-30T23:17:47.779519+0000 mgr.smithi038.ldalxq (mgr.14182) 1109 : audit [DBG] from='client.15996 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-11-30T23:17:48.524 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:17:48 smithi038 conmon[81956]: audit 2023-11-30T23:17:47.779519+0000 mgr.smithi038.ldalxq ( 2023-11-30T23:17:48.524 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:17:48 smithi038 conmon[81956]: mgr.14182) 1109 : audit [DBG] from='client.15996 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-11-30T23:17:49.194 DEBUG:teuthology.orchestra.run.smithi038:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:0dc074ce0b0b3b4f393f56dd32ef36884ebf45a9 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 3faf8b00-8fd3-11ee-95a2-87774f69a715 -- ceph orch ls -f json 2023-11-30T23:17:49.225 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:17:49 smithi038 conmon[81956]: cluster 2023-11-30T23:17:48.044358+0000 mgr.smithi038.ldalxq 2023-11-30T23:17:49.225 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:17:49 smithi038 conmon[81956]: (mgr.14182) 1110 : cluster [DBG] pgmap v712: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2023-11-30T23:17:49.512 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:17:49 smithi167 conmon[87022]: cluster 2023-11-30T23:17:48.044358+0000 mgr.smithi038.ldalxq (mgr.14182) 1110 : cluster [DBG] 2023-11-30T23:17:49.512 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:17:49 smithi167 conmon[87022]: pgmap v712: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2023-11-30T23:17:50.948 INFO:teuthology.orchestra.run.smithi038.stdout: 2023-11-30T23:17:50.948 INFO:teuthology.orchestra.run.smithi038.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2023-11-30T22:54:47.122758Z", "last_refresh": "2023-11-30T23:15:59.564688Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2023-11-30T22:54:42.674972Z", "last_refresh": "2023-11-30T23:15:56.214205Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2023-11-30T22:54:45.114633Z", "last_refresh": "2023-11-30T23:15:59.564823Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2023-11-30T23:09:45.063688Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi167.ndkqyv on smithi167: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2023-11-30T23:12:23.150100Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi167.nhhxhd on smithi167: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi167-nhhxhd\n/bin/podman: stderr Error: error inspecting object: no such container ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi167-nhhxhd\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi167.nhhxhd\n/bin/podman: stderr Error: error inspecting object: no such container ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi167.nhhxhd\nDeploy daemon haproxy.nfs.foo.smithi167.nhhxhd ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi167 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2023-11-30T23:10:30Z\" level=warning msg=\"failed, retrying in 1s ... (1/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-11-30T23:11:08Z\" level=warning msg=\"failed, retrying in 1s ... (2/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-11-30T23:11:45Z\" level=warning msg=\"failed, retrying in 1s ... (3/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi167 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-11-30T23:14:53.155795Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi038.njeday on smithi038: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi038-njeday\n/bin/podman: stderr Error: error inspecting object: no such container ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi038-njeday\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi038.njeday\n/bin/podman: stderr Error: error inspecting object: no such container ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi038.njeday\nDeploy daemon haproxy.nfs.foo.smithi038.njeday ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi038 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2023-11-30T23:13:00Z\" level=warning msg=\"failed, retrying in 1s ... (1/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-11-30T23:13:38Z\" level=warning msg=\"failed, retrying in 1s ... (2/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-11-30T23:14:15Z\" level=warning msg=\"failed, retrying in 1s ... (3/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi038 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-11-30T23:14:53.157035Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi038.pwduyd on smithi038: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2023-11-30T23:14:53.158104Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi167.obmcvj on smithi167: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.38/16"}, "status": {"created": "2023-11-30T22:58:56.312786Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.38/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2023-11-30T22:54:41.668043Z", "last_refresh": "2023-11-30T23:15:56.214350Z", "running": 2, "size": 2}}, {"events": ["2023-11-30T22:55:50.759225Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi038:172.21.15.38=smithi038", "smithi167:172.21.15.167=smithi167"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2023-11-30T22:55:50.756456Z", "last_refresh": "2023-11-30T23:15:56.214426Z", "running": 2, "size": 2}}, {"events": ["2023-11-30T22:58:56.311581Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2023-11-30T22:58:56.308071Z", "last_refresh": "2023-11-30T23:15:59.565359Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2023-11-30T22:54:46.136630Z", "last_refresh": "2023-11-30T23:15:56.214508Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2023-11-30T22:56:33.258058Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2023-11-30T22:56:33.253117Z", "last_refresh": "2023-11-30T23:15:56.214583Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2023-11-30T22:54:43.949497Z", "last_refresh": "2023-11-30T23:15:59.564954Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2023-11-30T22:58:52.105721Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2023-11-30T22:58:59.793467Z", "last_refresh": "2023-11-30T23:15:56.214845Z", "ports": [8800], "running": 2, "size": 2}}] 2023-11-30T23:17:51.274 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:17:51 smithi038 conmon[81956]: cluster 2023-11-30T23:17:50.045347+0000 mgr.smithi038.ldalxq (mgr.14182) 1111 : cluster [DBG] pgmap v713: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2023-11-30T23:17:51.356 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2023-11-30T23:17:51.512 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:17:51 smithi167 conmon[87022]: cluster 2023-11-30T23:17:50.045347+0000 mgr.smithi038.ldalxq (mgr.14182) 1111 : cluster [DBG] pgmap v713: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2023-11-30T23:17:52.357 DEBUG:teuthology.orchestra.run.smithi038:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:0dc074ce0b0b3b4f393f56dd32ef36884ebf45a9 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 3faf8b00-8fd3-11ee-95a2-87774f69a715 -- ceph orch ls -f json 2023-11-30T23:17:52.512 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:17:52 smithi167 conmon[87022]: audit 2023-11-30T23:17:50.943451+0000 mgr.smithi038.ldalxq (mgr.14182) 1112 : audit [DBG] from='client.16000 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-11-30T23:17:52.524 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:17:52 smithi038 conmon[81956]: audit 2023-11-30T23:17:50.943451+0000 mgr.smithi038.ldalxq (mgr.14182) 1112 : audit [DBG] from='client.16000 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-11-30T23:17:53.448 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:17:53 smithi038 conmon[81956]: cluster 2023-11-30T23:17:52.045945+0000 mgr.smithi038.ldalxq (mgr.14182) 1113 : cluster [DBG] pgmap v714: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2023-11-30T23:17:53.512 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:17:53 smithi167 conmon[87022]: cluster 2023-11-30T23:17:52.045945+0000 mgr.smithi038.ldalxq (mgr.14182) 1113 : cluster [DBG] 2023-11-30T23:17:53.512 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:17:53 smithi167 conmon[87022]: pgmap v714: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2023-11-30T23:17:54.083 INFO:teuthology.orchestra.run.smithi038.stdout: 2023-11-30T23:17:54.084 INFO:teuthology.orchestra.run.smithi038.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2023-11-30T22:54:47.122758Z", "last_refresh": "2023-11-30T23:15:59.564688Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2023-11-30T22:54:42.674972Z", "last_refresh": "2023-11-30T23:15:56.214205Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2023-11-30T22:54:45.114633Z", "last_refresh": "2023-11-30T23:15:59.564823Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2023-11-30T23:09:45.063688Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi167.ndkqyv on smithi167: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2023-11-30T23:12:23.150100Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi167.nhhxhd on smithi167: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi167-nhhxhd\n/bin/podman: stderr Error: error inspecting object: no such container ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi167-nhhxhd\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi167.nhhxhd\n/bin/podman: stderr Error: error inspecting object: no such container ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi167.nhhxhd\nDeploy daemon haproxy.nfs.foo.smithi167.nhhxhd ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi167 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2023-11-30T23:10:30Z\" level=warning msg=\"failed, retrying in 1s ... (1/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-11-30T23:11:08Z\" level=warning msg=\"failed, retrying in 1s ... (2/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-11-30T23:11:45Z\" level=warning msg=\"failed, retrying in 1s ... (3/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi167 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-11-30T23:14:53.155795Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi038.njeday on smithi038: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi038-njeday\n/bin/podman: stderr Error: error inspecting object: no such container ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi038-njeday\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi038.njeday\n/bin/podman: stderr Error: error inspecting object: no such container ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi038.njeday\nDeploy daemon haproxy.nfs.foo.smithi038.njeday ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi038 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2023-11-30T23:13:00Z\" level=warning msg=\"failed, retrying in 1s ... (1/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-11-30T23:13:38Z\" level=warning msg=\"failed, retrying in 1s ... (2/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-11-30T23:14:15Z\" level=warning msg=\"failed, retrying in 1s ... (3/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi038 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-11-30T23:14:53.157035Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi038.pwduyd on smithi038: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2023-11-30T23:14:53.158104Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi167.obmcvj on smithi167: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.38/16"}, "status": {"created": "2023-11-30T22:58:56.312786Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.38/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2023-11-30T22:54:41.668043Z", "last_refresh": "2023-11-30T23:15:56.214350Z", "running": 2, "size": 2}}, {"events": ["2023-11-30T22:55:50.759225Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi038:172.21.15.38=smithi038", "smithi167:172.21.15.167=smithi167"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2023-11-30T22:55:50.756456Z", "last_refresh": "2023-11-30T23:15:56.214426Z", "running": 2, "size": 2}}, {"events": ["2023-11-30T22:58:56.311581Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2023-11-30T22:58:56.308071Z", "last_refresh": "2023-11-30T23:15:59.565359Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2023-11-30T22:54:46.136630Z", "last_refresh": "2023-11-30T23:15:56.214508Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2023-11-30T22:56:33.258058Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2023-11-30T22:56:33.253117Z", "last_refresh": "2023-11-30T23:15:56.214583Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2023-11-30T22:54:43.949497Z", "last_refresh": "2023-11-30T23:15:59.564954Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2023-11-30T22:58:52.105721Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2023-11-30T22:58:59.793467Z", "last_refresh": "2023-11-30T23:15:56.214845Z", "ports": [8800], "running": 2, "size": 2}}] 2023-11-30T23:17:54.519 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2023-11-30T23:17:55.512 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:17:55 smithi167 conmon[87022]: cluster 2023-11-30T23:17:54.046618+0000 mgr.smithi038.ldalxq (mgr.14182) 1114 : cluster [DBG] pgmap v715: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2023-11-30T23:17:55.512 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:17:55 smithi167 conmon[87022]: audit 2023-11-30T23:17:54.079409+0000 mgr.smithi038.ldalxq (mgr.14182) 1115 : audit [DBG] from='client.16004 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-11-30T23:17:55.520 DEBUG:teuthology.orchestra.run.smithi038:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:0dc074ce0b0b3b4f393f56dd32ef36884ebf45a9 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 3faf8b00-8fd3-11ee-95a2-87774f69a715 -- ceph orch ls -f json 2023-11-30T23:17:55.524 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:17:55 smithi038 conmon[81956]: cluster 2023-11-30T23:17:54.046618+0000 mgr.smithi038.ldalxq ( 2023-11-30T23:17:55.524 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:17:55 smithi038 conmon[81956]: mgr.14182) 1114 : cluster [DBG] pgmap v715: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2023-11-30T23:17:55.524 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:17:55 smithi038 conmon[81956]: audit 2023-11-30T23:17:54.079409+0000 mgr.smithi038.ldalxq (mgr.14182) 1115 : audit [DBG] from='client.16004 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-11-30T23:17:57.274 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:17:57 smithi038 conmon[81956]: cluster 2023-11-30T23:17:56.047324+0000 mgr.smithi038.ldalxq (mgr.14182) 1116 : cluster [DBG] pgmap v716: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2023-11-30T23:17:57.389 INFO:teuthology.orchestra.run.smithi038.stdout: 2023-11-30T23:17:57.390 INFO:teuthology.orchestra.run.smithi038.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2023-11-30T22:54:47.122758Z", "last_refresh": "2023-11-30T23:15:59.564688Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2023-11-30T22:54:42.674972Z", "last_refresh": "2023-11-30T23:15:56.214205Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2023-11-30T22:54:45.114633Z", "last_refresh": "2023-11-30T23:15:59.564823Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2023-11-30T23:09:45.063688Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi167.ndkqyv on smithi167: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2023-11-30T23:12:23.150100Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi167.nhhxhd on smithi167: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi167-nhhxhd\n/bin/podman: stderr Error: error inspecting object: no such container ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi167-nhhxhd\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi167.nhhxhd\n/bin/podman: stderr Error: error inspecting object: no such container ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi167.nhhxhd\nDeploy daemon haproxy.nfs.foo.smithi167.nhhxhd ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi167 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2023-11-30T23:10:30Z\" level=warning msg=\"failed, retrying in 1s ... (1/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-11-30T23:11:08Z\" level=warning msg=\"failed, retrying in 1s ... (2/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-11-30T23:11:45Z\" level=warning msg=\"failed, retrying in 1s ... (3/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi167 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-11-30T23:14:53.155795Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi038.njeday on smithi038: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi038-njeday\n/bin/podman: stderr Error: error inspecting object: no such container ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi038-njeday\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi038.njeday\n/bin/podman: stderr Error: error inspecting object: no such container ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi038.njeday\nDeploy daemon haproxy.nfs.foo.smithi038.njeday ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi038 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2023-11-30T23:13:00Z\" level=warning msg=\"failed, retrying in 1s ... (1/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-11-30T23:13:38Z\" level=warning msg=\"failed, retrying in 1s ... (2/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-11-30T23:14:15Z\" level=warning msg=\"failed, retrying in 1s ... (3/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi038 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-11-30T23:14:53.157035Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi038.pwduyd on smithi038: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2023-11-30T23:14:53.158104Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi167.obmcvj on smithi167: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.38/16"}, "status": {"created": "2023-11-30T22:58:56.312786Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.38/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2023-11-30T22:54:41.668043Z", "last_refresh": "2023-11-30T23:15:56.214350Z", "running": 2, "size": 2}}, {"events": ["2023-11-30T22:55:50.759225Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi038:172.21.15.38=smithi038", "smithi167:172.21.15.167=smithi167"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2023-11-30T22:55:50.756456Z", "last_refresh": "2023-11-30T23:15:56.214426Z", "running": 2, "size": 2}}, {"events": ["2023-11-30T22:58:56.311581Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2023-11-30T22:58:56.308071Z", "last_refresh": "2023-11-30T23:15:59.565359Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2023-11-30T22:54:46.136630Z", "last_refresh": "2023-11-30T23:15:56.214508Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2023-11-30T22:56:33.258058Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2023-11-30T22:56:33.253117Z", "last_refresh": "2023-11-30T23:15:56.214583Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2023-11-30T22:54:43.949497Z", "last_refresh": "2023-11-30T23:15:59.564954Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2023-11-30T22:58:52.105721Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2023-11-30T22:58:59.793467Z", "last_refresh": "2023-11-30T23:15:56.214845Z", "ports": [8800], "running": 2, "size": 2}}] 2023-11-30T23:17:57.512 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:17:57 smithi167 conmon[87022]: cluster 2023-11-30T23:17:56.047324+0000 mgr.smithi038.ldalxq (mgr.14182) 1116 : cluster [DBG] pgmap v716: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2023-11-30T23:17:57.784 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2023-11-30T23:17:58.512 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:17:58 smithi167 conmon[87022]: audit 2023-11-30T23:17:57.385825+0000 mgr.smithi038.ldalxq (mgr.14182) 1117 : audit [DBG] from='client.16008 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-11-30T23:17:58.524 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:17:58 smithi038 conmon[81956]: audit 2023-11-30T23:17:57.385825+0000 mgr.smithi038.ldalxq (mgr.14182) 1117 : audit [DBG] from='client.16008 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-11-30T23:17:58.785 DEBUG:teuthology.orchestra.run.smithi038:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:0dc074ce0b0b3b4f393f56dd32ef36884ebf45a9 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 3faf8b00-8fd3-11ee-95a2-87774f69a715 -- ceph orch ls -f json 2023-11-30T23:17:59.512 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:17:59 smithi167 conmon[87022]: cluster 2023-11-30T23:17:58.047862+0000 mgr.smithi038.ldalxq (mgr.14182) 1118 : cluster [DBG] 2023-11-30T23:17:59.512 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:17:59 smithi167 conmon[87022]: pgmap v717: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2023-11-30T23:17:59.523 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:17:59 smithi038 conmon[81956]: cluster 2023-11-30T23:17:58.047862+0000 mgr.smithi038.ldalxq (mgr.14182) 1118 : cluster [DBG] pgmap v717: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2023-11-30T23:18:00.744 INFO:teuthology.orchestra.run.smithi038.stdout: 2023-11-30T23:18:00.744 INFO:teuthology.orchestra.run.smithi038.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2023-11-30T22:54:47.122758Z", "last_refresh": "2023-11-30T23:15:59.564688Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2023-11-30T22:54:42.674972Z", "last_refresh": "2023-11-30T23:15:56.214205Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2023-11-30T22:54:45.114633Z", "last_refresh": "2023-11-30T23:15:59.564823Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2023-11-30T23:09:45.063688Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi167.ndkqyv on smithi167: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2023-11-30T23:12:23.150100Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi167.nhhxhd on smithi167: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi167-nhhxhd\n/bin/podman: stderr Error: error inspecting object: no such container ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi167-nhhxhd\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi167.nhhxhd\n/bin/podman: stderr Error: error inspecting object: no such container ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi167.nhhxhd\nDeploy daemon haproxy.nfs.foo.smithi167.nhhxhd ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi167 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2023-11-30T23:10:30Z\" level=warning msg=\"failed, retrying in 1s ... (1/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-11-30T23:11:08Z\" level=warning msg=\"failed, retrying in 1s ... (2/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-11-30T23:11:45Z\" level=warning msg=\"failed, retrying in 1s ... (3/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi167 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-11-30T23:14:53.155795Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi038.njeday on smithi038: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi038-njeday\n/bin/podman: stderr Error: error inspecting object: no such container ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi038-njeday\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi038.njeday\n/bin/podman: stderr Error: error inspecting object: no such container ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi038.njeday\nDeploy daemon haproxy.nfs.foo.smithi038.njeday ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi038 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2023-11-30T23:13:00Z\" level=warning msg=\"failed, retrying in 1s ... (1/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-11-30T23:13:38Z\" level=warning msg=\"failed, retrying in 1s ... (2/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-11-30T23:14:15Z\" level=warning msg=\"failed, retrying in 1s ... (3/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi038 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-11-30T23:14:53.157035Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi038.pwduyd on smithi038: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2023-11-30T23:14:53.158104Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi167.obmcvj on smithi167: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.38/16"}, "status": {"created": "2023-11-30T22:58:56.312786Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.38/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2023-11-30T22:54:41.668043Z", "last_refresh": "2023-11-30T23:15:56.214350Z", "running": 2, "size": 2}}, {"events": ["2023-11-30T22:55:50.759225Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi038:172.21.15.38=smithi038", "smithi167:172.21.15.167=smithi167"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2023-11-30T22:55:50.756456Z", "last_refresh": "2023-11-30T23:15:56.214426Z", "running": 2, "size": 2}}, {"events": ["2023-11-30T22:58:56.311581Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2023-11-30T22:58:56.308071Z", "last_refresh": "2023-11-30T23:15:59.565359Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2023-11-30T22:54:46.136630Z", "last_refresh": "2023-11-30T23:15:56.214508Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2023-11-30T22:56:33.258058Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2023-11-30T22:56:33.253117Z", "last_refresh": "2023-11-30T23:15:56.214583Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2023-11-30T22:54:43.949497Z", "last_refresh": "2023-11-30T23:15:59.564954Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2023-11-30T22:58:52.105721Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2023-11-30T22:58:59.793467Z", "last_refresh": "2023-11-30T23:15:56.214845Z", "ports": [8800], "running": 2, "size": 2}}] 2023-11-30T23:18:01.132 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2023-11-30T23:18:01.512 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:18:01 smithi167 conmon[87022]: cluster 2023-11-30T23:18:00.048529+0000 mgr.smithi038.ldalxq (mgr.14182) 1119 : cluster [DBG] pgmap v718: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2023-11-30T23:18:01.512 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:18:01 smithi167 conmon[87022]: audit 2023-11-30T23:18:00.739714+0000 mgr.smithi038.ldalxq (mgr.14182) 1120 : audit [DBG] from='client.16012 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-11-30T23:18:01.524 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:18:01 smithi038 conmon[81956]: cluster 2023-11-30T23:18:00.048529+0000 mgr.smithi038.ldalxq (mgr.14182) 1119 : cluster [DBG] pgmap v718: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2023-11-30T23:18:01.524 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:18:01 smithi038 conmon[81956]: audit 2023-11-30T23:18:00.739714+0000 mgr.smithi038.ldalxq (mgr.14182) 1120 : audit [DBG] from='client.16012 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-11-30T23:18:02.133 DEBUG:teuthology.orchestra.run.smithi038:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:0dc074ce0b0b3b4f393f56dd32ef36884ebf45a9 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 3faf8b00-8fd3-11ee-95a2-87774f69a715 -- ceph orch ls -f json 2023-11-30T23:18:03.024 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:18:02 smithi038 conmon[81956]: cluster 2023-11-30T23:18:02.049264+0000 mgr.smithi038.ldalxq 2023-11-30T23:18:03.024 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:18:02 smithi038 conmon[81956]: (mgr.14182) 1121 : cluster [DBG] pgmap v719: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2023-11-30T23:18:03.262 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:18:02 smithi167 conmon[87022]: cluster 2023-11-30T23:18:02.049264+0000 mgr.smithi038.ldalxq (mgr.14182) 1121 : cluster [DBG] pgmap v719: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2023-11-30T23:18:03.846 INFO:teuthology.orchestra.run.smithi038.stdout: 2023-11-30T23:18:03.846 INFO:teuthology.orchestra.run.smithi038.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2023-11-30T22:54:47.122758Z", "last_refresh": "2023-11-30T23:15:59.564688Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2023-11-30T22:54:42.674972Z", "last_refresh": "2023-11-30T23:15:56.214205Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2023-11-30T22:54:45.114633Z", "last_refresh": "2023-11-30T23:15:59.564823Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2023-11-30T23:09:45.063688Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi167.ndkqyv on smithi167: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2023-11-30T23:12:23.150100Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi167.nhhxhd on smithi167: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi167-nhhxhd\n/bin/podman: stderr Error: error inspecting object: no such container ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi167-nhhxhd\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi167.nhhxhd\n/bin/podman: stderr Error: error inspecting object: no such container ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi167.nhhxhd\nDeploy daemon haproxy.nfs.foo.smithi167.nhhxhd ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi167 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2023-11-30T23:10:30Z\" level=warning msg=\"failed, retrying in 1s ... (1/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-11-30T23:11:08Z\" level=warning msg=\"failed, retrying in 1s ... (2/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-11-30T23:11:45Z\" level=warning msg=\"failed, retrying in 1s ... (3/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi167 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-11-30T23:14:53.155795Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi038.njeday on smithi038: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi038-njeday\n/bin/podman: stderr Error: error inspecting object: no such container ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi038-njeday\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi038.njeday\n/bin/podman: stderr Error: error inspecting object: no such container ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi038.njeday\nDeploy daemon haproxy.nfs.foo.smithi038.njeday ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi038 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2023-11-30T23:13:00Z\" level=warning msg=\"failed, retrying in 1s ... (1/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-11-30T23:13:38Z\" level=warning msg=\"failed, retrying in 1s ... (2/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-11-30T23:14:15Z\" level=warning msg=\"failed, retrying in 1s ... (3/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi038 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-11-30T23:14:53.157035Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi038.pwduyd on smithi038: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2023-11-30T23:14:53.158104Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi167.obmcvj on smithi167: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.38/16"}, "status": {"created": "2023-11-30T22:58:56.312786Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.38/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2023-11-30T22:54:41.668043Z", "last_refresh": "2023-11-30T23:15:56.214350Z", "running": 2, "size": 2}}, {"events": ["2023-11-30T22:55:50.759225Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi038:172.21.15.38=smithi038", "smithi167:172.21.15.167=smithi167"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2023-11-30T22:55:50.756456Z", "last_refresh": "2023-11-30T23:15:56.214426Z", "running": 2, "size": 2}}, {"events": ["2023-11-30T22:58:56.311581Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2023-11-30T22:58:56.308071Z", "last_refresh": "2023-11-30T23:15:59.565359Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2023-11-30T22:54:46.136630Z", "last_refresh": "2023-11-30T23:15:56.214508Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2023-11-30T22:56:33.258058Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2023-11-30T22:56:33.253117Z", "last_refresh": "2023-11-30T23:15:56.214583Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2023-11-30T22:54:43.949497Z", "last_refresh": "2023-11-30T23:15:59.564954Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2023-11-30T22:58:52.105721Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2023-11-30T22:58:59.793467Z", "last_refresh": "2023-11-30T23:15:56.214845Z", "ports": [8800], "running": 2, "size": 2}}] 2023-11-30T23:18:04.278 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2023-11-30T23:18:05.279 DEBUG:teuthology.orchestra.run.smithi038:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:0dc074ce0b0b3b4f393f56dd32ef36884ebf45a9 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 3faf8b00-8fd3-11ee-95a2-87774f69a715 -- ceph orch ls -f json 2023-11-30T23:18:05.512 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:18:05 smithi167 conmon[87022]: audit 2023-11-30T23:18:03.842195+0000 mgr.smithi038.ldalxq (mgr.14182) 1122 : audit [DBG] from='client.16016 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-11-30T23:18:05.512 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:18:05 smithi167 conmon[87022]: cluster 2023-11-30T23:18:04.049771+0000 mgr.smithi038.ldalxq (mgr.14182) 1123 : cluster [DBG] pgmap v720: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2023-11-30T23:18:05.524 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:18:05 smithi038 conmon[81956]: audit 2023-11-30T23:18:03.842195+0000 mgr.smithi038.ldalxq (mgr.14182) 1122 : audit [DBG] from='client.16016 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-11-30T23:18:05.524 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:18:05 smithi038 conmon[81956]: cluster 2023-11-30T23:18:04.049771+0000 mgr.smithi038.ldalxq (mgr.14182) 1123 : cluster [DBG] pgmap v720: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2023-11-30T23:18:07.014 INFO:teuthology.orchestra.run.smithi038.stdout: 2023-11-30T23:18:07.014 INFO:teuthology.orchestra.run.smithi038.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2023-11-30T22:54:47.122758Z", "last_refresh": "2023-11-30T23:15:59.564688Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2023-11-30T22:54:42.674972Z", "last_refresh": "2023-11-30T23:15:56.214205Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2023-11-30T22:54:45.114633Z", "last_refresh": "2023-11-30T23:15:59.564823Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2023-11-30T23:09:45.063688Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi167.ndkqyv on smithi167: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2023-11-30T23:12:23.150100Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi167.nhhxhd on smithi167: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi167-nhhxhd\n/bin/podman: stderr Error: error inspecting object: no such container ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi167-nhhxhd\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi167.nhhxhd\n/bin/podman: stderr Error: error inspecting object: no such container ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi167.nhhxhd\nDeploy daemon haproxy.nfs.foo.smithi167.nhhxhd ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi167 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2023-11-30T23:10:30Z\" level=warning msg=\"failed, retrying in 1s ... (1/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-11-30T23:11:08Z\" level=warning msg=\"failed, retrying in 1s ... (2/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-11-30T23:11:45Z\" level=warning msg=\"failed, retrying in 1s ... (3/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi167 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-11-30T23:14:53.155795Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi038.njeday on smithi038: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi038-njeday\n/bin/podman: stderr Error: error inspecting object: no such container ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi038-njeday\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi038.njeday\n/bin/podman: stderr Error: error inspecting object: no such container ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi038.njeday\nDeploy daemon haproxy.nfs.foo.smithi038.njeday ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi038 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2023-11-30T23:13:00Z\" level=warning msg=\"failed, retrying in 1s ... (1/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-11-30T23:13:38Z\" level=warning msg=\"failed, retrying in 1s ... (2/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-11-30T23:14:15Z\" level=warning msg=\"failed, retrying in 1s ... (3/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi038 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-11-30T23:14:53.157035Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi038.pwduyd on smithi038: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2023-11-30T23:14:53.158104Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi167.obmcvj on smithi167: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.38/16"}, "status": {"created": "2023-11-30T22:58:56.312786Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.38/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2023-11-30T22:54:41.668043Z", "last_refresh": "2023-11-30T23:15:56.214350Z", "running": 2, "size": 2}}, {"events": ["2023-11-30T22:55:50.759225Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi038:172.21.15.38=smithi038", "smithi167:172.21.15.167=smithi167"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2023-11-30T22:55:50.756456Z", "last_refresh": "2023-11-30T23:15:56.214426Z", "running": 2, "size": 2}}, {"events": ["2023-11-30T22:58:56.311581Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2023-11-30T22:58:56.308071Z", "last_refresh": "2023-11-30T23:15:59.565359Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2023-11-30T22:54:46.136630Z", "last_refresh": "2023-11-30T23:15:56.214508Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2023-11-30T22:56:33.258058Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2023-11-30T22:56:33.253117Z", "last_refresh": "2023-11-30T23:15:56.214583Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2023-11-30T22:54:43.949497Z", "last_refresh": "2023-11-30T23:15:59.564954Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2023-11-30T22:58:52.105721Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2023-11-30T22:58:59.793467Z", "last_refresh": "2023-11-30T23:15:56.214845Z", "ports": [8800], "running": 2, "size": 2}}] 2023-11-30T23:18:07.361 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:18:07 smithi038 conmon[81956]: cluster 2023-11-30T23:18:06.050489+0000 2023-11-30T23:18:07.361 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:18:07 smithi038 conmon[81956]: mgr.smithi038.ldalxq (mgr.14182) 1124 : cluster [DBG] pgmap v721: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2023-11-30T23:18:07.443 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2023-11-30T23:18:07.512 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:18:07 smithi167 conmon[87022]: cluster 2023-11-30T23:18:06.050489+0000 mgr.smithi038.ldalxq (mgr.14182) 1124 : cluster [DBG] pgmap v721: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2023-11-30T23:18:08.444 DEBUG:teuthology.orchestra.run.smithi038:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:0dc074ce0b0b3b4f393f56dd32ef36884ebf45a9 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 3faf8b00-8fd3-11ee-95a2-87774f69a715 -- ceph orch ls -f json 2023-11-30T23:18:08.475 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:18:08 smithi038 conmon[81956]: audit 2023-11-30T23:18:07.010187+0000 mgr.smithi038.ldalxq (mgr.14182) 1125 : audit [DBG] from='client.16020 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-11-30T23:18:08.512 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:18:08 smithi167 conmon[87022]: audit 2023-11-30T23:18:07.010187+0000 mgr.smithi038.ldalxq (mgr.14182) 1125 : audit [DBG] from='client.16020 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-11-30T23:18:09.208 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:18:09 smithi038 conmon[81956]: cluster 2023-11-30T23:18:08. 2023-11-30T23:18:09.208 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:18:09 smithi038 conmon[81956]: 051164+0000 mgr.smithi038.ldalxq (mgr.14182) 1126 : cluster [DBG] pgmap v722: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2023-11-30T23:18:09.513 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:18:09 smithi167 conmon[87022]: cluster 2023-11-30T23:18:08.051164+0000 mgr.smithi038.ldalxq (mgr.14182) 1126 : cluster [DBG] pgmap v722: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2023-11-30T23:18:09.513 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:18:09 smithi167 conmon[87022]: 2023-11-30T23:18:10.213 INFO:teuthology.orchestra.run.smithi038.stdout: 2023-11-30T23:18:11.104 INFO:teuthology.orchestra.run.smithi038.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2023-11-30T22:54:47.122758Z", "last_refresh": "2023-11-30T23:15:59.564688Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2023-11-30T22:54:42.674972Z", "last_refresh": "2023-11-30T23:15:56.214205Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2023-11-30T22:54:45.114633Z", "last_refresh": "2023-11-30T23:15:59.564823Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2023-11-30T23:09:45.063688Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi167.ndkqyv on smithi167: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2023-11-30T23:12:23.150100Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi167.nhhxhd on smithi167: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi167-nhhxhd\n/bin/podman: stderr Error: error inspecting object: no such container ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi167-nhhxhd\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi167.nhhxhd\n/bin/podman: stderr Error: error inspecting object: no such container ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi167.nhhxhd\nDeploy daemon haproxy.nfs.foo.smithi167.nhhxhd ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi167 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2023-11-30T23:10:30Z\" level=warning msg=\"failed, retrying in 1s ... (1/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-11-30T23:11:08Z\" level=warning msg=\"failed, retrying in 1s ... (2/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-11-30T23:11:45Z\" level=warning msg=\"failed, retrying in 1s ... (3/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi167 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-11-30T23:14:53.155795Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi038.njeday on smithi038: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi038-njeday\n/bin/podman: stderr Error: error inspecting object: no such container ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi038-njeday\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi038.njeday\n/bin/podman: stderr Error: error inspecting object: no such container ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi038.njeday\nDeploy daemon haproxy.nfs.foo.smithi038.njeday ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi038 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2023-11-30T23:13:00Z\" level=warning msg=\"failed, retrying in 1s ... (1/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-11-30T23:13:38Z\" level=warning msg=\"failed, retrying in 1s ... (2/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-11-30T23:14:15Z\" level=warning msg=\"failed, retrying in 1s ... (3/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi038 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-11-30T23:14:53.157035Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi038.pwduyd on smithi038: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2023-11-30T23:14:53.158104Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi167.obmcvj on smithi167: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.38/16"}, "status": {"created": "2023-11-30T22:58:56.312786Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.38/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2023-11-30T22:54:41.668043Z", "last_refresh": "2023-11-30T23:15:56.214350Z", "running": 2, "size": 2}}, {"events": ["2023-11-30T22:55:50.759225Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi038:172.21.15.38=smithi038", "smithi167:172.21.15.167=smithi167"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2023-11-30T22:55:50.756456Z", "last_refresh": "2023-11-30T23:15:56.214426Z", "running": 2, "size": 2}}, {"events": ["2023-11-30T22:58:56.311581Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2023-11-30T22:58:56.308071Z", "last_refresh": "2023-11-30T23:15:59.565359Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2023-11-30T22:54:46.136630Z", "last_refresh": "2023-11-30T23:15:56.214508Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2023-11-30T22:56:33.258058Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2023-11-30T22:56:33.253117Z", "last_refresh": "2023-11-30T23:15:56.214583Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2023-11-30T22:54:43.949497Z", "last_refresh": "2023-11-30T23:15:59.564954Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2023-11-30T22:58:52.105721Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2023-11-30T22:58:59.793467Z", "last_refresh": "2023-11-30T23:15:56.214845Z", "ports": [8800], "running": 2, "size": 2}}] 2023-11-30T23:18:11.106 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2023-11-30T23:18:11.512 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:18:11 smithi167 conmon[87022]: cluster 2023-11-30T23:18:10.051818+0000 mgr.smithi038.ldalxq (mgr.14182) 1127 : cluster 2023-11-30T23:18:11.512 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:18:11 smithi167 conmon[87022]: [DBG] pgmap v723: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2023-11-30T23:18:11.512 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:18:11 smithi167 conmon[87022]: audit 2023-11-30T23:18:10.208978+0000 mgr.smithi038.ldalxq (mgr.14182) 1128 : audit [DBG] from='client.16024 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-11-30T23:18:11.524 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:18:11 smithi038 conmon[81956]: cluster 2023-11-30T23:18:10.051818+0000 mgr.smithi038.ldalxq ( 2023-11-30T23:18:11.524 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:18:11 smithi038 conmon[81956]: mgr.14182) 1127 : cluster [DBG] pgmap v723: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2023-11-30T23:18:11.524 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:18:11 smithi038 conmon[81956]: audit 2023-11-30T23:18:10.208978+0000 mgr.smithi038.ldalxq (mgr.14182) 1128 : audit [DBG] from='client.16024 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-11-30T23:18:12.107 DEBUG:teuthology.orchestra.run.smithi038:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:0dc074ce0b0b3b4f393f56dd32ef36884ebf45a9 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 3faf8b00-8fd3-11ee-95a2-87774f69a715 -- ceph orch ls -f json 2023-11-30T23:18:15.067 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:18:12 smithi038 conmon[81956]: cluster 2023-11-30T23:18:12.052579+0000 mgr.smithi038.ldalxq (mgr.14182) 1129 : cluster [DBG] pgmap v724: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2023-11-30T23:18:15.068 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:18:12 smithi167 conmon[87022]: cluster 2023-11-30T23:18:12.052579+0000 mgr.smithi038.ldalxq (mgr.14182) 2023-11-30T23:18:15.068 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:18:12 smithi167 conmon[87022]: 1129 : cluster [DBG] pgmap v724: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2023-11-30T23:18:15.512 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:18:15 smithi167 conmon[87022]: cluster 2023-11-30T23:18:14.053289+0000 mgr.smithi038.ldalxq (mgr.14182) 2023-11-30T23:18:15.512 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:18:15 smithi167 conmon[87022]: 1130 : cluster [DBG] pgmap v725: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2023-11-30T23:18:15.524 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:18:15 smithi038 conmon[81956]: cluster 2023-11-30T23:18:14.053289+0000 mgr.smithi038.ldalxq (mgr.14182 2023-11-30T23:18:15.524 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:18:15 smithi038 conmon[81956]: ) 1130 : cluster [DBG] pgmap v725: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2023-11-30T23:18:16.781 INFO:teuthology.orchestra.run.smithi038.stdout: 2023-11-30T23:18:16.781 INFO:teuthology.orchestra.run.smithi038.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2023-11-30T22:54:47.122758Z", "last_refresh": "2023-11-30T23:15:59.564688Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2023-11-30T22:54:42.674972Z", "last_refresh": "2023-11-30T23:15:56.214205Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2023-11-30T22:54:45.114633Z", "last_refresh": "2023-11-30T23:15:59.564823Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2023-11-30T23:09:45.063688Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi167.ndkqyv on smithi167: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2023-11-30T23:12:23.150100Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi167.nhhxhd on smithi167: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi167-nhhxhd\n/bin/podman: stderr Error: error inspecting object: no such container ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi167-nhhxhd\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi167.nhhxhd\n/bin/podman: stderr Error: error inspecting object: no such container ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi167.nhhxhd\nDeploy daemon haproxy.nfs.foo.smithi167.nhhxhd ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi167 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2023-11-30T23:10:30Z\" level=warning msg=\"failed, retrying in 1s ... (1/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-11-30T23:11:08Z\" level=warning msg=\"failed, retrying in 1s ... (2/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-11-30T23:11:45Z\" level=warning msg=\"failed, retrying in 1s ... (3/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi167 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-11-30T23:14:53.155795Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi038.njeday on smithi038: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi038-njeday\n/bin/podman: stderr Error: error inspecting object: no such container ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi038-njeday\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi038.njeday\n/bin/podman: stderr Error: error inspecting object: no such container ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi038.njeday\nDeploy daemon haproxy.nfs.foo.smithi038.njeday ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi038 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2023-11-30T23:13:00Z\" level=warning msg=\"failed, retrying in 1s ... (1/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-11-30T23:13:38Z\" level=warning msg=\"failed, retrying in 1s ... (2/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-11-30T23:14:15Z\" level=warning msg=\"failed, retrying in 1s ... (3/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi038 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-11-30T23:14:53.157035Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi038.pwduyd on smithi038: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2023-11-30T23:14:53.158104Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi167.obmcvj on smithi167: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.38/16"}, "status": {"created": "2023-11-30T22:58:56.312786Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.38/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2023-11-30T22:54:41.668043Z", "last_refresh": "2023-11-30T23:15:56.214350Z", "running": 2, "size": 2}}, {"events": ["2023-11-30T22:55:50.759225Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi038:172.21.15.38=smithi038", "smithi167:172.21.15.167=smithi167"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2023-11-30T22:55:50.756456Z", "last_refresh": "2023-11-30T23:15:56.214426Z", "running": 2, "size": 2}}, {"events": ["2023-11-30T22:58:56.311581Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2023-11-30T22:58:56.308071Z", "last_refresh": "2023-11-30T23:15:59.565359Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2023-11-30T22:54:46.136630Z", "last_refresh": "2023-11-30T23:15:56.214508Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2023-11-30T22:56:33.258058Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2023-11-30T22:56:33.253117Z", "last_refresh": "2023-11-30T23:15:56.214583Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2023-11-30T22:54:43.949497Z", "last_refresh": "2023-11-30T23:15:59.564954Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2023-11-30T22:58:52.105721Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2023-11-30T22:58:59.793467Z", "last_refresh": "2023-11-30T23:15:56.214845Z", "ports": [8800], "running": 2, "size": 2}}] 2023-11-30T23:18:17.231 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2023-11-30T23:18:17.512 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:18:17 smithi167 conmon[87022]: cluster 2023-11-30T23:18:16.054015+0000 mgr.smithi038.ldalxq (mgr.14182) 1131 : cluster [DBG] pgmap v726: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2023-11-30T23:18:17.512 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:18:17 smithi167 conmon[87022]: audit 2023-11-30T23:18:16.777024+0000 mgr.smithi038.ldalxq (mgr.14182) 1132 : audit [DBG] from='client.16028 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-11-30T23:18:17.524 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:18:17 smithi038 conmon[81956]: cluster 2023-11-30T23:18:16.054015+0000 mgr.smithi038.ldalxq (mgr.14182) 1131 : cluster [DBG] pgmap v726: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2023-11-30T23:18:17.524 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:18:17 smithi038 conmon[81956]: audit 2023-11-30T23:18:16.777024+0000 mgr.smithi038.ldalxq (mgr.14182) 1132 : audit [DBG] from='client.16028 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-11-30T23:18:18.232 DEBUG:teuthology.orchestra.run.smithi038:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:0dc074ce0b0b3b4f393f56dd32ef36884ebf45a9 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 3faf8b00-8fd3-11ee-95a2-87774f69a715 -- ceph orch ls -f json 2023-11-30T23:18:19.391 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:18:19 smithi038 conmon[81956]: cluster 2023-11-30T23:18:18.054628+0000 mgr.smithi038.ldalxq (mgr.14182) 1133 : cluster [DBG] pgmap v727: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2023-11-30T23:18:19.512 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:18:19 smithi167 conmon[87022]: cluster 2023-11-30T23:18:18.054628+0000 mgr.smithi038.ldalxq (mgr.14182) 1133 : cluster [DBG] 2023-11-30T23:18:19.512 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:18:19 smithi167 conmon[87022]: pgmap v727: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2023-11-30T23:18:20.086 INFO:teuthology.orchestra.run.smithi038.stdout: 2023-11-30T23:18:20.086 INFO:teuthology.orchestra.run.smithi038.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2023-11-30T22:54:47.122758Z", "last_refresh": "2023-11-30T23:15:59.564688Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2023-11-30T22:54:42.674972Z", "last_refresh": "2023-11-30T23:15:56.214205Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2023-11-30T22:54:45.114633Z", "last_refresh": "2023-11-30T23:15:59.564823Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2023-11-30T23:09:45.063688Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi167.ndkqyv on smithi167: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2023-11-30T23:12:23.150100Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi167.nhhxhd on smithi167: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi167-nhhxhd\n/bin/podman: stderr Error: error inspecting object: no such container ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi167-nhhxhd\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi167.nhhxhd\n/bin/podman: stderr Error: error inspecting object: no such container ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi167.nhhxhd\nDeploy daemon haproxy.nfs.foo.smithi167.nhhxhd ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi167 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2023-11-30T23:10:30Z\" level=warning msg=\"failed, retrying in 1s ... (1/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-11-30T23:11:08Z\" level=warning msg=\"failed, retrying in 1s ... (2/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-11-30T23:11:45Z\" level=warning msg=\"failed, retrying in 1s ... (3/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi167 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-11-30T23:14:53.155795Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi038.njeday on smithi038: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi038-njeday\n/bin/podman: stderr Error: error inspecting object: no such container ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi038-njeday\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi038.njeday\n/bin/podman: stderr Error: error inspecting object: no such container ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi038.njeday\nDeploy daemon haproxy.nfs.foo.smithi038.njeday ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi038 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2023-11-30T23:13:00Z\" level=warning msg=\"failed, retrying in 1s ... (1/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-11-30T23:13:38Z\" level=warning msg=\"failed, retrying in 1s ... (2/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-11-30T23:14:15Z\" level=warning msg=\"failed, retrying in 1s ... (3/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi038 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-11-30T23:14:53.157035Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi038.pwduyd on smithi038: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2023-11-30T23:14:53.158104Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi167.obmcvj on smithi167: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.38/16"}, "status": {"created": "2023-11-30T22:58:56.312786Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.38/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2023-11-30T22:54:41.668043Z", "last_refresh": "2023-11-30T23:15:56.214350Z", "running": 2, "size": 2}}, {"events": ["2023-11-30T22:55:50.759225Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi038:172.21.15.38=smithi038", "smithi167:172.21.15.167=smithi167"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2023-11-30T22:55:50.756456Z", "last_refresh": "2023-11-30T23:15:56.214426Z", "running": 2, "size": 2}}, {"events": ["2023-11-30T22:58:56.311581Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2023-11-30T22:58:56.308071Z", "last_refresh": "2023-11-30T23:15:59.565359Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2023-11-30T22:54:46.136630Z", "last_refresh": "2023-11-30T23:15:56.214508Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2023-11-30T22:56:33.258058Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2023-11-30T22:56:33.253117Z", "last_refresh": "2023-11-30T23:15:56.214583Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2023-11-30T22:54:43.949497Z", "last_refresh": "2023-11-30T23:15:59.564954Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2023-11-30T22:58:52.105721Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2023-11-30T22:58:59.793467Z", "last_refresh": "2023-11-30T23:15:56.214845Z", "ports": [8800], "running": 2, "size": 2}}] 2023-11-30T23:18:20.571 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2023-11-30T23:18:21.512 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:18:21 smithi167 conmon[87022]: cluster 2023-11-30T23:18:20.055365+0000 mgr.smithi038.ldalxq (mgr.14182) 1134 : cluster [DBG] pgmap v728: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2023-11-30T23:18:21.512 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:18:21 smithi167 conmon[87022]: audit 2023-11-30T23:18:20.081861+0000 mgr.smithi038.ldalxq (mgr.14182) 1135 : audit [DBG] from='client.16032 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-11-30T23:18:21.524 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:18:21 smithi038 conmon[81956]: cluster 2023-11-30T23:18:20.055365+0000 mgr.smithi038.ldalxq (mgr.14182) 1134 : cluster [DBG] pgmap v728: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2023-11-30T23:18:21.524 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:18:21 smithi038 conmon[81956]: audit 2023-11-30T23:18:20.081861+0000 mgr.smithi038.ldalxq (mgr.14182) 1135 : audit [DBG] from='client.16032 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-11-30T23:18:21.572 DEBUG:teuthology.orchestra.run.smithi038:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:0dc074ce0b0b3b4f393f56dd32ef36884ebf45a9 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 3faf8b00-8fd3-11ee-95a2-87774f69a715 -- ceph orch ls -f json 2023-11-30T23:18:23.236 INFO:teuthology.orchestra.run.smithi038.stdout: 2023-11-30T23:18:23.236 INFO:teuthology.orchestra.run.smithi038.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2023-11-30T22:54:47.122758Z", "last_refresh": "2023-11-30T23:15:59.564688Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2023-11-30T22:54:42.674972Z", "last_refresh": "2023-11-30T23:15:56.214205Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2023-11-30T22:54:45.114633Z", "last_refresh": "2023-11-30T23:15:59.564823Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2023-11-30T23:09:45.063688Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi167.ndkqyv on smithi167: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2023-11-30T23:12:23.150100Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi167.nhhxhd on smithi167: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi167-nhhxhd\n/bin/podman: stderr Error: error inspecting object: no such container ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi167-nhhxhd\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi167.nhhxhd\n/bin/podman: stderr Error: error inspecting object: no such container ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi167.nhhxhd\nDeploy daemon haproxy.nfs.foo.smithi167.nhhxhd ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi167 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2023-11-30T23:10:30Z\" level=warning msg=\"failed, retrying in 1s ... (1/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-11-30T23:11:08Z\" level=warning msg=\"failed, retrying in 1s ... (2/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-11-30T23:11:45Z\" level=warning msg=\"failed, retrying in 1s ... (3/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi167 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-11-30T23:14:53.155795Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi038.njeday on smithi038: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi038-njeday\n/bin/podman: stderr Error: error inspecting object: no such container ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi038-njeday\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi038.njeday\n/bin/podman: stderr Error: error inspecting object: no such container ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi038.njeday\nDeploy daemon haproxy.nfs.foo.smithi038.njeday ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi038 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2023-11-30T23:13:00Z\" level=warning msg=\"failed, retrying in 1s ... (1/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-11-30T23:13:38Z\" level=warning msg=\"failed, retrying in 1s ... (2/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-11-30T23:14:15Z\" level=warning msg=\"failed, retrying in 1s ... (3/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi038 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-11-30T23:14:53.157035Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi038.pwduyd on smithi038: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2023-11-30T23:14:53.158104Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi167.obmcvj on smithi167: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.38/16"}, "status": {"created": "2023-11-30T22:58:56.312786Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.38/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2023-11-30T22:54:41.668043Z", "last_refresh": "2023-11-30T23:15:56.214350Z", "running": 2, "size": 2}}, {"events": ["2023-11-30T22:55:50.759225Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi038:172.21.15.38=smithi038", "smithi167:172.21.15.167=smithi167"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2023-11-30T22:55:50.756456Z", "last_refresh": "2023-11-30T23:15:56.214426Z", "running": 2, "size": 2}}, {"events": ["2023-11-30T22:58:56.311581Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2023-11-30T22:58:56.308071Z", "last_refresh": "2023-11-30T23:15:59.565359Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2023-11-30T22:54:46.136630Z", "last_refresh": "2023-11-30T23:15:56.214508Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2023-11-30T22:56:33.258058Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2023-11-30T22:56:33.253117Z", "last_refresh": "2023-11-30T23:15:56.214583Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2023-11-30T22:54:43.949497Z", "last_refresh": "2023-11-30T23:15:59.564954Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2023-11-30T22:58:52.105721Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2023-11-30T22:58:59.793467Z", "last_refresh": "2023-11-30T23:15:56.214845Z", "ports": [8800], "running": 2, "size": 2}}] 2023-11-30T23:18:23.262 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:18:22 smithi167 conmon[87022]: cluster 2023-11-30T23:18:22.055872+0000 mgr.smithi038.ldalxq (mgr.14182) 1136 : cluster [DBG] pgmap v729: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2023-11-30T23:18:23.265 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:18:22 smithi038 conmon[81956]: cluster 2023-11-30T23:18:22.055872+0000 mgr.smithi038.ldalxq (mgr.14182) 1136 : cluster [DBG] pgmap v729: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2023-11-30T23:18:23.738 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2023-11-30T23:18:24.262 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:18:23 smithi167 conmon[87022]: audit 2023-11-30T23:18:23.231679+0000 mgr.smithi038.ldalxq (mgr.14182) 1137 : audit [DBG] from='client.16036 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-11-30T23:18:24.262 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:18:23 smithi167 conmon[87022]: 2023-11-30T23:18:24.273 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:18:23 smithi038 conmon[81956]: audit 2023-11-30T23:18:24.274 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:18:23 smithi038 conmon[81956]: 2023-11-30T23:18:23.231679+0000 mgr.smithi038.ldalxq (mgr.14182) 1137 : audit [DBG] from='client.16036 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-11-30T23:18:24.738 DEBUG:teuthology.orchestra.run.smithi038:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:0dc074ce0b0b3b4f393f56dd32ef36884ebf45a9 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 3faf8b00-8fd3-11ee-95a2-87774f69a715 -- ceph orch ls -f json 2023-11-30T23:18:25.024 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:18:24 smithi038 conmon[81956]: cluster 2023-11-30T23:18:24 2023-11-30T23:18:25.024 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:18:24 smithi038 conmon[81956]: .056447+0000 mgr.smithi038.ldalxq (mgr.14182) 1138 : cluster [DBG] pgmap v730: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2023-11-30T23:18:25.262 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:18:24 smithi167 conmon[87022]: cluster 2023-11-30T23:18:24.056447+0000 mgr.smithi038.ldalxq (mgr.14182) 1138 : cluster [DBG] pgmap v730: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2023-11-30T23:18:26.460 INFO:teuthology.orchestra.run.smithi038.stdout: 2023-11-30T23:18:26.461 INFO:teuthology.orchestra.run.smithi038.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2023-11-30T22:54:47.122758Z", "last_refresh": "2023-11-30T23:15:59.564688Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2023-11-30T22:54:42.674972Z", "last_refresh": "2023-11-30T23:15:56.214205Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2023-11-30T22:54:45.114633Z", "last_refresh": "2023-11-30T23:15:59.564823Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2023-11-30T23:09:45.063688Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi167.ndkqyv on smithi167: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2023-11-30T23:12:23.150100Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi167.nhhxhd on smithi167: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi167-nhhxhd\n/bin/podman: stderr Error: error inspecting object: no such container ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi167-nhhxhd\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi167.nhhxhd\n/bin/podman: stderr Error: error inspecting object: no such container ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi167.nhhxhd\nDeploy daemon haproxy.nfs.foo.smithi167.nhhxhd ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi167 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2023-11-30T23:10:30Z\" level=warning msg=\"failed, retrying in 1s ... (1/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-11-30T23:11:08Z\" level=warning msg=\"failed, retrying in 1s ... (2/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-11-30T23:11:45Z\" level=warning msg=\"failed, retrying in 1s ... (3/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi167 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-11-30T23:14:53.155795Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi038.njeday on smithi038: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi038-njeday\n/bin/podman: stderr Error: error inspecting object: no such container ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi038-njeday\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi038.njeday\n/bin/podman: stderr Error: error inspecting object: no such container ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi038.njeday\nDeploy daemon haproxy.nfs.foo.smithi038.njeday ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi038 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2023-11-30T23:13:00Z\" level=warning msg=\"failed, retrying in 1s ... (1/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-11-30T23:13:38Z\" level=warning msg=\"failed, retrying in 1s ... (2/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-11-30T23:14:15Z\" level=warning msg=\"failed, retrying in 1s ... (3/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi038 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-11-30T23:14:53.157035Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi038.pwduyd on smithi038: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2023-11-30T23:14:53.158104Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi167.obmcvj on smithi167: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.38/16"}, "status": {"created": "2023-11-30T22:58:56.312786Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.38/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2023-11-30T22:54:41.668043Z", "last_refresh": "2023-11-30T23:15:56.214350Z", "running": 2, "size": 2}}, {"events": ["2023-11-30T22:55:50.759225Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi038:172.21.15.38=smithi038", "smithi167:172.21.15.167=smithi167"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2023-11-30T22:55:50.756456Z", "last_refresh": "2023-11-30T23:15:56.214426Z", "running": 2, "size": 2}}, {"events": ["2023-11-30T22:58:56.311581Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2023-11-30T22:58:56.308071Z", "last_refresh": "2023-11-30T23:15:59.565359Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2023-11-30T22:54:46.136630Z", "last_refresh": "2023-11-30T23:15:56.214508Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2023-11-30T22:56:33.258058Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2023-11-30T22:56:33.253117Z", "last_refresh": "2023-11-30T23:15:56.214583Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2023-11-30T22:54:43.949497Z", "last_refresh": "2023-11-30T23:15:59.564954Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2023-11-30T22:58:52.105721Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2023-11-30T22:58:59.793467Z", "last_refresh": "2023-11-30T23:15:56.214845Z", "ports": [8800], "running": 2, "size": 2}}] 2023-11-30T23:18:26.900 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2023-11-30T23:18:27.512 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:18:27 smithi167 conmon[87022]: cluster 2023-11-30T23:18:26.057138+0000 mgr.smithi038.ldalxq (mgr.14182) 1139 : cluster [DBG] pgmap v731: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2023-11-30T23:18:27.512 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:18:27 smithi167 conmon[87022]: audit 2023-11-30T23:18:26.456544+0000 mgr.smithi038.ldalxq (mgr.14182) 1140 : audit [DBG] from='client.16040 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-11-30T23:18:27.524 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:18:27 smithi038 conmon[81956]: cluster 2023-11-30T23:18:26.057138+0000 mgr.smithi038.ldalxq (mgr.14182) 1139 : cluster [DBG] pgmap v731: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2023-11-30T23:18:27.524 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:18:27 smithi038 conmon[81956]: audit 2023-11-30T23:18:26.456544+0000 mgr.smithi038.ldalxq (mgr.14182) 1140 : audit [DBG] from='client.16040 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-11-30T23:18:27.901 DEBUG:teuthology.orchestra.run.smithi038:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:0dc074ce0b0b3b4f393f56dd32ef36884ebf45a9 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 3faf8b00-8fd3-11ee-95a2-87774f69a715 -- ceph orch ls -f json 2023-11-30T23:18:29.274 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:18:29 smithi038 conmon[81956]: cluster 2023-11-30T23:18:28. 2023-11-30T23:18:29.274 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:18:29 smithi038 conmon[81956]: 057665+0000 mgr.smithi038.ldalxq (mgr.14182) 1141 : cluster [DBG] pgmap v732: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2023-11-30T23:18:29.512 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:18:29 smithi167 conmon[87022]: cluster 2023-11-30T23:18:28.057665+0000 mgr.smithi038.ldalxq (mgr.14182) 1141 : cluster [DBG] pgmap v732: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2023-11-30T23:18:29.513 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:18:29 smithi167 conmon[87022]: 2023-11-30T23:18:29.728 INFO:teuthology.orchestra.run.smithi038.stdout: 2023-11-30T23:18:29.728 INFO:teuthology.orchestra.run.smithi038.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2023-11-30T22:54:47.122758Z", "last_refresh": "2023-11-30T23:15:59.564688Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2023-11-30T22:54:42.674972Z", "last_refresh": "2023-11-30T23:15:56.214205Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2023-11-30T22:54:45.114633Z", "last_refresh": "2023-11-30T23:15:59.564823Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2023-11-30T23:09:45.063688Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi167.ndkqyv on smithi167: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2023-11-30T23:12:23.150100Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi167.nhhxhd on smithi167: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi167-nhhxhd\n/bin/podman: stderr Error: error inspecting object: no such container ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi167-nhhxhd\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi167.nhhxhd\n/bin/podman: stderr Error: error inspecting object: no such container ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi167.nhhxhd\nDeploy daemon haproxy.nfs.foo.smithi167.nhhxhd ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi167 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2023-11-30T23:10:30Z\" level=warning msg=\"failed, retrying in 1s ... (1/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-11-30T23:11:08Z\" level=warning msg=\"failed, retrying in 1s ... (2/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-11-30T23:11:45Z\" level=warning msg=\"failed, retrying in 1s ... (3/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi167 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-11-30T23:14:53.155795Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi038.njeday on smithi038: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi038-njeday\n/bin/podman: stderr Error: error inspecting object: no such container ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi038-njeday\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi038.njeday\n/bin/podman: stderr Error: error inspecting object: no such container ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi038.njeday\nDeploy daemon haproxy.nfs.foo.smithi038.njeday ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi038 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2023-11-30T23:13:00Z\" level=warning msg=\"failed, retrying in 1s ... (1/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-11-30T23:13:38Z\" level=warning msg=\"failed, retrying in 1s ... (2/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-11-30T23:14:15Z\" level=warning msg=\"failed, retrying in 1s ... (3/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi038 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-11-30T23:14:53.157035Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi038.pwduyd on smithi038: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2023-11-30T23:14:53.158104Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi167.obmcvj on smithi167: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.38/16"}, "status": {"created": "2023-11-30T22:58:56.312786Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.38/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2023-11-30T22:54:41.668043Z", "last_refresh": "2023-11-30T23:15:56.214350Z", "running": 2, "size": 2}}, {"events": ["2023-11-30T22:55:50.759225Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi038:172.21.15.38=smithi038", "smithi167:172.21.15.167=smithi167"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2023-11-30T22:55:50.756456Z", "last_refresh": "2023-11-30T23:15:56.214426Z", "running": 2, "size": 2}}, {"events": ["2023-11-30T22:58:56.311581Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2023-11-30T22:58:56.308071Z", "last_refresh": "2023-11-30T23:15:59.565359Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2023-11-30T22:54:46.136630Z", "last_refresh": "2023-11-30T23:15:56.214508Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2023-11-30T22:56:33.258058Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2023-11-30T22:56:33.253117Z", "last_refresh": "2023-11-30T23:15:56.214583Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2023-11-30T22:54:43.949497Z", "last_refresh": "2023-11-30T23:15:59.564954Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2023-11-30T22:58:52.105721Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2023-11-30T22:58:59.793467Z", "last_refresh": "2023-11-30T23:15:56.214845Z", "ports": [8800], "running": 2, "size": 2}}] 2023-11-30T23:18:30.152 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2023-11-30T23:18:30.512 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:18:30 smithi167 conmon[87022]: audit 2023-11-30T23:18:29.724104+0000 mgr.smithi038.ldalxq (mgr.14182) 1142 : audit [DBG] from='client.16044 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-11-30T23:18:30.512 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:18:30 smithi167 conmon[87022]: audit 2023-11-30T23:18:29.794383+0000 mon.smithi038 (mon.0) 730 : audit [INF] from='mgr.14182 172.21.15.38:0/2999689707' entity='mgr.smithi038.ldalxq' cmd=[{"prefix": "auth rm", "entity": "client.ingress.nfs.foo.smithi167.ktqzxw"}]: dispatch 2023-11-30T23:18:30.524 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:18:30 smithi038 conmon[81956]: audit 2023-11-30T23:18:29.724104+0000 mgr.smithi038.ldalxq (mgr. 2023-11-30T23:18:30.524 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:18:30 smithi038 conmon[81956]: 14182) 1142 : audit [DBG] from='client.16044 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-11-30T23:18:30.524 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:18:30 smithi038 conmon[81956]: audit 2023-11-30T23:18:29.794383+0000 mon.smithi038 (mon.0) 730 : audit [INF] from='mgr.14182 172.21.15.38:0/2999689707' entity='mgr.smithi038.ldalxq' cmd=[{"prefix": "auth rm", "entity": "client.ingress.nfs.foo.smithi167.ktqzxw"}]: dispatch 2023-11-30T23:18:31.153 DEBUG:teuthology.orchestra.run.smithi038:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:0dc074ce0b0b3b4f393f56dd32ef36884ebf45a9 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 3faf8b00-8fd3-11ee-95a2-87774f69a715 -- ceph orch ls -f json 2023-11-30T23:18:31.512 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:18:31 smithi167 conmon[87022]: cephadm 2023-11-30T23:18:29.793815+0000 mgr.smithi038.ldalxq (mgr 2023-11-30T23:18:31.512 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:18:31 smithi167 conmon[87022]: .14182) 1143 : cephadm [ERR] cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi167-ktqzxw 2023-11-30T23:18:31.512 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:18:31 smithi167 conmon[87022]: /bin/podman: stderr Error: error inspecting object: no such container ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi167-ktqzxw 2023-11-30T23:18:31.513 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:18:31 smithi167 conmon[87022]: Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi167.ktqzxw 2023-11-30T23:18:31.513 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:18:31 smithi167 conmon[87022]: /bin/podman: stderr Error: error inspecting object: no such container ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi167.ktqzxw 2023-11-30T23:18:31.513 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:18:31 smithi167 conmon[87022]: Deploy daemon haproxy.nfs.foo.smithi167.ktqzxw ... 2023-11-30T23:18:31.513 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:18:31 smithi167 conmon[87022]: Non-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi167 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2023-11-30T23:18:31.513 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:18:31 smithi167 conmon[87022]: stat: stderr Trying to pull docker.io/library/haproxy:2.3... 2023-11-30T23:18:31.513 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:18:31 smithi167 conmon[87022]: stat: stderr time="2023-11-30T23:16:36Z" level=warning msg="failed, retrying in 1s ... (1/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit" 2023-11-30T23:18:31.513 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:18:31 smithi167 conmon[87022]: stat: stderr time="2023-11-30T23:17:14Z" level=warning msg="failed, retrying in 1s ... (2/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit" 2023-11-30T23:18:31.513 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:18:31 smithi167 conmon[87022]: stat: stderr time="2023-11-30T23:17:52Z" level=warning msg="failed, retrying in 1s ... (3/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit" 2023-11-30T23:18:31.513 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:18:31 smithi167 conmon[87022]: stat: stderr Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get "https://docker-mirror.front.sepia.ceph.com:5000/v2/": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit 2023-11-30T23:18:31.513 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:18:31 smithi167 conmon[87022]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi167 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2023-11-30T23:18:31.513 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:18:31 smithi167 conmon[87022]: Traceback (most recent call last): 2023-11-30T23:18:31.513 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:18:31 smithi167 conmon[87022]: File "/usr/share/ceph/mgr/cephadm/serve.py", line 1538, in _remote_connection 2023-11-30T23:18:31.514 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:18:31 smithi167 conmon[87022]: yield (conn, connr) 2023-11-30T23:18:31.514 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:18:31 smithi167 conmon[87022]: File "/usr/share/ceph/mgr/cephadm/serve.py", line 1426, in _run_cephadm 2023-11-30T23:18:31.514 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:18:31 smithi167 conmon[87022]: code, '\n'.join(err))) 2023-11-30T23:18:31.514 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:18:31 smithi167 conmon[87022]: orchestrator._interface.OrchestratorError: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi167-ktqzxw 2023-11-30T23:18:31.514 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:18:31 smithi167 conmon[87022]: /bin/podman: stderr Error: error inspecting object: no such container ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi167-ktqzxw 2023-11-30T23:18:31.514 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:18:31 smithi167 conmon[87022]: Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi167.ktqzxw 2023-11-30T23:18:31.514 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:18:31 smithi167 conmon[87022]: /bin/podman: stderr Error: error inspecting object: no such container ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi167.ktqzxw 2023-11-30T23:18:31.514 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:18:31 smithi167 conmon[87022]: Deploy daemon haproxy.nfs.foo.smithi167.ktqzxw ... 2023-11-30T23:18:31.514 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:18:31 smithi167 conmon[87022]: Non-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi167 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2023-11-30T23:18:31.514 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:18:31 smithi167 conmon[87022]: stat: stderr Trying to pull docker.io/library/haproxy:2.3... 2023-11-30T23:18:31.514 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:18:31 smithi167 conmon[87022]: stat: stderr time="2023-11-30T23:16:36Z" level=warning msg="failed, retrying in 1s ... (1/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit" 2023-11-30T23:18:31.514 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:18:31 smithi167 conmon[87022]: stat: stderr time="2023-11-30T23:17:14Z" level=warning msg="failed, retrying in 1s ... (2/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit" 2023-11-30T23:18:31.515 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:18:31 smithi167 conmon[87022]: stat: stderr time="2023-11-30T23:17:52Z" level=warning msg="failed, retrying in 1s ... (3/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit" 2023-11-30T23:18:31.515 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:18:31 smithi167 conmon[87022]: stat: stderr Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get "https://docker-mirror.front.sepia.ceph.com:5000/v2/": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit 2023-11-30T23:18:31.515 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:18:31 smithi167 conmon[87022]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi167 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2023-11-30T23:18:31.515 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:18:31 smithi167 conmon[87022]: cephadm 2023-11-30T23: 2023-11-30T23:18:31.515 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:18:31 smithi167 conmon[87022]: 18:29.793978+0000 mgr.smithi038.ldalxq (mgr.14182) 1144 : cephadm [INF] Removing key for client.ingress.nfs.foo.smithi167.ktqzxw 2023-11-30T23:18:31.515 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:18:31 smithi167 conmon[87022]: cephadm 2023-11-30T23:18:29.795223+0000 mgr.smithi038.ldalxq (mgr.14182) 1145 : cephadm [ERR] Failed while placing haproxy.nfs.foo.smithi167.ktqzxw on smithi167: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi167-ktqzxw 2023-11-30T23:18:31.515 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:18:31 smithi167 conmon[87022]: /bin/podman: stderr Error: error inspecting object: no such container ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi167-ktqzxw 2023-11-30T23:18:31.515 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:18:31 smithi167 conmon[87022]: Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi167.ktqzxw 2023-11-30T23:18:31.515 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:18:31 smithi167 conmon[87022]: /bin/podman: stderr Error: error inspecting object: no such container ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi167.ktqzxw 2023-11-30T23:18:31.515 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:18:31 smithi167 conmon[87022]: Deploy daemon haproxy.nfs.foo.smithi167.ktqzxw ... 2023-11-30T23:18:31.515 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:18:31 smithi167 conmon[87022]: Non-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi167 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2023-11-30T23:18:31.515 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:18:31 smithi167 conmon[87022]: stat: stderr Trying to pull docker.io/library/haproxy:2.3... 2023-11-30T23:18:31.516 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:18:31 smithi167 conmon[87022]: stat: stderr time="2023-11-30T23:16:36Z" level=warning msg="failed, retrying in 1s ... (1/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit" 2023-11-30T23:18:31.516 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:18:31 smithi167 conmon[87022]: stat: stderr time="2023-11-30T23:17:14Z" level=warning msg="failed, retrying in 1s ... (2/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit" 2023-11-30T23:18:31.516 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:18:31 smithi167 conmon[87022]: stat: stderr time="2023-11-30T23:17:52Z" level=warning msg="failed, retrying in 1s ... (3/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit" 2023-11-30T23:18:31.516 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:18:31 smithi167 conmon[87022]: stat: stderr Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get "https://docker-mirror.front.sepia.ceph.com:5000/v2/": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit 2023-11-30T23:18:31.516 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:18:31 smithi167 conmon[87022]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi167 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2023-11-30T23:18:31.516 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:18:31 smithi167 conmon[87022]: cephadm 2023-11-30T23:18:29.797644+0000 mgr.smithi038.ldalxq (mgr.14182) 1146 : cephadm [INF] Deploying daemon haproxy.nfs.foo.smithi038.lkfmsf on smithi038 2023-11-30T23:18:31.516 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:18:31 smithi167 conmon[87022]: cluster 2023-11-30T23:18:30.058395+0000 mgr.smithi038.ldalxq (mgr.14182) 1147 : cluster [DBG] pgmap v733: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2023-11-30T23:18:31.524 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:18:31 smithi038 conmon[81956]: cephadm 2023-11-30T23:18:29.793815+0000 mgr.smithi038.ldalxq 2023-11-30T23:18:31.524 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:18:31 smithi038 conmon[81956]: (mgr.14182) 1143 : cephadm [ERR] cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi167-ktqzxw 2023-11-30T23:18:31.524 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:18:31 smithi038 conmon[81956]: /bin/podman: stderr Error: error inspecting object: no such container ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi167-ktqzxw 2023-11-30T23:18:31.524 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:18:31 smithi038 conmon[81956]: Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi167.ktqzxw 2023-11-30T23:18:31.524 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:18:31 smithi038 conmon[81956]: /bin/podman: stderr Error: error inspecting object: no such container ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi167.ktqzxw 2023-11-30T23:18:31.524 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:18:31 smithi038 conmon[81956]: Deploy daemon haproxy.nfs.foo.smithi167.ktqzxw ... 2023-11-30T23:18:31.525 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:18:31 smithi038 conmon[81956]: Non-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi167 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2023-11-30T23:18:31.525 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:18:31 smithi038 conmon[81956]: stat: stderr Trying to pull docker.io/library/haproxy:2.3... 2023-11-30T23:18:31.525 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:18:31 smithi038 conmon[81956]: stat: stderr time="2023-11-30T23:16:36Z" level=warning msg="failed, retrying in 1s ... (1/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit" 2023-11-30T23:18:31.525 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:18:31 smithi038 conmon[81956]: stat: stderr time="2023-11-30T23:17:14Z" level=warning msg="failed, retrying in 1s ... (2/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit" 2023-11-30T23:18:31.525 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:18:31 smithi038 conmon[81956]: stat: stderr time="2023-11-30T23:17:52Z" level=warning msg="failed, retrying in 1s ... (3/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit" 2023-11-30T23:18:31.525 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:18:31 smithi038 conmon[81956]: stat: stderr Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get "https://docker-mirror.front.sepia.ceph.com:5000/v2/": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit 2023-11-30T23:18:31.525 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:18:31 smithi038 conmon[81956]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi167 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2023-11-30T23:18:31.525 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:18:31 smithi038 conmon[81956]: Traceback (most recent call last): 2023-11-30T23:18:31.525 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:18:31 smithi038 conmon[81956]: File "/usr/share/ceph/mgr/cephadm/serve.py", line 1538, in _remote_connection 2023-11-30T23:18:31.525 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:18:31 smithi038 conmon[81956]: yield (conn, connr) 2023-11-30T23:18:31.525 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:18:31 smithi038 conmon[81956]: File "/usr/share/ceph/mgr/cephadm/serve.py", line 1426, in _run_cephadm 2023-11-30T23:18:31.525 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:18:31 smithi038 conmon[81956]: code, '\n'.join(err))) 2023-11-30T23:18:31.525 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:18:31 smithi038 conmon[81956]: orchestrator._interface.OrchestratorError: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi167-ktqzxw 2023-11-30T23:18:31.526 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:18:31 smithi038 conmon[81956]: /bin/podman: stderr Error: error inspecting object: no such container ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi167-ktqzxw 2023-11-30T23:18:31.526 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:18:31 smithi038 conmon[81956]: Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi167.ktqzxw 2023-11-30T23:18:31.526 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:18:31 smithi038 conmon[81956]: /bin/podman: stderr Error: error inspecting object: no such container ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi167.ktqzxw 2023-11-30T23:18:31.526 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:18:31 smithi038 conmon[81956]: Deploy daemon haproxy.nfs.foo.smithi167.ktqzxw ... 2023-11-30T23:18:31.526 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:18:31 smithi038 conmon[81956]: Non-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi167 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2023-11-30T23:18:31.526 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:18:31 smithi038 conmon[81956]: stat: stderr Trying to pull docker.io/library/haproxy:2.3... 2023-11-30T23:18:31.526 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:18:31 smithi038 conmon[81956]: stat: stderr time="2023-11-30T23:16:36Z" level=warning msg="failed, retrying in 1s ... (1/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit" 2023-11-30T23:18:31.526 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:18:31 smithi038 conmon[81956]: stat: stderr time="2023-11-30T23:17:14Z" level=warning msg="failed, retrying in 1s ... (2/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit" 2023-11-30T23:18:31.526 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:18:31 smithi038 conmon[81956]: stat: stderr time="2023-11-30T23:17:52Z" level=warning msg="failed, retrying in 1s ... (3/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit" 2023-11-30T23:18:31.526 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:18:31 smithi038 conmon[81956]: stat: stderr Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get "https://docker-mirror.front.sepia.ceph.com:5000/v2/": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit 2023-11-30T23:18:31.526 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:18:31 smithi038 conmon[81956]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi167 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2023-11-30T23:18:31.527 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:18:31 smithi038 conmon[81956]: cephadm 2023-11-3 2023-11-30T23:18:31.527 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:18:31 smithi038 conmon[81956]: 0T23:18:29.793978+0000 mgr.smithi038.ldalxq (mgr.14182) 1144 : cephadm [INF] Removing key for client.ingress.nfs.foo.smithi167.ktqzxw 2023-11-30T23:18:31.527 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:18:31 smithi038 conmon[81956]: cephadm 2023-11-30T23:18:29.795223+0000 mgr.smithi038.ldalxq (mgr.14182) 1145 : cephadm [ERR] Failed while placing haproxy.nfs.foo.smithi167.ktqzxw on smithi167: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi167-ktqzxw 2023-11-30T23:18:31.527 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:18:31 smithi038 conmon[81956]: /bin/podman: stderr Error: error inspecting object: no such container ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi167-ktqzxw 2023-11-30T23:18:31.527 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:18:31 smithi038 conmon[81956]: Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi167.ktqzxw 2023-11-30T23:18:31.527 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:18:31 smithi038 conmon[81956]: /bin/podman: stderr Error: error inspecting object: no such container ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi167.ktqzxw 2023-11-30T23:18:31.527 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:18:31 smithi038 conmon[81956]: Deploy daemon haproxy.nfs.foo.smithi167.ktqzxw ... 2023-11-30T23:18:31.527 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:18:31 smithi038 conmon[81956]: Non-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi167 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2023-11-30T23:18:31.527 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:18:31 smithi038 conmon[81956]: stat: stderr Trying to pull docker.io/library/haproxy:2.3... 2023-11-30T23:18:31.527 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:18:31 smithi038 conmon[81956]: stat: stderr time="2023-11-30T23:16:36Z" level=warning msg="failed, retrying in 1s ... (1/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit" 2023-11-30T23:18:31.527 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:18:31 smithi038 conmon[81956]: stat: stderr time="2023-11-30T23:17:14Z" level=warning msg="failed, retrying in 1s ... (2/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit" 2023-11-30T23:18:31.527 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:18:31 smithi038 conmon[81956]: stat: stderr time="2023-11-30T23:17:52Z" level=warning msg="failed, retrying in 1s ... (3/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit" 2023-11-30T23:18:31.528 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:18:31 smithi038 conmon[81956]: stat: stderr Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get "https://docker-mirror.front.sepia.ceph.com:5000/v2/": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit 2023-11-30T23:18:31.528 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:18:31 smithi038 conmon[81956]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi167 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2023-11-30T23:18:31.528 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:18:31 smithi038 conmon[81956]: cephadm 2023-11-30T23:18:29.797644+0000 mgr.smithi038.ldalxq (mgr.14182) 1146 : cephadm [INF] Deploying daemon haproxy.nfs.foo.smithi038.lkfmsf on smithi038 2023-11-30T23:18:31.528 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:18:31 smithi038 conmon[81956]: cluster 2023-11-30T23:18:30.058395+0000 mgr.smithi038.ldalxq (mgr.14182) 1147 : cluster [DBG] pgmap v733: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2023-11-30T23:18:32.859 INFO:teuthology.orchestra.run.smithi038.stdout: 2023-11-30T23:18:32.859 INFO:teuthology.orchestra.run.smithi038.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2023-11-30T22:54:47.122758Z", "last_refresh": "2023-11-30T23:15:59.564688Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2023-11-30T22:54:42.674972Z", "last_refresh": "2023-11-30T23:15:56.214205Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2023-11-30T22:54:45.114633Z", "last_refresh": "2023-11-30T23:15:59.564823Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2023-11-30T23:12:23.150100Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi167.nhhxhd on smithi167: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi167-nhhxhd\n/bin/podman: stderr Error: error inspecting object: no such container ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi167-nhhxhd\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi167.nhhxhd\n/bin/podman: stderr Error: error inspecting object: no such container ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi167.nhhxhd\nDeploy daemon haproxy.nfs.foo.smithi167.nhhxhd ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi167 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2023-11-30T23:10:30Z\" level=warning msg=\"failed, retrying in 1s ... (1/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-11-30T23:11:08Z\" level=warning msg=\"failed, retrying in 1s ... (2/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-11-30T23:11:45Z\" level=warning msg=\"failed, retrying in 1s ... (3/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi167 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-11-30T23:14:53.155795Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi038.njeday on smithi038: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi038-njeday\n/bin/podman: stderr Error: error inspecting object: no such container ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi038-njeday\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi038.njeday\n/bin/podman: stderr Error: error inspecting object: no such container ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi038.njeday\nDeploy daemon haproxy.nfs.foo.smithi038.njeday ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi038 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2023-11-30T23:13:00Z\" level=warning msg=\"failed, retrying in 1s ... (1/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-11-30T23:13:38Z\" level=warning msg=\"failed, retrying in 1s ... (2/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-11-30T23:14:15Z\" level=warning msg=\"failed, retrying in 1s ... (3/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi038 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-11-30T23:14:53.157035Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi038.pwduyd on smithi038: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2023-11-30T23:14:53.158104Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi167.obmcvj on smithi167: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2023-11-30T23:18:29.795059Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi167.ktqzxw on smithi167: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi167-ktqzxw\n/bin/podman: stderr Error: error inspecting object: no such container ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi167-ktqzxw\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi167.ktqzxw\n/bin/podman: stderr Error: error inspecting object: no such container ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi167.ktqzxw\nDeploy daemon haproxy.nfs.foo.smithi167.ktqzxw ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi167 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2023-11-30T23:16:36Z\" level=warning msg=\"failed, retrying in 1s ... (1/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-11-30T23:17:14Z\" level=warning msg=\"failed, retrying in 1s ... (2/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-11-30T23:17:52Z\" level=warning msg=\"failed, retrying in 1s ... (3/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi167 -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": 9049, "virtual_ip": "10.0.31.38/16"}, "status": {"created": "2023-11-30T22:58:56.312786Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.38/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2023-11-30T22:54:41.668043Z", "last_refresh": "2023-11-30T23:15:56.214350Z", "running": 2, "size": 2}}, {"events": ["2023-11-30T22:55:50.759225Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi038:172.21.15.38=smithi038", "smithi167:172.21.15.167=smithi167"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2023-11-30T22:55:50.756456Z", "last_refresh": "2023-11-30T23:15:56.214426Z", "running": 2, "size": 2}}, {"events": ["2023-11-30T22:58:56.311581Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2023-11-30T22:58:56.308071Z", "last_refresh": "2023-11-30T23:15:59.565359Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2023-11-30T22:54:46.136630Z", "last_refresh": "2023-11-30T23:15:56.214508Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2023-11-30T22:56:33.258058Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2023-11-30T22:56:33.253117Z", "last_refresh": "2023-11-30T23:15:56.214583Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2023-11-30T22:54:43.949497Z", "last_refresh": "2023-11-30T23:15:59.564954Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2023-11-30T22:58:52.105721Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2023-11-30T22:58:59.793467Z", "last_refresh": "2023-11-30T23:15:56.214845Z", "ports": [8800], "running": 2, "size": 2}}] 2023-11-30T23:18:33.262 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:18:32 smithi167 conmon[87022]: cluster 2023-11-30T23:18:32.058943+0000 mgr.smithi038.ldalxq (mgr.14182) 1148 : cluster [DBG] pgmap v734: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2023-11-30T23:18:33.262 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:18:32 smithi167 conmon[87022]: 2023-11-30T23:18:33.274 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:18:32 smithi038 conmon[81956]: cluster 2023-11-30T23:18:32.058943+0000 mgr.smithi038.ldalxq 2023-11-30T23:18:33.274 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:18:32 smithi038 conmon[81956]: (mgr.14182) 1148 : cluster [DBG] pgmap v734: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2023-11-30T23:18:33.316 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2023-11-30T23:18:34.262 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:18:33 smithi167 conmon[87022]: audit 2023-11-30T23:18:32.855138+0000 mgr.smithi038.ldalxq (mgr.14182) 1149 : audit 2023-11-30T23:18:34.262 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:18:33 smithi167 conmon[87022]: [DBG] from='client.16048 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-11-30T23:18:34.274 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:18:33 smithi038 conmon[81956]: audit 2023-11-30T23:18:32.855138+0000 mgr.smithi038.ldalxq (mgr.14182) 1149 : audit [DBG] from='client.16048 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-11-30T23:18:34.316 DEBUG:teuthology.orchestra.run.smithi038:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:0dc074ce0b0b3b4f393f56dd32ef36884ebf45a9 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 3faf8b00-8fd3-11ee-95a2-87774f69a715 -- ceph orch ls -f json 2023-11-30T23:18:35.238 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:18:34 smithi038 conmon[81956]: cluster 2023-11-30T23: 2023-11-30T23:18:35.239 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:18:34 smithi038 conmon[81956]: 18:34.059501+0000 mgr.smithi038.ldalxq (mgr.14182) 1150 : cluster [DBG] pgmap v735: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2023-11-30T23:18:35.262 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:18:34 smithi167 conmon[87022]: cluster 2023-11-30T23:18:34.059501+0000 mgr.smithi038.ldalxq (mgr.14182) 1150 2023-11-30T23:18:35.262 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:18:34 smithi167 conmon[87022]: : cluster [DBG] pgmap v735: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2023-11-30T23:18:36.133 INFO:teuthology.orchestra.run.smithi038.stdout: 2023-11-30T23:18:36.133 INFO:teuthology.orchestra.run.smithi038.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2023-11-30T22:54:47.122758Z", "last_refresh": "2023-11-30T23:15:59.564688Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2023-11-30T22:54:42.674972Z", "last_refresh": "2023-11-30T23:15:56.214205Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2023-11-30T22:54:45.114633Z", "last_refresh": "2023-11-30T23:15:59.564823Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2023-11-30T23:12:23.150100Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi167.nhhxhd on smithi167: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi167-nhhxhd\n/bin/podman: stderr Error: error inspecting object: no such container ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi167-nhhxhd\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi167.nhhxhd\n/bin/podman: stderr Error: error inspecting object: no such container ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi167.nhhxhd\nDeploy daemon haproxy.nfs.foo.smithi167.nhhxhd ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi167 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2023-11-30T23:10:30Z\" level=warning msg=\"failed, retrying in 1s ... (1/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-11-30T23:11:08Z\" level=warning msg=\"failed, retrying in 1s ... (2/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-11-30T23:11:45Z\" level=warning msg=\"failed, retrying in 1s ... (3/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi167 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-11-30T23:14:53.155795Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi038.njeday on smithi038: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi038-njeday\n/bin/podman: stderr Error: error inspecting object: no such container ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi038-njeday\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi038.njeday\n/bin/podman: stderr Error: error inspecting object: no such container ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi038.njeday\nDeploy daemon haproxy.nfs.foo.smithi038.njeday ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi038 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2023-11-30T23:13:00Z\" level=warning msg=\"failed, retrying in 1s ... (1/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-11-30T23:13:38Z\" level=warning msg=\"failed, retrying in 1s ... (2/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-11-30T23:14:15Z\" level=warning msg=\"failed, retrying in 1s ... (3/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi038 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-11-30T23:14:53.157035Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi038.pwduyd on smithi038: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2023-11-30T23:14:53.158104Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi167.obmcvj on smithi167: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2023-11-30T23:18:29.795059Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi167.ktqzxw on smithi167: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi167-ktqzxw\n/bin/podman: stderr Error: error inspecting object: no such container ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi167-ktqzxw\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi167.ktqzxw\n/bin/podman: stderr Error: error inspecting object: no such container ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi167.ktqzxw\nDeploy daemon haproxy.nfs.foo.smithi167.ktqzxw ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi167 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2023-11-30T23:16:36Z\" level=warning msg=\"failed, retrying in 1s ... (1/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-11-30T23:17:14Z\" level=warning msg=\"failed, retrying in 1s ... (2/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-11-30T23:17:52Z\" level=warning msg=\"failed, retrying in 1s ... (3/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi167 -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": 9049, "virtual_ip": "10.0.31.38/16"}, "status": {"created": "2023-11-30T22:58:56.312786Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.38/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2023-11-30T22:54:41.668043Z", "last_refresh": "2023-11-30T23:15:56.214350Z", "running": 2, "size": 2}}, {"events": ["2023-11-30T22:55:50.759225Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi038:172.21.15.38=smithi038", "smithi167:172.21.15.167=smithi167"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2023-11-30T22:55:50.756456Z", "last_refresh": "2023-11-30T23:15:56.214426Z", "running": 2, "size": 2}}, {"events": ["2023-11-30T22:58:56.311581Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2023-11-30T22:58:56.308071Z", "last_refresh": "2023-11-30T23:15:59.565359Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2023-11-30T22:54:46.136630Z", "last_refresh": "2023-11-30T23:15:56.214508Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2023-11-30T22:56:33.258058Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2023-11-30T22:56:33.253117Z", "last_refresh": "2023-11-30T23:15:56.214583Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2023-11-30T22:54:43.949497Z", "last_refresh": "2023-11-30T23:15:59.564954Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2023-11-30T22:58:52.105721Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2023-11-30T22:58:59.793467Z", "last_refresh": "2023-11-30T23:15:56.214845Z", "ports": [8800], "running": 2, "size": 2}}] 2023-11-30T23:18:36.566 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2023-11-30T23:18:37.512 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:18:37 smithi167 conmon[87022]: cluster 2023-11-30T23:18:36.060149+0000 mgr.smithi038.ldalxq (mgr.14182) 1151 : cluster 2023-11-30T23:18:37.512 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:18:37 smithi167 conmon[87022]: [DBG] pgmap v736: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2023-11-30T23:18:37.512 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:18:37 smithi167 conmon[87022]: audit 2023-11-30T23:18:36.129081+0000 mgr.smithi038.ldalxq (mgr.14182) 1152 : audit [DBG] from='client.16052 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-11-30T23:18:37.524 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:18:37 smithi038 conmon[81956]: cluster 2023-11-30T23:18:36.060149 2023-11-30T23:18:37.524 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:18:37 smithi038 conmon[81956]: +0000 mgr.smithi038.ldalxq (mgr.14182) 1151 : cluster [DBG] pgmap v736: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2023-11-30T23:18:37.524 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:18:37 smithi038 conmon[81956]: audit 2023-11-30T23:18:36.129081+0000 mgr.smithi038.ldalxq (mgr.14182) 1152 : audit [DBG] from='client.16052 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-11-30T23:18:37.568 DEBUG:teuthology.orchestra.run.smithi038:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:0dc074ce0b0b3b4f393f56dd32ef36884ebf45a9 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 3faf8b00-8fd3-11ee-95a2-87774f69a715 -- ceph orch ls -f json 2023-11-30T23:18:39.274 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:18:39 smithi038 conmon[81956]: cluster 2023-11-30T23: 2023-11-30T23:18:39.274 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:18:39 smithi038 conmon[81956]: 18:38.060642+0000 mgr.smithi038.ldalxq (mgr.14182) 1153 : cluster [DBG] pgmap v737: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2023-11-30T23:18:39.317 INFO:teuthology.orchestra.run.smithi038.stdout: 2023-11-30T23:18:39.317 INFO:teuthology.orchestra.run.smithi038.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2023-11-30T22:54:47.122758Z", "last_refresh": "2023-11-30T23:15:59.564688Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2023-11-30T22:54:42.674972Z", "last_refresh": "2023-11-30T23:15:56.214205Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2023-11-30T22:54:45.114633Z", "last_refresh": "2023-11-30T23:15:59.564823Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2023-11-30T23:12:23.150100Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi167.nhhxhd on smithi167: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi167-nhhxhd\n/bin/podman: stderr Error: error inspecting object: no such container ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi167-nhhxhd\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi167.nhhxhd\n/bin/podman: stderr Error: error inspecting object: no such container ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi167.nhhxhd\nDeploy daemon haproxy.nfs.foo.smithi167.nhhxhd ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi167 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2023-11-30T23:10:30Z\" level=warning msg=\"failed, retrying in 1s ... (1/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-11-30T23:11:08Z\" level=warning msg=\"failed, retrying in 1s ... (2/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-11-30T23:11:45Z\" level=warning msg=\"failed, retrying in 1s ... (3/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi167 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-11-30T23:14:53.155795Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi038.njeday on smithi038: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi038-njeday\n/bin/podman: stderr Error: error inspecting object: no such container ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi038-njeday\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi038.njeday\n/bin/podman: stderr Error: error inspecting object: no such container ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi038.njeday\nDeploy daemon haproxy.nfs.foo.smithi038.njeday ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi038 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2023-11-30T23:13:00Z\" level=warning msg=\"failed, retrying in 1s ... (1/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-11-30T23:13:38Z\" level=warning msg=\"failed, retrying in 1s ... (2/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-11-30T23:14:15Z\" level=warning msg=\"failed, retrying in 1s ... (3/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi038 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-11-30T23:14:53.157035Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi038.pwduyd on smithi038: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2023-11-30T23:14:53.158104Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi167.obmcvj on smithi167: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2023-11-30T23:18:29.795059Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi167.ktqzxw on smithi167: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi167-ktqzxw\n/bin/podman: stderr Error: error inspecting object: no such container ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi167-ktqzxw\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi167.ktqzxw\n/bin/podman: stderr Error: error inspecting object: no such container ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi167.ktqzxw\nDeploy daemon haproxy.nfs.foo.smithi167.ktqzxw ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi167 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2023-11-30T23:16:36Z\" level=warning msg=\"failed, retrying in 1s ... (1/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-11-30T23:17:14Z\" level=warning msg=\"failed, retrying in 1s ... (2/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-11-30T23:17:52Z\" level=warning msg=\"failed, retrying in 1s ... (3/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi167 -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": 9049, "virtual_ip": "10.0.31.38/16"}, "status": {"created": "2023-11-30T22:58:56.312786Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.38/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2023-11-30T22:54:41.668043Z", "last_refresh": "2023-11-30T23:15:56.214350Z", "running": 2, "size": 2}}, {"events": ["2023-11-30T22:55:50.759225Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi038:172.21.15.38=smithi038", "smithi167:172.21.15.167=smithi167"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2023-11-30T22:55:50.756456Z", "last_refresh": "2023-11-30T23:15:56.214426Z", "running": 2, "size": 2}}, {"events": ["2023-11-30T22:58:56.311581Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2023-11-30T22:58:56.308071Z", "last_refresh": "2023-11-30T23:15:59.565359Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2023-11-30T22:54:46.136630Z", "last_refresh": "2023-11-30T23:15:56.214508Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2023-11-30T22:56:33.258058Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2023-11-30T22:56:33.253117Z", "last_refresh": "2023-11-30T23:15:56.214583Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2023-11-30T22:54:43.949497Z", "last_refresh": "2023-11-30T23:15:59.564954Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2023-11-30T22:58:52.105721Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2023-11-30T22:58:59.793467Z", "last_refresh": "2023-11-30T23:15:56.214845Z", "ports": [8800], "running": 2, "size": 2}}] 2023-11-30T23:18:39.512 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:18:39 smithi167 conmon[87022]: cluster 2023-11-30T23:18:38.060642+0000 mgr.smithi038.ldalxq (mgr.14182) 1153 : cluster [DBG] 2023-11-30T23:18:39.512 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:18:39 smithi167 conmon[87022]: pgmap v737: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2023-11-30T23:18:39.727 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2023-11-30T23:18:40.512 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:18:40 smithi167 conmon[87022]: audit 2023-11-30T23:18:39.312533+0000 mgr.smithi038.ldalxq (mgr.14182) 1154 : audit [DBG] from='client.16056 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-11-30T23:18:40.512 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:18:40 smithi167 conmon[87022]: 2023-11-30T23:18:40.524 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:18:40 smithi038 conmon[81956]: audit 2023-11-30T23:18:39.312533+0000 mgr.smithi038.ldalxq (mgr.14182 2023-11-30T23:18:40.524 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:18:40 smithi038 conmon[81956]: ) 1154 : audit [DBG] from='client.16056 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-11-30T23:18:40.728 DEBUG:teuthology.orchestra.run.smithi038:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:0dc074ce0b0b3b4f393f56dd32ef36884ebf45a9 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 3faf8b00-8fd3-11ee-95a2-87774f69a715 -- ceph orch ls -f json 2023-11-30T23:18:41.465 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:18:41 smithi038 conmon[81956]: cluster 2023-11-30T23:18:40.061597+0000 mgr.smithi038.ldalxq (mgr 2023-11-30T23:18:41.465 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:18:41 smithi038 conmon[81956]: .14182) 1155 : cluster [DBG] pgmap v738: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2023-11-30T23:18:41.512 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:18:41 smithi167 conmon[87022]: cluster 2023-11-30T23:18:40.061597+0000 mgr.smithi038.ldalxq (mgr.14182) 1155 : cluster [DBG] 2023-11-30T23:18:41.512 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:18:41 smithi167 conmon[87022]: pgmap v738: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2023-11-30T23:18:42.407 INFO:teuthology.orchestra.run.smithi038.stdout: 2023-11-30T23:18:42.408 INFO:teuthology.orchestra.run.smithi038.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2023-11-30T22:54:47.122758Z", "last_refresh": "2023-11-30T23:15:59.564688Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2023-11-30T22:54:42.674972Z", "last_refresh": "2023-11-30T23:15:56.214205Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2023-11-30T22:54:45.114633Z", "last_refresh": "2023-11-30T23:15:59.564823Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2023-11-30T23:12:23.150100Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi167.nhhxhd on smithi167: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi167-nhhxhd\n/bin/podman: stderr Error: error inspecting object: no such container ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi167-nhhxhd\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi167.nhhxhd\n/bin/podman: stderr Error: error inspecting object: no such container ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi167.nhhxhd\nDeploy daemon haproxy.nfs.foo.smithi167.nhhxhd ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi167 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2023-11-30T23:10:30Z\" level=warning msg=\"failed, retrying in 1s ... (1/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-11-30T23:11:08Z\" level=warning msg=\"failed, retrying in 1s ... (2/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-11-30T23:11:45Z\" level=warning msg=\"failed, retrying in 1s ... (3/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi167 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-11-30T23:14:53.155795Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi038.njeday on smithi038: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi038-njeday\n/bin/podman: stderr Error: error inspecting object: no such container ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi038-njeday\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi038.njeday\n/bin/podman: stderr Error: error inspecting object: no such container ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi038.njeday\nDeploy daemon haproxy.nfs.foo.smithi038.njeday ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi038 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2023-11-30T23:13:00Z\" level=warning msg=\"failed, retrying in 1s ... (1/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-11-30T23:13:38Z\" level=warning msg=\"failed, retrying in 1s ... (2/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-11-30T23:14:15Z\" level=warning msg=\"failed, retrying in 1s ... (3/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi038 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-11-30T23:14:53.157035Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi038.pwduyd on smithi038: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2023-11-30T23:14:53.158104Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi167.obmcvj on smithi167: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2023-11-30T23:18:29.795059Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi167.ktqzxw on smithi167: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi167-ktqzxw\n/bin/podman: stderr Error: error inspecting object: no such container ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi167-ktqzxw\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi167.ktqzxw\n/bin/podman: stderr Error: error inspecting object: no such container ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi167.ktqzxw\nDeploy daemon haproxy.nfs.foo.smithi167.ktqzxw ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi167 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2023-11-30T23:16:36Z\" level=warning msg=\"failed, retrying in 1s ... (1/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-11-30T23:17:14Z\" level=warning msg=\"failed, retrying in 1s ... (2/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-11-30T23:17:52Z\" level=warning msg=\"failed, retrying in 1s ... (3/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi167 -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": 9049, "virtual_ip": "10.0.31.38/16"}, "status": {"created": "2023-11-30T22:58:56.312786Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.38/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2023-11-30T22:54:41.668043Z", "last_refresh": "2023-11-30T23:15:56.214350Z", "running": 2, "size": 2}}, {"events": ["2023-11-30T22:55:50.759225Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi038:172.21.15.38=smithi038", "smithi167:172.21.15.167=smithi167"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2023-11-30T22:55:50.756456Z", "last_refresh": "2023-11-30T23:15:56.214426Z", "running": 2, "size": 2}}, {"events": ["2023-11-30T22:58:56.311581Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2023-11-30T22:58:56.308071Z", "last_refresh": "2023-11-30T23:15:59.565359Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2023-11-30T22:54:46.136630Z", "last_refresh": "2023-11-30T23:15:56.214508Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2023-11-30T22:56:33.258058Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2023-11-30T22:56:33.253117Z", "last_refresh": "2023-11-30T23:15:56.214583Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2023-11-30T22:54:43.949497Z", "last_refresh": "2023-11-30T23:15:59.564954Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2023-11-30T22:58:52.105721Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2023-11-30T22:58:59.793467Z", "last_refresh": "2023-11-30T23:15:56.214845Z", "ports": [8800], "running": 2, "size": 2}}] 2023-11-30T23:18:42.793 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2023-11-30T23:18:43.262 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:18:42 smithi167 conmon[87022]: cluster 2023-11-30T23:18:42.062121+0000 mgr.smithi038.ldalxq (mgr.14182) 1156 : cluster 2023-11-30T23:18:43.262 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:18:42 smithi167 conmon[87022]: [DBG] pgmap v739: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2023-11-30T23:18:43.262 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:18:42 smithi167 conmon[87022]: audit 2023-11-30T23:18:42.403160+0000 mgr.smithi038.ldalxq (mgr.14182) 1157 : audit [DBG] from='client.16060 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-11-30T23:18:43.274 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:18:42 smithi038 conmon[81956]: cluster 2023-11-30T23:18:42.062121+0000 2023-11-30T23:18:43.274 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:18:42 smithi038 conmon[81956]: mgr.smithi038.ldalxq (mgr.14182) 1156 : cluster [DBG] pgmap v739: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2023-11-30T23:18:43.274 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:18:42 smithi038 conmon[81956]: audit 2023-11-30T23:18:42.403160+0000 mgr.smithi038.ldalxq (mgr.14182) 1157 : audit [DBG] from='client.16060 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-11-30T23:18:43.794 DEBUG:teuthology.orchestra.run.smithi038:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:0dc074ce0b0b3b4f393f56dd32ef36884ebf45a9 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 3faf8b00-8fd3-11ee-95a2-87774f69a715 -- ceph orch ls -f json 2023-11-30T23:18:45.512 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:18:45 smithi167 conmon[87022]: cluster 2023-11-30T23:18:44.062771+0000 mgr.smithi038.ldalxq (mgr.14182) 1158 : cluster 2023-11-30T23:18:45.512 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:18:45 smithi167 conmon[87022]: [DBG] pgmap v740: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2023-11-30T23:18:45.524 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:18:45 smithi038 conmon[81956]: cluster 2023-11-30T23:18:44.062771+0000 mgr.smithi038.ldalxq (mgr.14182) 1158 : cluster [DBG] pgmap v740: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2023-11-30T23:18:45.602 INFO:teuthology.orchestra.run.smithi038.stdout: 2023-11-30T23:18:45.603 INFO:teuthology.orchestra.run.smithi038.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2023-11-30T22:54:47.122758Z", "last_refresh": "2023-11-30T23:15:59.564688Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2023-11-30T22:54:42.674972Z", "last_refresh": "2023-11-30T23:15:56.214205Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2023-11-30T22:54:45.114633Z", "last_refresh": "2023-11-30T23:15:59.564823Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2023-11-30T23:12:23.150100Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi167.nhhxhd on smithi167: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi167-nhhxhd\n/bin/podman: stderr Error: error inspecting object: no such container ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi167-nhhxhd\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi167.nhhxhd\n/bin/podman: stderr Error: error inspecting object: no such container ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi167.nhhxhd\nDeploy daemon haproxy.nfs.foo.smithi167.nhhxhd ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi167 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2023-11-30T23:10:30Z\" level=warning msg=\"failed, retrying in 1s ... (1/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-11-30T23:11:08Z\" level=warning msg=\"failed, retrying in 1s ... (2/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-11-30T23:11:45Z\" level=warning msg=\"failed, retrying in 1s ... (3/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi167 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-11-30T23:14:53.155795Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi038.njeday on smithi038: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi038-njeday\n/bin/podman: stderr Error: error inspecting object: no such container ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi038-njeday\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi038.njeday\n/bin/podman: stderr Error: error inspecting object: no such container ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi038.njeday\nDeploy daemon haproxy.nfs.foo.smithi038.njeday ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi038 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2023-11-30T23:13:00Z\" level=warning msg=\"failed, retrying in 1s ... (1/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-11-30T23:13:38Z\" level=warning msg=\"failed, retrying in 1s ... (2/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-11-30T23:14:15Z\" level=warning msg=\"failed, retrying in 1s ... (3/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi038 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-11-30T23:14:53.157035Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi038.pwduyd on smithi038: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2023-11-30T23:14:53.158104Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi167.obmcvj on smithi167: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2023-11-30T23:18:29.795059Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi167.ktqzxw on smithi167: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi167-ktqzxw\n/bin/podman: stderr Error: error inspecting object: no such container ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi167-ktqzxw\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi167.ktqzxw\n/bin/podman: stderr Error: error inspecting object: no such container ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi167.ktqzxw\nDeploy daemon haproxy.nfs.foo.smithi167.ktqzxw ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi167 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2023-11-30T23:16:36Z\" level=warning msg=\"failed, retrying in 1s ... (1/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-11-30T23:17:14Z\" level=warning msg=\"failed, retrying in 1s ... (2/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-11-30T23:17:52Z\" level=warning msg=\"failed, retrying in 1s ... (3/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi167 -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": 9049, "virtual_ip": "10.0.31.38/16"}, "status": {"created": "2023-11-30T22:58:56.312786Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.38/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2023-11-30T22:54:41.668043Z", "last_refresh": "2023-11-30T23:15:56.214350Z", "running": 2, "size": 2}}, {"events": ["2023-11-30T22:55:50.759225Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi038:172.21.15.38=smithi038", "smithi167:172.21.15.167=smithi167"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2023-11-30T22:55:50.756456Z", "last_refresh": "2023-11-30T23:15:56.214426Z", "running": 2, "size": 2}}, {"events": ["2023-11-30T22:58:56.311581Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2023-11-30T22:58:56.308071Z", "last_refresh": "2023-11-30T23:15:59.565359Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2023-11-30T22:54:46.136630Z", "last_refresh": "2023-11-30T23:15:56.214508Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2023-11-30T22:56:33.258058Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2023-11-30T22:56:33.253117Z", "last_refresh": "2023-11-30T23:15:56.214583Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2023-11-30T22:54:43.949497Z", "last_refresh": "2023-11-30T23:15:59.564954Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2023-11-30T22:58:52.105721Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2023-11-30T22:58:59.793467Z", "last_refresh": "2023-11-30T23:15:56.214845Z", "ports": [8800], "running": 2, "size": 2}}] 2023-11-30T23:18:46.147 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2023-11-30T23:18:46.274 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:18:46 smithi038 conmon[81956]: audit 2023-11-30T23:18:45.598499+0000 mgr.smithi038.ldalxq (mgr.14182) 1159 : 2023-11-30T23:18:46.274 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:18:46 smithi038 conmon[81956]: audit [DBG] from='client.16064 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-11-30T23:18:46.512 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:18:46 smithi167 conmon[87022]: audit 2023-11-30T23:18:45.598499+0000 mgr.smithi038.ldalxq (mgr.14182) 1159 : audit [DBG] 2023-11-30T23:18:46.512 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:18:46 smithi167 conmon[87022]: from='client.16064 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-11-30T23:18:47.147 DEBUG:teuthology.orchestra.run.smithi038:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:0dc074ce0b0b3b4f393f56dd32ef36884ebf45a9 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 3faf8b00-8fd3-11ee-95a2-87774f69a715 -- ceph orch ls -f json 2023-11-30T23:18:47.512 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:18:47 smithi167 conmon[87022]: cluster 2023-11-30T23:18:46.063491+0000 mgr.smithi038.ldalxq (mgr.14182) 1160 : cluster [DBG] 2023-11-30T23:18:47.512 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:18:47 smithi167 conmon[87022]: pgmap v741: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2023-11-30T23:18:47.524 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:18:47 smithi038 conmon[81956]: cluster 2023-11-30T23:18:46.063491+0000 mgr.smithi038.ldalxq (mgr.14182) 1160 : cluster [DBG] pgmap v741: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2023-11-30T23:18:48.905 INFO:teuthology.orchestra.run.smithi038.stdout: 2023-11-30T23:18:48.906 INFO:teuthology.orchestra.run.smithi038.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2023-11-30T22:54:47.122758Z", "last_refresh": "2023-11-30T23:15:59.564688Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2023-11-30T22:54:42.674972Z", "last_refresh": "2023-11-30T23:15:56.214205Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2023-11-30T22:54:45.114633Z", "last_refresh": "2023-11-30T23:15:59.564823Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2023-11-30T23:12:23.150100Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi167.nhhxhd on smithi167: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi167-nhhxhd\n/bin/podman: stderr Error: error inspecting object: no such container ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi167-nhhxhd\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi167.nhhxhd\n/bin/podman: stderr Error: error inspecting object: no such container ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi167.nhhxhd\nDeploy daemon haproxy.nfs.foo.smithi167.nhhxhd ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi167 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2023-11-30T23:10:30Z\" level=warning msg=\"failed, retrying in 1s ... (1/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-11-30T23:11:08Z\" level=warning msg=\"failed, retrying in 1s ... (2/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-11-30T23:11:45Z\" level=warning msg=\"failed, retrying in 1s ... (3/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi167 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-11-30T23:14:53.155795Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi038.njeday on smithi038: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi038-njeday\n/bin/podman: stderr Error: error inspecting object: no such container ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi038-njeday\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi038.njeday\n/bin/podman: stderr Error: error inspecting object: no such container ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi038.njeday\nDeploy daemon haproxy.nfs.foo.smithi038.njeday ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi038 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2023-11-30T23:13:00Z\" level=warning msg=\"failed, retrying in 1s ... (1/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-11-30T23:13:38Z\" level=warning msg=\"failed, retrying in 1s ... (2/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-11-30T23:14:15Z\" level=warning msg=\"failed, retrying in 1s ... (3/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi038 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-11-30T23:14:53.157035Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi038.pwduyd on smithi038: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2023-11-30T23:14:53.158104Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi167.obmcvj on smithi167: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2023-11-30T23:18:29.795059Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi167.ktqzxw on smithi167: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi167-ktqzxw\n/bin/podman: stderr Error: error inspecting object: no such container ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi167-ktqzxw\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi167.ktqzxw\n/bin/podman: stderr Error: error inspecting object: no such container ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi167.ktqzxw\nDeploy daemon haproxy.nfs.foo.smithi167.ktqzxw ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi167 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2023-11-30T23:16:36Z\" level=warning msg=\"failed, retrying in 1s ... (1/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-11-30T23:17:14Z\" level=warning msg=\"failed, retrying in 1s ... (2/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-11-30T23:17:52Z\" level=warning msg=\"failed, retrying in 1s ... (3/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi167 -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": 9049, "virtual_ip": "10.0.31.38/16"}, "status": {"created": "2023-11-30T22:58:56.312786Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.38/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2023-11-30T22:54:41.668043Z", "last_refresh": "2023-11-30T23:15:56.214350Z", "running": 2, "size": 2}}, {"events": ["2023-11-30T22:55:50.759225Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi038:172.21.15.38=smithi038", "smithi167:172.21.15.167=smithi167"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2023-11-30T22:55:50.756456Z", "last_refresh": "2023-11-30T23:15:56.214426Z", "running": 2, "size": 2}}, {"events": ["2023-11-30T22:58:56.311581Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2023-11-30T22:58:56.308071Z", "last_refresh": "2023-11-30T23:15:59.565359Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2023-11-30T22:54:46.136630Z", "last_refresh": "2023-11-30T23:15:56.214508Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2023-11-30T22:56:33.258058Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2023-11-30T22:56:33.253117Z", "last_refresh": "2023-11-30T23:15:56.214583Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2023-11-30T22:54:43.949497Z", "last_refresh": "2023-11-30T23:15:59.564954Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2023-11-30T22:58:52.105721Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2023-11-30T22:58:59.793467Z", "last_refresh": "2023-11-30T23:15:56.214845Z", "ports": [8800], "running": 2, "size": 2}}] 2023-11-30T23:18:49.252 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:18:49 smithi038 conmon[81956]: cluster 2023-11-30T23: 2023-11-30T23:18:49.253 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:18:49 smithi038 conmon[81956]: 18:48.064130+0000 mgr.smithi038.ldalxq (mgr.14182) 1161 : cluster [DBG] pgmap v742: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2023-11-30T23:18:49.508 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2023-11-30T23:18:49.511 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:18:49 smithi167 conmon[87022]: cluster 2023-11-30T23:18:48.064130+0000 mgr.smithi038.ldalxq (mgr.14182) 1161 : cluster 2023-11-30T23:18:49.512 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:18:49 smithi167 conmon[87022]: [DBG] pgmap v742: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2023-11-30T23:18:50.509 DEBUG:teuthology.orchestra.run.smithi038:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:0dc074ce0b0b3b4f393f56dd32ef36884ebf45a9 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 3faf8b00-8fd3-11ee-95a2-87774f69a715 -- ceph orch ls -f json 2023-11-30T23:18:50.512 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:18:50 smithi167 conmon[87022]: audit 2023-11-30T23:18:48.901362+0000 mgr.smithi038.ldalxq (mgr.14182) 1162 : audit [DBG] 2023-11-30T23:18:50.512 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:18:50 smithi167 conmon[87022]: from='client.16068 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-11-30T23:18:50.524 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:18:50 smithi038 conmon[81956]: audit 2023-11-30T23:18:48.901362+0000 mgr.smithi038.ldalxq (mgr 2023-11-30T23:18:50.524 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:18:50 smithi038 conmon[81956]: .14182) 1162 : audit [DBG] from='client.16068 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-11-30T23:18:51.337 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:18:51 smithi038 conmon[81956]: cluster 2023-11-30T23:18:50.064973+0000 mgr.smithi038.ldalxq ( 2023-11-30T23:18:51.337 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:18:51 smithi038 conmon[81956]: mgr.14182) 1163 : cluster [DBG] pgmap v743: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2023-11-30T23:18:51.512 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:18:51 smithi167 conmon[87022]: cluster 2023-11-30T23:18:50.064973+0000 mgr.smithi038.ldalxq (mgr.14182) 1163 2023-11-30T23:18:51.512 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:18:51 smithi167 conmon[87022]: : cluster [DBG] pgmap v743: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2023-11-30T23:18:52.127 INFO:teuthology.orchestra.run.smithi038.stdout: 2023-11-30T23:18:52.127 INFO:teuthology.orchestra.run.smithi038.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2023-11-30T22:54:47.122758Z", "last_refresh": "2023-11-30T23:15:59.564688Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2023-11-30T22:54:42.674972Z", "last_refresh": "2023-11-30T23:15:56.214205Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2023-11-30T22:54:45.114633Z", "last_refresh": "2023-11-30T23:15:59.564823Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2023-11-30T23:12:23.150100Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi167.nhhxhd on smithi167: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi167-nhhxhd\n/bin/podman: stderr Error: error inspecting object: no such container ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi167-nhhxhd\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi167.nhhxhd\n/bin/podman: stderr Error: error inspecting object: no such container ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi167.nhhxhd\nDeploy daemon haproxy.nfs.foo.smithi167.nhhxhd ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi167 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2023-11-30T23:10:30Z\" level=warning msg=\"failed, retrying in 1s ... (1/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-11-30T23:11:08Z\" level=warning msg=\"failed, retrying in 1s ... (2/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-11-30T23:11:45Z\" level=warning msg=\"failed, retrying in 1s ... (3/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi167 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-11-30T23:14:53.155795Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi038.njeday on smithi038: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi038-njeday\n/bin/podman: stderr Error: error inspecting object: no such container ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi038-njeday\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi038.njeday\n/bin/podman: stderr Error: error inspecting object: no such container ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi038.njeday\nDeploy daemon haproxy.nfs.foo.smithi038.njeday ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi038 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2023-11-30T23:13:00Z\" level=warning msg=\"failed, retrying in 1s ... (1/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-11-30T23:13:38Z\" level=warning msg=\"failed, retrying in 1s ... (2/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-11-30T23:14:15Z\" level=warning msg=\"failed, retrying in 1s ... (3/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi038 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-11-30T23:14:53.157035Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi038.pwduyd on smithi038: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2023-11-30T23:14:53.158104Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi167.obmcvj on smithi167: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2023-11-30T23:18:29.795059Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi167.ktqzxw on smithi167: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi167-ktqzxw\n/bin/podman: stderr Error: error inspecting object: no such container ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi167-ktqzxw\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi167.ktqzxw\n/bin/podman: stderr Error: error inspecting object: no such container ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi167.ktqzxw\nDeploy daemon haproxy.nfs.foo.smithi167.ktqzxw ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi167 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2023-11-30T23:16:36Z\" level=warning msg=\"failed, retrying in 1s ... (1/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-11-30T23:17:14Z\" level=warning msg=\"failed, retrying in 1s ... (2/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-11-30T23:17:52Z\" level=warning msg=\"failed, retrying in 1s ... (3/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi167 -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": 9049, "virtual_ip": "10.0.31.38/16"}, "status": {"created": "2023-11-30T22:58:56.312786Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.38/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2023-11-30T22:54:41.668043Z", "last_refresh": "2023-11-30T23:15:56.214350Z", "running": 2, "size": 2}}, {"events": ["2023-11-30T22:55:50.759225Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi038:172.21.15.38=smithi038", "smithi167:172.21.15.167=smithi167"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2023-11-30T22:55:50.756456Z", "last_refresh": "2023-11-30T23:15:56.214426Z", "running": 2, "size": 2}}, {"events": ["2023-11-30T22:58:56.311581Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2023-11-30T22:58:56.308071Z", "last_refresh": "2023-11-30T23:15:59.565359Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2023-11-30T22:54:46.136630Z", "last_refresh": "2023-11-30T23:15:56.214508Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2023-11-30T22:56:33.258058Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2023-11-30T22:56:33.253117Z", "last_refresh": "2023-11-30T23:15:56.214583Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2023-11-30T22:54:43.949497Z", "last_refresh": "2023-11-30T23:15:59.564954Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2023-11-30T22:58:52.105721Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2023-11-30T22:58:59.793467Z", "last_refresh": "2023-11-30T23:15:56.214845Z", "ports": [8800], "running": 2, "size": 2}}] 2023-11-30T23:18:52.570 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2023-11-30T23:18:53.262 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:18:52 smithi167 conmon[87022]: cluster 2023-11-30T23:18:52.065509+0000 mgr.smithi038.ldalxq (mgr.14182) 1164 : cluster [DBG] 2023-11-30T23:18:53.262 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:18:52 smithi167 conmon[87022]: pgmap v744: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2023-11-30T23:18:53.262 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:18:52 smithi167 conmon[87022]: audit 2023-11-30T23:18:52.122815+0000 mgr.smithi038.ldalxq (mgr.14182) 1165 : audit [DBG] from='client.16072 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-11-30T23:18:53.274 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:18:52 smithi038 conmon[81956]: cluster 2023-11-30T23:18:52.065509+0000 mgr.smithi038.ldalxq (mgr.14182) 1164 : cluster [DBG] pgmap v744: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2023-11-30T23:18:53.274 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:18:52 smithi038 conmon[81956]: audit 2023-11-30T23:18:52.122815+0000 mgr.smithi038.ldalxq (mgr.14182) 1165 : audit [DBG] from='client.16072 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-11-30T23:18:53.571 DEBUG:teuthology.orchestra.run.smithi038:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:0dc074ce0b0b3b4f393f56dd32ef36884ebf45a9 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 3faf8b00-8fd3-11ee-95a2-87774f69a715 -- ceph orch ls -f json 2023-11-30T23:18:55.279 INFO:teuthology.orchestra.run.smithi038.stdout: 2023-11-30T23:18:55.280 INFO:teuthology.orchestra.run.smithi038.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2023-11-30T22:54:47.122758Z", "last_refresh": "2023-11-30T23:15:59.564688Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2023-11-30T22:54:42.674972Z", "last_refresh": "2023-11-30T23:15:56.214205Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2023-11-30T22:54:45.114633Z", "last_refresh": "2023-11-30T23:15:59.564823Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2023-11-30T23:12:23.150100Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi167.nhhxhd on smithi167: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi167-nhhxhd\n/bin/podman: stderr Error: error inspecting object: no such container ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi167-nhhxhd\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi167.nhhxhd\n/bin/podman: stderr Error: error inspecting object: no such container ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi167.nhhxhd\nDeploy daemon haproxy.nfs.foo.smithi167.nhhxhd ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi167 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2023-11-30T23:10:30Z\" level=warning msg=\"failed, retrying in 1s ... (1/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-11-30T23:11:08Z\" level=warning msg=\"failed, retrying in 1s ... (2/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-11-30T23:11:45Z\" level=warning msg=\"failed, retrying in 1s ... (3/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi167 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-11-30T23:14:53.155795Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi038.njeday on smithi038: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi038-njeday\n/bin/podman: stderr Error: error inspecting object: no such container ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi038-njeday\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi038.njeday\n/bin/podman: stderr Error: error inspecting object: no such container ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi038.njeday\nDeploy daemon haproxy.nfs.foo.smithi038.njeday ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi038 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2023-11-30T23:13:00Z\" level=warning msg=\"failed, retrying in 1s ... (1/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-11-30T23:13:38Z\" level=warning msg=\"failed, retrying in 1s ... (2/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-11-30T23:14:15Z\" level=warning msg=\"failed, retrying in 1s ... (3/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi038 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-11-30T23:14:53.157035Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi038.pwduyd on smithi038: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2023-11-30T23:14:53.158104Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi167.obmcvj on smithi167: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2023-11-30T23:18:29.795059Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi167.ktqzxw on smithi167: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi167-ktqzxw\n/bin/podman: stderr Error: error inspecting object: no such container ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi167-ktqzxw\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi167.ktqzxw\n/bin/podman: stderr Error: error inspecting object: no such container ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi167.ktqzxw\nDeploy daemon haproxy.nfs.foo.smithi167.ktqzxw ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi167 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2023-11-30T23:16:36Z\" level=warning msg=\"failed, retrying in 1s ... (1/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-11-30T23:17:14Z\" level=warning msg=\"failed, retrying in 1s ... (2/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-11-30T23:17:52Z\" level=warning msg=\"failed, retrying in 1s ... (3/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi167 -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": 9049, "virtual_ip": "10.0.31.38/16"}, "status": {"created": "2023-11-30T22:58:56.312786Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.38/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2023-11-30T22:54:41.668043Z", "last_refresh": "2023-11-30T23:15:56.214350Z", "running": 2, "size": 2}}, {"events": ["2023-11-30T22:55:50.759225Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi038:172.21.15.38=smithi038", "smithi167:172.21.15.167=smithi167"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2023-11-30T22:55:50.756456Z", "last_refresh": "2023-11-30T23:15:56.214426Z", "running": 2, "size": 2}}, {"events": ["2023-11-30T22:58:56.311581Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2023-11-30T22:58:56.308071Z", "last_refresh": "2023-11-30T23:15:59.565359Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2023-11-30T22:54:46.136630Z", "last_refresh": "2023-11-30T23:15:56.214508Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2023-11-30T22:56:33.258058Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2023-11-30T22:56:33.253117Z", "last_refresh": "2023-11-30T23:15:56.214583Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2023-11-30T22:54:43.949497Z", "last_refresh": "2023-11-30T23:15:59.564954Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2023-11-30T22:58:52.105721Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2023-11-30T22:58:59.793467Z", "last_refresh": "2023-11-30T23:15:56.214845Z", "ports": [8800], "running": 2, "size": 2}}] 2023-11-30T23:18:55.484 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:18:55 smithi038 conmon[81956]: cluster 2023-11-30T23:18:54.066409+0000 mgr.smithi038.ldalxq (mgr.14182) 1166 : cluster [DBG] pgmap v745: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2023-11-30T23:18:55.512 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:18:55 smithi167 conmon[87022]: cluster 2023-11-30T23:18:54.066409+0000 mgr.smithi038.ldalxq (mgr.14182) 1166 : 2023-11-30T23:18:55.512 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:18:55 smithi167 conmon[87022]: cluster [DBG] pgmap v745: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2023-11-30T23:18:55.714 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2023-11-30T23:18:56.512 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:18:56 smithi167 conmon[87022]: audit 2023-11-30T23:18:55.273890+0000 mgr.smithi038.ldalxq (mgr.14182) 1167 : audit [DBG] 2023-11-30T23:18:56.512 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:18:56 smithi167 conmon[87022]: from='client.16076 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-11-30T23:18:56.524 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:18:56 smithi038 conmon[81956]: audit 2023-11-30T23:18:55.273890+0000 mgr.smithi038.ldalxq (mgr.14182) 1167 : audit [DBG] from='client.16076 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-11-30T23:18:56.715 DEBUG:teuthology.orchestra.run.smithi038:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:0dc074ce0b0b3b4f393f56dd32ef36884ebf45a9 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 3faf8b00-8fd3-11ee-95a2-87774f69a715 -- ceph orch ls -f json 2023-11-30T23:18:57.452 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:18:57 smithi038 conmon[81956]: cluster 2023-11-30T23:18:56.067285+0000 mgr.smithi038.ldalxq ( 2023-11-30T23:18:57.452 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:18:57 smithi038 conmon[81956]: mgr.14182) 1168 : cluster [DBG] pgmap v746: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2023-11-30T23:18:57.512 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:18:57 smithi167 conmon[87022]: cluster 2023-11-30T23:18:56.067285+0000 mgr.smithi038.ldalxq (mgr.14182) 1168 : cluster 2023-11-30T23:18:57.512 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:18:57 smithi167 conmon[87022]: [DBG] pgmap v746: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2023-11-30T23:18:58.448 INFO:teuthology.orchestra.run.smithi038.stdout: 2023-11-30T23:18:58.448 INFO:teuthology.orchestra.run.smithi038.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2023-11-30T22:54:47.122758Z", "last_refresh": "2023-11-30T23:15:59.564688Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2023-11-30T22:54:42.674972Z", "last_refresh": "2023-11-30T23:15:56.214205Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2023-11-30T22:54:45.114633Z", "last_refresh": "2023-11-30T23:15:59.564823Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2023-11-30T23:12:23.150100Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi167.nhhxhd on smithi167: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi167-nhhxhd\n/bin/podman: stderr Error: error inspecting object: no such container ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi167-nhhxhd\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi167.nhhxhd\n/bin/podman: stderr Error: error inspecting object: no such container ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi167.nhhxhd\nDeploy daemon haproxy.nfs.foo.smithi167.nhhxhd ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi167 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2023-11-30T23:10:30Z\" level=warning msg=\"failed, retrying in 1s ... (1/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-11-30T23:11:08Z\" level=warning msg=\"failed, retrying in 1s ... (2/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-11-30T23:11:45Z\" level=warning msg=\"failed, retrying in 1s ... (3/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi167 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-11-30T23:14:53.155795Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi038.njeday on smithi038: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi038-njeday\n/bin/podman: stderr Error: error inspecting object: no such container ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi038-njeday\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi038.njeday\n/bin/podman: stderr Error: error inspecting object: no such container ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi038.njeday\nDeploy daemon haproxy.nfs.foo.smithi038.njeday ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi038 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2023-11-30T23:13:00Z\" level=warning msg=\"failed, retrying in 1s ... (1/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-11-30T23:13:38Z\" level=warning msg=\"failed, retrying in 1s ... (2/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-11-30T23:14:15Z\" level=warning msg=\"failed, retrying in 1s ... (3/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi038 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-11-30T23:14:53.157035Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi038.pwduyd on smithi038: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2023-11-30T23:14:53.158104Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi167.obmcvj on smithi167: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2023-11-30T23:18:29.795059Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi167.ktqzxw on smithi167: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi167-ktqzxw\n/bin/podman: stderr Error: error inspecting object: no such container ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi167-ktqzxw\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi167.ktqzxw\n/bin/podman: stderr Error: error inspecting object: no such container ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi167.ktqzxw\nDeploy daemon haproxy.nfs.foo.smithi167.ktqzxw ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi167 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2023-11-30T23:16:36Z\" level=warning msg=\"failed, retrying in 1s ... (1/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-11-30T23:17:14Z\" level=warning msg=\"failed, retrying in 1s ... (2/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-11-30T23:17:52Z\" level=warning msg=\"failed, retrying in 1s ... (3/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi167 -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": 9049, "virtual_ip": "10.0.31.38/16"}, "status": {"created": "2023-11-30T22:58:56.312786Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.38/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2023-11-30T22:54:41.668043Z", "last_refresh": "2023-11-30T23:15:56.214350Z", "running": 2, "size": 2}}, {"events": ["2023-11-30T22:55:50.759225Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi038:172.21.15.38=smithi038", "smithi167:172.21.15.167=smithi167"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2023-11-30T22:55:50.756456Z", "last_refresh": "2023-11-30T23:15:56.214426Z", "running": 2, "size": 2}}, {"events": ["2023-11-30T22:58:56.311581Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2023-11-30T22:58:56.308071Z", "last_refresh": "2023-11-30T23:15:59.565359Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2023-11-30T22:54:46.136630Z", "last_refresh": "2023-11-30T23:15:56.214508Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2023-11-30T22:56:33.258058Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2023-11-30T22:56:33.253117Z", "last_refresh": "2023-11-30T23:15:56.214583Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2023-11-30T22:54:43.949497Z", "last_refresh": "2023-11-30T23:15:59.564954Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2023-11-30T22:58:52.105721Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2023-11-30T22:58:59.793467Z", "last_refresh": "2023-11-30T23:15:56.214845Z", "ports": [8800], "running": 2, "size": 2}}] 2023-11-30T23:18:58.874 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2023-11-30T23:18:59.512 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:18:59 smithi167 conmon[87022]: cluster 2023-11-30T23:18:58.067848+0000 mgr.smithi038.ldalxq (mgr.14182) 1169 : cluster [DBG] 2023-11-30T23:18:59.512 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:18:59 smithi167 conmon[87022]: pgmap v747: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2023-11-30T23:18:59.512 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:18:59 smithi167 conmon[87022]: audit 2023-11-30T23:18:58.443441+0000 mgr.smithi038.ldalxq (mgr.14182) 1170 : audit [DBG] from='client.16080 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-11-30T23:18:59.524 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:18:59 smithi038 conmon[81956]: cluster 2023-11-30T23:18:58.067848+0000 mgr.smithi038.ldalxq (mgr.14182) 1169 : cluster [DBG] pgmap v747: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2023-11-30T23:18:59.524 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:18:59 smithi038 conmon[81956]: audit 2023-11-30T23:18:58.443441+0000 mgr.smithi038.ldalxq (mgr.14182) 1170 : audit [DBG] from='client.16080 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-11-30T23:18:59.875 DEBUG:teuthology.orchestra.run.smithi038:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:0dc074ce0b0b3b4f393f56dd32ef36884ebf45a9 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 3faf8b00-8fd3-11ee-95a2-87774f69a715 -- ceph orch ls -f json 2023-11-30T23:19:01.512 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:19:01 smithi167 conmon[87022]: cluster 2023-11-30T23:19:00.068786+0000 mgr.smithi038.ldalxq (mgr.14182) 1171 : cluster 2023-11-30T23:19:01.512 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:19:01 smithi167 conmon[87022]: [DBG] pgmap v748: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2023-11-30T23:19:01.526 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:19:01 smithi038 conmon[81956]: cluster 2023-11-30T23:19:00.068786 2023-11-30T23:19:01.526 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:19:01 smithi038 conmon[81956]: +0000 mgr.smithi038.ldalxq (mgr.14182) 1171 : cluster [DBG] pgmap v748: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2023-11-30T23:19:01.614 INFO:teuthology.orchestra.run.smithi038.stdout: 2023-11-30T23:19:01.615 INFO:teuthology.orchestra.run.smithi038.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2023-11-30T22:54:47.122758Z", "last_refresh": "2023-11-30T23:15:59.564688Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2023-11-30T22:54:42.674972Z", "last_refresh": "2023-11-30T23:15:56.214205Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2023-11-30T22:54:45.114633Z", "last_refresh": "2023-11-30T23:15:59.564823Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2023-11-30T23:12:23.150100Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi167.nhhxhd on smithi167: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi167-nhhxhd\n/bin/podman: stderr Error: error inspecting object: no such container ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi167-nhhxhd\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi167.nhhxhd\n/bin/podman: stderr Error: error inspecting object: no such container ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi167.nhhxhd\nDeploy daemon haproxy.nfs.foo.smithi167.nhhxhd ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi167 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2023-11-30T23:10:30Z\" level=warning msg=\"failed, retrying in 1s ... (1/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-11-30T23:11:08Z\" level=warning msg=\"failed, retrying in 1s ... (2/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-11-30T23:11:45Z\" level=warning msg=\"failed, retrying in 1s ... (3/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi167 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-11-30T23:14:53.155795Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi038.njeday on smithi038: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi038-njeday\n/bin/podman: stderr Error: error inspecting object: no such container ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi038-njeday\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi038.njeday\n/bin/podman: stderr Error: error inspecting object: no such container ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi038.njeday\nDeploy daemon haproxy.nfs.foo.smithi038.njeday ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi038 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2023-11-30T23:13:00Z\" level=warning msg=\"failed, retrying in 1s ... (1/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-11-30T23:13:38Z\" level=warning msg=\"failed, retrying in 1s ... (2/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-11-30T23:14:15Z\" level=warning msg=\"failed, retrying in 1s ... (3/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi038 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-11-30T23:14:53.157035Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi038.pwduyd on smithi038: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2023-11-30T23:14:53.158104Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi167.obmcvj on smithi167: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2023-11-30T23:18:29.795059Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi167.ktqzxw on smithi167: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi167-ktqzxw\n/bin/podman: stderr Error: error inspecting object: no such container ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi167-ktqzxw\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi167.ktqzxw\n/bin/podman: stderr Error: error inspecting object: no such container ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi167.ktqzxw\nDeploy daemon haproxy.nfs.foo.smithi167.ktqzxw ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi167 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2023-11-30T23:16:36Z\" level=warning msg=\"failed, retrying in 1s ... (1/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-11-30T23:17:14Z\" level=warning msg=\"failed, retrying in 1s ... (2/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-11-30T23:17:52Z\" level=warning msg=\"failed, retrying in 1s ... (3/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi167 -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": 9049, "virtual_ip": "10.0.31.38/16"}, "status": {"created": "2023-11-30T22:58:56.312786Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.38/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2023-11-30T22:54:41.668043Z", "last_refresh": "2023-11-30T23:15:56.214350Z", "running": 2, "size": 2}}, {"events": ["2023-11-30T22:55:50.759225Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi038:172.21.15.38=smithi038", "smithi167:172.21.15.167=smithi167"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2023-11-30T22:55:50.756456Z", "last_refresh": "2023-11-30T23:15:56.214426Z", "running": 2, "size": 2}}, {"events": ["2023-11-30T22:58:56.311581Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2023-11-30T22:58:56.308071Z", "last_refresh": "2023-11-30T23:15:59.565359Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2023-11-30T22:54:46.136630Z", "last_refresh": "2023-11-30T23:15:56.214508Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2023-11-30T22:56:33.258058Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2023-11-30T22:56:33.253117Z", "last_refresh": "2023-11-30T23:15:56.214583Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2023-11-30T22:54:43.949497Z", "last_refresh": "2023-11-30T23:15:59.564954Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2023-11-30T22:58:52.105721Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2023-11-30T22:58:59.793467Z", "last_refresh": "2023-11-30T23:15:56.214845Z", "ports": [8800], "running": 2, "size": 2}}] 2023-11-30T23:19:02.037 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2023-11-30T23:19:02.274 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:19:02 smithi038 conmon[81956]: audit 2023-11-30T23:19:01.608628+0000 mgr.smithi038.ldalxq (mgr 2023-11-30T23:19:02.274 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:19:02 smithi038 conmon[81956]: .14182) 1172 : audit [DBG] from='client.16084 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-11-30T23:19:02.512 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:19:02 smithi167 conmon[87022]: audit 2023-11-30T23:19:01.608628+0000 mgr.smithi038.ldalxq (mgr.14182) 1172 : audit 2023-11-30T23:19:02.512 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:19:02 smithi167 conmon[87022]: [DBG] from='client.16084 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-11-30T23:19:03.039 DEBUG:teuthology.orchestra.run.smithi038:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:0dc074ce0b0b3b4f393f56dd32ef36884ebf45a9 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 3faf8b00-8fd3-11ee-95a2-87774f69a715 -- ceph orch ls -f json 2023-11-30T23:19:03.512 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:19:03 smithi167 conmon[87022]: cluster 2023-11-30T23:19:02.069321+0000 mgr.smithi038.ldalxq (mgr.14182 2023-11-30T23:19:03.512 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:19:03 smithi167 conmon[87022]: ) 1173 : cluster [DBG] pgmap v749: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2023-11-30T23:19:03.524 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:19:03 smithi038 conmon[81956]: cluster 2023-11-30T23:19:02.069321+0000 mgr.smithi038.ldalxq (mgr.14182) 1173 : cluster [DBG] 2023-11-30T23:19:03.524 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:19:03 smithi038 conmon[81956]: pgmap v749: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2023-11-30T23:19:04.706 INFO:teuthology.orchestra.run.smithi038.stdout: 2023-11-30T23:19:04.706 INFO:teuthology.orchestra.run.smithi038.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2023-11-30T22:54:47.122758Z", "last_refresh": "2023-11-30T23:15:59.564688Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2023-11-30T22:54:42.674972Z", "last_refresh": "2023-11-30T23:15:56.214205Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2023-11-30T22:54:45.114633Z", "last_refresh": "2023-11-30T23:15:59.564823Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2023-11-30T23:12:23.150100Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi167.nhhxhd on smithi167: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi167-nhhxhd\n/bin/podman: stderr Error: error inspecting object: no such container ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi167-nhhxhd\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi167.nhhxhd\n/bin/podman: stderr Error: error inspecting object: no such container ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi167.nhhxhd\nDeploy daemon haproxy.nfs.foo.smithi167.nhhxhd ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi167 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2023-11-30T23:10:30Z\" level=warning msg=\"failed, retrying in 1s ... (1/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-11-30T23:11:08Z\" level=warning msg=\"failed, retrying in 1s ... (2/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-11-30T23:11:45Z\" level=warning msg=\"failed, retrying in 1s ... (3/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi167 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-11-30T23:14:53.155795Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi038.njeday on smithi038: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi038-njeday\n/bin/podman: stderr Error: error inspecting object: no such container ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi038-njeday\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi038.njeday\n/bin/podman: stderr Error: error inspecting object: no such container ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi038.njeday\nDeploy daemon haproxy.nfs.foo.smithi038.njeday ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi038 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2023-11-30T23:13:00Z\" level=warning msg=\"failed, retrying in 1s ... (1/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-11-30T23:13:38Z\" level=warning msg=\"failed, retrying in 1s ... (2/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-11-30T23:14:15Z\" level=warning msg=\"failed, retrying in 1s ... (3/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi038 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-11-30T23:14:53.157035Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi038.pwduyd on smithi038: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2023-11-30T23:14:53.158104Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi167.obmcvj on smithi167: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2023-11-30T23:18:29.795059Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi167.ktqzxw on smithi167: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi167-ktqzxw\n/bin/podman: stderr Error: error inspecting object: no such container ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi167-ktqzxw\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi167.ktqzxw\n/bin/podman: stderr Error: error inspecting object: no such container ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi167.ktqzxw\nDeploy daemon haproxy.nfs.foo.smithi167.ktqzxw ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi167 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2023-11-30T23:16:36Z\" level=warning msg=\"failed, retrying in 1s ... (1/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-11-30T23:17:14Z\" level=warning msg=\"failed, retrying in 1s ... (2/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-11-30T23:17:52Z\" level=warning msg=\"failed, retrying in 1s ... (3/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi167 -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": 9049, "virtual_ip": "10.0.31.38/16"}, "status": {"created": "2023-11-30T22:58:56.312786Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.38/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2023-11-30T22:54:41.668043Z", "last_refresh": "2023-11-30T23:15:56.214350Z", "running": 2, "size": 2}}, {"events": ["2023-11-30T22:55:50.759225Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi038:172.21.15.38=smithi038", "smithi167:172.21.15.167=smithi167"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2023-11-30T22:55:50.756456Z", "last_refresh": "2023-11-30T23:15:56.214426Z", "running": 2, "size": 2}}, {"events": ["2023-11-30T22:58:56.311581Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2023-11-30T22:58:56.308071Z", "last_refresh": "2023-11-30T23:15:59.565359Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2023-11-30T22:54:46.136630Z", "last_refresh": "2023-11-30T23:15:56.214508Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2023-11-30T22:56:33.258058Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2023-11-30T22:56:33.253117Z", "last_refresh": "2023-11-30T23:15:56.214583Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2023-11-30T22:54:43.949497Z", "last_refresh": "2023-11-30T23:15:59.564954Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2023-11-30T22:58:52.105721Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2023-11-30T22:58:59.793467Z", "last_refresh": "2023-11-30T23:15:56.214845Z", "ports": [8800], "running": 2, "size": 2}}] 2023-11-30T23:19:05.187 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2023-11-30T23:19:05.512 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:19:05 smithi167 conmon[87022]: cluster 2023-11-30T23:19:04.069924+0000 mgr.smithi038.ldalxq (mgr.14182) 1174 : cluster 2023-11-30T23:19:05.512 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:19:05 smithi167 conmon[87022]: [DBG] pgmap v750: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2023-11-30T23:19:05.512 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:19:05 smithi167 conmon[87022]: audit 2023-11-30T23:19:04.700499+0000 mgr.smithi038.ldalxq (mgr.14182) 1175 : audit [DBG] from='client.16088 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-11-30T23:19:05.524 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:19:05 smithi038 conmon[81956]: cluster 2023-11-30T23:19:04.069924+0000 mgr.smithi038.ldalxq (mgr.14182) 1174 : cluster [DBG] pgmap v750: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2023-11-30T23:19:05.524 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:19:05 smithi038 conmon[81956]: audit 2023-11-30T23:19:04.700499+0000 mgr.smithi038.ldalxq (mgr.14182) 1175 : audit [DBG] from='client.16088 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-11-30T23:19:06.188 DEBUG:teuthology.orchestra.run.smithi038:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:0dc074ce0b0b3b4f393f56dd32ef36884ebf45a9 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 3faf8b00-8fd3-11ee-95a2-87774f69a715 -- ceph orch ls -f json 2023-11-30T23:19:07.478 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:19:07 smithi038 conmon[81956]: cluster 2023-11-30T23:19:06.070676+0000 mgr.smithi038.ldalxq (mgr.14182) 1176 : cluster [DBG] pgmap v751: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2023-11-30T23:19:07.512 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:19:07 smithi167 conmon[87022]: cluster 2023-11-30T23:19:06.070676+0000 2023-11-30T23:19:07.512 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:19:07 smithi167 conmon[87022]: mgr.smithi038.ldalxq (mgr.14182) 1176 : cluster [DBG] pgmap v751: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2023-11-30T23:19:07.877 INFO:teuthology.orchestra.run.smithi038.stdout: 2023-11-30T23:19:07.877 INFO:teuthology.orchestra.run.smithi038.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2023-11-30T22:54:47.122758Z", "last_refresh": "2023-11-30T23:15:59.564688Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2023-11-30T22:54:42.674972Z", "last_refresh": "2023-11-30T23:15:56.214205Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2023-11-30T22:54:45.114633Z", "last_refresh": "2023-11-30T23:15:59.564823Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2023-11-30T23:12:23.150100Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi167.nhhxhd on smithi167: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi167-nhhxhd\n/bin/podman: stderr Error: error inspecting object: no such container ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi167-nhhxhd\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi167.nhhxhd\n/bin/podman: stderr Error: error inspecting object: no such container ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi167.nhhxhd\nDeploy daemon haproxy.nfs.foo.smithi167.nhhxhd ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi167 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2023-11-30T23:10:30Z\" level=warning msg=\"failed, retrying in 1s ... (1/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-11-30T23:11:08Z\" level=warning msg=\"failed, retrying in 1s ... (2/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-11-30T23:11:45Z\" level=warning msg=\"failed, retrying in 1s ... (3/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi167 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-11-30T23:14:53.155795Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi038.njeday on smithi038: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi038-njeday\n/bin/podman: stderr Error: error inspecting object: no such container ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi038-njeday\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi038.njeday\n/bin/podman: stderr Error: error inspecting object: no such container ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi038.njeday\nDeploy daemon haproxy.nfs.foo.smithi038.njeday ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi038 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2023-11-30T23:13:00Z\" level=warning msg=\"failed, retrying in 1s ... (1/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-11-30T23:13:38Z\" level=warning msg=\"failed, retrying in 1s ... (2/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-11-30T23:14:15Z\" level=warning msg=\"failed, retrying in 1s ... (3/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi038 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-11-30T23:14:53.157035Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi038.pwduyd on smithi038: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2023-11-30T23:14:53.158104Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi167.obmcvj on smithi167: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2023-11-30T23:18:29.795059Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi167.ktqzxw on smithi167: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi167-ktqzxw\n/bin/podman: stderr Error: error inspecting object: no such container ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi167-ktqzxw\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi167.ktqzxw\n/bin/podman: stderr Error: error inspecting object: no such container ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi167.ktqzxw\nDeploy daemon haproxy.nfs.foo.smithi167.ktqzxw ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi167 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2023-11-30T23:16:36Z\" level=warning msg=\"failed, retrying in 1s ... (1/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-11-30T23:17:14Z\" level=warning msg=\"failed, retrying in 1s ... (2/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-11-30T23:17:52Z\" level=warning msg=\"failed, retrying in 1s ... (3/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi167 -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": 9049, "virtual_ip": "10.0.31.38/16"}, "status": {"created": "2023-11-30T22:58:56.312786Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.38/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2023-11-30T22:54:41.668043Z", "last_refresh": "2023-11-30T23:15:56.214350Z", "running": 2, "size": 2}}, {"events": ["2023-11-30T22:55:50.759225Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi038:172.21.15.38=smithi038", "smithi167:172.21.15.167=smithi167"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2023-11-30T22:55:50.756456Z", "last_refresh": "2023-11-30T23:15:56.214426Z", "running": 2, "size": 2}}, {"events": ["2023-11-30T22:58:56.311581Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2023-11-30T22:58:56.308071Z", "last_refresh": "2023-11-30T23:15:59.565359Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2023-11-30T22:54:46.136630Z", "last_refresh": "2023-11-30T23:15:56.214508Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2023-11-30T22:56:33.258058Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2023-11-30T22:56:33.253117Z", "last_refresh": "2023-11-30T23:15:56.214583Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2023-11-30T22:54:43.949497Z", "last_refresh": "2023-11-30T23:15:59.564954Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2023-11-30T22:58:52.105721Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2023-11-30T22:58:59.793467Z", "last_refresh": "2023-11-30T23:15:56.214845Z", "ports": [8800], "running": 2, "size": 2}}] 2023-11-30T23:19:08.338 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2023-11-30T23:19:09.274 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:19:09 smithi038 conmon[81956]: audit 2023-11-30T23:19:07.872570+0000 mgr.smithi038.ldalxq (mgr.14182) 1177 : audit [DBG] from='client.16092 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-11-30T23:19:09.275 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:19:09 smithi038 conmon[81956]: cluster 2023-11-30T23:19:08.071292+0000 mgr.smithi038.ldalxq (mgr.14182) 1178 : cluster [DBG] pgmap v752: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2023-11-30T23:19:09.339 DEBUG:teuthology.orchestra.run.smithi038:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:0dc074ce0b0b3b4f393f56dd32ef36884ebf45a9 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 3faf8b00-8fd3-11ee-95a2-87774f69a715 -- ceph orch ls -f json 2023-11-30T23:19:09.512 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:19:09 smithi167 conmon[87022]: audit 2023-11-30T23:19:07.872570+0000 mgr.smithi038.ldalxq (mgr.14182) 1177 : audit [DBG] from='client.16092 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-11-30T23:19:09.512 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:19:09 smithi167 conmon[87022]: cluster 2023-11-30T23:19:08.071292+0000 mgr.smithi038.ldalxq (mgr.14182) 1178 : cluster [DBG] pgmap v752: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2023-11-30T23:19:11.224 INFO:teuthology.orchestra.run.smithi038.stdout: 2023-11-30T23:19:11.225 INFO:teuthology.orchestra.run.smithi038.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2023-11-30T22:54:47.122758Z", "last_refresh": "2023-11-30T23:15:59.564688Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2023-11-30T22:54:42.674972Z", "last_refresh": "2023-11-30T23:15:56.214205Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2023-11-30T22:54:45.114633Z", "last_refresh": "2023-11-30T23:15:59.564823Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2023-11-30T23:12:23.150100Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi167.nhhxhd on smithi167: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi167-nhhxhd\n/bin/podman: stderr Error: error inspecting object: no such container ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi167-nhhxhd\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi167.nhhxhd\n/bin/podman: stderr Error: error inspecting object: no such container ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi167.nhhxhd\nDeploy daemon haproxy.nfs.foo.smithi167.nhhxhd ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi167 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2023-11-30T23:10:30Z\" level=warning msg=\"failed, retrying in 1s ... (1/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-11-30T23:11:08Z\" level=warning msg=\"failed, retrying in 1s ... (2/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-11-30T23:11:45Z\" level=warning msg=\"failed, retrying in 1s ... (3/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi167 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-11-30T23:14:53.155795Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi038.njeday on smithi038: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi038-njeday\n/bin/podman: stderr Error: error inspecting object: no such container ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi038-njeday\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi038.njeday\n/bin/podman: stderr Error: error inspecting object: no such container ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi038.njeday\nDeploy daemon haproxy.nfs.foo.smithi038.njeday ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi038 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2023-11-30T23:13:00Z\" level=warning msg=\"failed, retrying in 1s ... (1/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-11-30T23:13:38Z\" level=warning msg=\"failed, retrying in 1s ... (2/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-11-30T23:14:15Z\" level=warning msg=\"failed, retrying in 1s ... (3/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi038 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-11-30T23:14:53.157035Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi038.pwduyd on smithi038: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2023-11-30T23:14:53.158104Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi167.obmcvj on smithi167: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2023-11-30T23:18:29.795059Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi167.ktqzxw on smithi167: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi167-ktqzxw\n/bin/podman: stderr Error: error inspecting object: no such container ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi167-ktqzxw\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi167.ktqzxw\n/bin/podman: stderr Error: error inspecting object: no such container ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi167.ktqzxw\nDeploy daemon haproxy.nfs.foo.smithi167.ktqzxw ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi167 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2023-11-30T23:16:36Z\" level=warning msg=\"failed, retrying in 1s ... (1/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-11-30T23:17:14Z\" level=warning msg=\"failed, retrying in 1s ... (2/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-11-30T23:17:52Z\" level=warning msg=\"failed, retrying in 1s ... (3/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi167 -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": 9049, "virtual_ip": "10.0.31.38/16"}, "status": {"created": "2023-11-30T22:58:56.312786Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.38/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2023-11-30T22:54:41.668043Z", "last_refresh": "2023-11-30T23:15:56.214350Z", "running": 2, "size": 2}}, {"events": ["2023-11-30T22:55:50.759225Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi038:172.21.15.38=smithi038", "smithi167:172.21.15.167=smithi167"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2023-11-30T22:55:50.756456Z", "last_refresh": "2023-11-30T23:15:56.214426Z", "running": 2, "size": 2}}, {"events": ["2023-11-30T22:58:56.311581Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2023-11-30T22:58:56.308071Z", "last_refresh": "2023-11-30T23:15:59.565359Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2023-11-30T22:54:46.136630Z", "last_refresh": "2023-11-30T23:15:56.214508Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2023-11-30T22:56:33.258058Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2023-11-30T22:56:33.253117Z", "last_refresh": "2023-11-30T23:15:56.214583Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2023-11-30T22:54:43.949497Z", "last_refresh": "2023-11-30T23:15:59.564954Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2023-11-30T22:58:52.105721Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2023-11-30T22:58:59.793467Z", "last_refresh": "2023-11-30T23:15:56.214845Z", "ports": [8800], "running": 2, "size": 2}}] 2023-11-30T23:19:11.450 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:19:11 smithi038 conmon[81956]: cluster 2023-11-30T23:19:10.072004+0000 mgr.smithi038.ldalxq (mgr.14182) 1179 : cluster [DBG] pgmap v753: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2023-11-30T23:19:11.512 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:19:11 smithi167 conmon[87022]: cluster 2023-11-30T23:19:10.072004+0000 mgr.smithi038.ldalxq (mgr.14182) 1179 : cluster [DBG] pgmap v753: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2023-11-30T23:19:11.694 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2023-11-30T23:19:12.512 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:19:12 smithi167 conmon[87022]: audit 2023-11-30T23:19:11.218776+0000 mgr.smithi038.ldalxq (mgr.14182) 1180 : 2023-11-30T23:19:12.512 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:19:12 smithi167 conmon[87022]: audit [DBG] from='client.16096 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-11-30T23:19:12.524 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:19:12 smithi038 conmon[81956]: audit 2023-11-30T23:19:11.218776+0000 mgr.smithi038.ldalxq (mgr. 2023-11-30T23:19:12.524 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:19:12 smithi038 conmon[81956]: 14182) 1180 : audit [DBG] from='client.16096 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-11-30T23:19:12.696 DEBUG:teuthology.orchestra.run.smithi038:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:0dc074ce0b0b3b4f393f56dd32ef36884ebf45a9 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 3faf8b00-8fd3-11ee-95a2-87774f69a715 -- ceph orch ls -f json 2023-11-30T23:19:13.512 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:19:13 smithi167 conmon[87022]: cluster 2023-11-30T23:19:12.072736+0000 mgr.smithi038.ldalxq (mgr.14182) 1181 : cluster [DBG] pgmap v754: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 5.1 KiB/s rd, 0 B/s wr, 8 op/s 2023-11-30T23:19:13.512 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:19:13 smithi167 conmon[87022]: 2023-11-30T23:19:13.523 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:19:13 smithi038 conmon[81956]: cluster 2023-11-30T23:19:12.072736+0000 mgr.smithi038.ldalxq (mgr.14182 2023-11-30T23:19:13.524 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:19:13 smithi038 conmon[81956]: ) 1181 : cluster [DBG] pgmap v754: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 5.1 KiB/s rd, 0 B/s wr, 8 op/s 2023-11-30T23:19:14.391 INFO:teuthology.orchestra.run.smithi038.stdout: 2023-11-30T23:19:14.391 INFO:teuthology.orchestra.run.smithi038.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2023-11-30T22:54:47.122758Z", "last_refresh": "2023-11-30T23:15:59.564688Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2023-11-30T22:54:42.674972Z", "last_refresh": "2023-11-30T23:15:56.214205Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2023-11-30T22:54:45.114633Z", "last_refresh": "2023-11-30T23:15:59.564823Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2023-11-30T23:12:23.150100Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi167.nhhxhd on smithi167: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi167-nhhxhd\n/bin/podman: stderr Error: error inspecting object: no such container ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi167-nhhxhd\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi167.nhhxhd\n/bin/podman: stderr Error: error inspecting object: no such container ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi167.nhhxhd\nDeploy daemon haproxy.nfs.foo.smithi167.nhhxhd ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi167 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2023-11-30T23:10:30Z\" level=warning msg=\"failed, retrying in 1s ... (1/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-11-30T23:11:08Z\" level=warning msg=\"failed, retrying in 1s ... (2/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-11-30T23:11:45Z\" level=warning msg=\"failed, retrying in 1s ... (3/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi167 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-11-30T23:14:53.155795Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi038.njeday on smithi038: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi038-njeday\n/bin/podman: stderr Error: error inspecting object: no such container ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi038-njeday\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi038.njeday\n/bin/podman: stderr Error: error inspecting object: no such container ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi038.njeday\nDeploy daemon haproxy.nfs.foo.smithi038.njeday ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi038 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2023-11-30T23:13:00Z\" level=warning msg=\"failed, retrying in 1s ... (1/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-11-30T23:13:38Z\" level=warning msg=\"failed, retrying in 1s ... (2/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-11-30T23:14:15Z\" level=warning msg=\"failed, retrying in 1s ... (3/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi038 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-11-30T23:14:53.157035Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi038.pwduyd on smithi038: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2023-11-30T23:14:53.158104Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi167.obmcvj on smithi167: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2023-11-30T23:18:29.795059Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi167.ktqzxw on smithi167: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi167-ktqzxw\n/bin/podman: stderr Error: error inspecting object: no such container ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi167-ktqzxw\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi167.ktqzxw\n/bin/podman: stderr Error: error inspecting object: no such container ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi167.ktqzxw\nDeploy daemon haproxy.nfs.foo.smithi167.ktqzxw ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi167 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2023-11-30T23:16:36Z\" level=warning msg=\"failed, retrying in 1s ... (1/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-11-30T23:17:14Z\" level=warning msg=\"failed, retrying in 1s ... (2/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-11-30T23:17:52Z\" level=warning msg=\"failed, retrying in 1s ... (3/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi167 -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": 9049, "virtual_ip": "10.0.31.38/16"}, "status": {"created": "2023-11-30T22:58:56.312786Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.38/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2023-11-30T22:54:41.668043Z", "last_refresh": "2023-11-30T23:15:56.214350Z", "running": 2, "size": 2}}, {"events": ["2023-11-30T22:55:50.759225Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi038:172.21.15.38=smithi038", "smithi167:172.21.15.167=smithi167"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2023-11-30T22:55:50.756456Z", "last_refresh": "2023-11-30T23:15:56.214426Z", "running": 2, "size": 2}}, {"events": ["2023-11-30T22:58:56.311581Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2023-11-30T22:58:56.308071Z", "last_refresh": "2023-11-30T23:15:59.565359Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2023-11-30T22:54:46.136630Z", "last_refresh": "2023-11-30T23:15:56.214508Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2023-11-30T22:56:33.258058Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2023-11-30T22:56:33.253117Z", "last_refresh": "2023-11-30T23:15:56.214583Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2023-11-30T22:54:43.949497Z", "last_refresh": "2023-11-30T23:15:59.564954Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2023-11-30T22:58:52.105721Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2023-11-30T22:58:59.793467Z", "last_refresh": "2023-11-30T23:15:56.214845Z", "ports": [8800], "running": 2, "size": 2}}] 2023-11-30T23:19:14.840 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2023-11-30T23:19:15.512 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:19:15 smithi167 conmon[87022]: cluster 2023-11-30T23:19:14.073456+0000 mgr.smithi038.ldalxq (mgr.14182) 1182 : cluster [DBG] pgmap v755: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 15 KiB/s rd, 0 B/s wr, 24 op/s 2023-11-30T23:19:15.512 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:19:15 smithi167 conmon[87022]: audit 2023-11-30T23:19:14.386677+0000 mgr.smithi038.ldalxq (mgr.14182) 1183 : audit [DBG] from='client.16100 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-11-30T23:19:15.524 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:19:15 smithi038 conmon[81956]: cluster 2023-11-30T23:19:14.073456+0000 mgr.smithi038.ldalxq (mgr.14182) 1182 : cluster [DBG] pgmap v755: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 15 KiB/s rd, 0 B/s wr, 24 op/s 2023-11-30T23:19:15.524 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:19:15 smithi038 conmon[81956]: audit 2023-11-30T23:19:14.386677+0000 mgr.smithi038.ldalxq (mgr.14182) 1183 : audit [DBG] from='client.16100 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-11-30T23:19:15.841 DEBUG:teuthology.orchestra.run.smithi038:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:0dc074ce0b0b3b4f393f56dd32ef36884ebf45a9 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 3faf8b00-8fd3-11ee-95a2-87774f69a715 -- ceph orch ls -f json 2023-11-30T23:19:17.512 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:19:17 smithi167 conmon[87022]: cluster 2023-11-30T23:19:16.074192+0000 mgr.smithi038.ldalxq (mgr.14182) 1184 : cluster [DBG] pgmap v756: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 35 KiB/s rd, 0 B/s wr, 58 op/s 2023-11-30T23:19:17.524 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:19:17 smithi038 conmon[81956]: cluster 2023-11-30T23:19:16.074192+0000 mgr.smithi038.ldalxq (mgr.14182) 2023-11-30T23:19:17.524 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:19:17 smithi038 conmon[81956]: 1184 : cluster [DBG] pgmap v756: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 35 KiB/s rd, 0 B/s wr, 58 op/s 2023-11-30T23:19:17.714 INFO:teuthology.orchestra.run.smithi038.stdout: 2023-11-30T23:19:17.714 INFO:teuthology.orchestra.run.smithi038.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2023-11-30T22:54:47.122758Z", "last_refresh": "2023-11-30T23:15:59.564688Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2023-11-30T22:54:42.674972Z", "last_refresh": "2023-11-30T23:15:56.214205Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2023-11-30T22:54:45.114633Z", "last_refresh": "2023-11-30T23:15:59.564823Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2023-11-30T23:12:23.150100Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi167.nhhxhd on smithi167: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi167-nhhxhd\n/bin/podman: stderr Error: error inspecting object: no such container ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi167-nhhxhd\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi167.nhhxhd\n/bin/podman: stderr Error: error inspecting object: no such container ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi167.nhhxhd\nDeploy daemon haproxy.nfs.foo.smithi167.nhhxhd ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi167 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2023-11-30T23:10:30Z\" level=warning msg=\"failed, retrying in 1s ... (1/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-11-30T23:11:08Z\" level=warning msg=\"failed, retrying in 1s ... (2/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-11-30T23:11:45Z\" level=warning msg=\"failed, retrying in 1s ... (3/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi167 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-11-30T23:14:53.155795Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi038.njeday on smithi038: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi038-njeday\n/bin/podman: stderr Error: error inspecting object: no such container ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi038-njeday\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi038.njeday\n/bin/podman: stderr Error: error inspecting object: no such container ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi038.njeday\nDeploy daemon haproxy.nfs.foo.smithi038.njeday ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi038 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2023-11-30T23:13:00Z\" level=warning msg=\"failed, retrying in 1s ... (1/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-11-30T23:13:38Z\" level=warning msg=\"failed, retrying in 1s ... (2/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-11-30T23:14:15Z\" level=warning msg=\"failed, retrying in 1s ... (3/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi038 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-11-30T23:14:53.157035Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi038.pwduyd on smithi038: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2023-11-30T23:14:53.158104Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi167.obmcvj on smithi167: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2023-11-30T23:18:29.795059Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi167.ktqzxw on smithi167: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi167-ktqzxw\n/bin/podman: stderr Error: error inspecting object: no such container ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi167-ktqzxw\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi167.ktqzxw\n/bin/podman: stderr Error: error inspecting object: no such container ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi167.ktqzxw\nDeploy daemon haproxy.nfs.foo.smithi167.ktqzxw ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi167 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2023-11-30T23:16:36Z\" level=warning msg=\"failed, retrying in 1s ... (1/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-11-30T23:17:14Z\" level=warning msg=\"failed, retrying in 1s ... (2/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-11-30T23:17:52Z\" level=warning msg=\"failed, retrying in 1s ... (3/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi167 -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": 9049, "virtual_ip": "10.0.31.38/16"}, "status": {"created": "2023-11-30T22:58:56.312786Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.38/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2023-11-30T22:54:41.668043Z", "last_refresh": "2023-11-30T23:15:56.214350Z", "running": 2, "size": 2}}, {"events": ["2023-11-30T22:55:50.759225Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi038:172.21.15.38=smithi038", "smithi167:172.21.15.167=smithi167"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2023-11-30T22:55:50.756456Z", "last_refresh": "2023-11-30T23:15:56.214426Z", "running": 2, "size": 2}}, {"events": ["2023-11-30T22:58:56.311581Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2023-11-30T22:58:56.308071Z", "last_refresh": "2023-11-30T23:15:59.565359Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2023-11-30T22:54:46.136630Z", "last_refresh": "2023-11-30T23:15:56.214508Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2023-11-30T22:56:33.258058Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2023-11-30T22:56:33.253117Z", "last_refresh": "2023-11-30T23:15:56.214583Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2023-11-30T22:54:43.949497Z", "last_refresh": "2023-11-30T23:15:59.564954Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2023-11-30T22:58:52.105721Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2023-11-30T22:58:59.793467Z", "last_refresh": "2023-11-30T23:15:56.214845Z", "ports": [8800], "running": 2, "size": 2}}] 2023-11-30T23:19:18.100 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2023-11-30T23:19:18.512 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:19:18 smithi167 conmon[87022]: audit 2023-11-30T23:19:17.709428+0000 mgr.smithi038.ldalxq (mgr.14182) 1185 : audit [DBG] from='client.16104 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-11-30T23:19:18.526 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:19:18 smithi038 conmon[81956]: audit 2023-11-30T23:19:17.709428+0000 mgr.smithi038.ldalxq (mgr.14182) 1185 : audit [DBG] from='client.16104 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-11-30T23:19:19.102 DEBUG:teuthology.orchestra.run.smithi038:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:0dc074ce0b0b3b4f393f56dd32ef36884ebf45a9 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 3faf8b00-8fd3-11ee-95a2-87774f69a715 -- ceph orch ls -f json 2023-11-30T23:19:19.512 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:19:19 smithi167 conmon[87022]: cluster 2023-11-30T23:19:18.074736+0000 mgr.smithi038.ldalxq (mgr.14182) 1186 : cluster [DBG] pgmap v757: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 36 KiB/s rd, 0 B/s wr, 59 op/s 2023-11-30T23:19:19.512 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:19:19 smithi167 conmon[87022]: 2023-11-30T23:19:19.524 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:19:19 smithi038 conmon[81956]: cluster 2023-11-30T23:19:18.074736+0000 mgr.smithi038.ldalxq (mgr.14182) 1186 2023-11-30T23:19:19.524 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:19:19 smithi038 conmon[81956]: : cluster [DBG] pgmap v757: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 36 KiB/s rd, 0 B/s wr, 59 op/s 2023-11-30T23:19:20.856 INFO:teuthology.orchestra.run.smithi038.stdout: 2023-11-30T23:19:20.857 INFO:teuthology.orchestra.run.smithi038.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2023-11-30T22:54:47.122758Z", "last_refresh": "2023-11-30T23:15:59.564688Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2023-11-30T22:54:42.674972Z", "last_refresh": "2023-11-30T23:15:56.214205Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2023-11-30T22:54:45.114633Z", "last_refresh": "2023-11-30T23:15:59.564823Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2023-11-30T23:12:23.150100Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi167.nhhxhd on smithi167: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi167-nhhxhd\n/bin/podman: stderr Error: error inspecting object: no such container ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi167-nhhxhd\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi167.nhhxhd\n/bin/podman: stderr Error: error inspecting object: no such container ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi167.nhhxhd\nDeploy daemon haproxy.nfs.foo.smithi167.nhhxhd ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi167 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2023-11-30T23:10:30Z\" level=warning msg=\"failed, retrying in 1s ... (1/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-11-30T23:11:08Z\" level=warning msg=\"failed, retrying in 1s ... (2/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-11-30T23:11:45Z\" level=warning msg=\"failed, retrying in 1s ... (3/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi167 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-11-30T23:14:53.155795Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi038.njeday on smithi038: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi038-njeday\n/bin/podman: stderr Error: error inspecting object: no such container ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi038-njeday\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi038.njeday\n/bin/podman: stderr Error: error inspecting object: no such container ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi038.njeday\nDeploy daemon haproxy.nfs.foo.smithi038.njeday ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi038 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2023-11-30T23:13:00Z\" level=warning msg=\"failed, retrying in 1s ... (1/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-11-30T23:13:38Z\" level=warning msg=\"failed, retrying in 1s ... (2/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-11-30T23:14:15Z\" level=warning msg=\"failed, retrying in 1s ... (3/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi038 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-11-30T23:14:53.157035Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi038.pwduyd on smithi038: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2023-11-30T23:14:53.158104Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi167.obmcvj on smithi167: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2023-11-30T23:18:29.795059Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi167.ktqzxw on smithi167: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi167-ktqzxw\n/bin/podman: stderr Error: error inspecting object: no such container ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi167-ktqzxw\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi167.ktqzxw\n/bin/podman: stderr Error: error inspecting object: no such container ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi167.ktqzxw\nDeploy daemon haproxy.nfs.foo.smithi167.ktqzxw ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi167 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2023-11-30T23:16:36Z\" level=warning msg=\"failed, retrying in 1s ... (1/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-11-30T23:17:14Z\" level=warning msg=\"failed, retrying in 1s ... (2/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-11-30T23:17:52Z\" level=warning msg=\"failed, retrying in 1s ... (3/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi167 -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": 9049, "virtual_ip": "10.0.31.38/16"}, "status": {"created": "2023-11-30T22:58:56.312786Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.38/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2023-11-30T22:54:41.668043Z", "last_refresh": "2023-11-30T23:15:56.214350Z", "running": 2, "size": 2}}, {"events": ["2023-11-30T22:55:50.759225Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi038:172.21.15.38=smithi038", "smithi167:172.21.15.167=smithi167"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2023-11-30T22:55:50.756456Z", "last_refresh": "2023-11-30T23:15:56.214426Z", "running": 2, "size": 2}}, {"events": ["2023-11-30T22:58:56.311581Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2023-11-30T22:58:56.308071Z", "last_refresh": "2023-11-30T23:15:59.565359Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2023-11-30T22:54:46.136630Z", "last_refresh": "2023-11-30T23:15:56.214508Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2023-11-30T22:56:33.258058Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2023-11-30T22:56:33.253117Z", "last_refresh": "2023-11-30T23:15:56.214583Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2023-11-30T22:54:43.949497Z", "last_refresh": "2023-11-30T23:15:59.564954Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2023-11-30T22:58:52.105721Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2023-11-30T22:58:59.793467Z", "last_refresh": "2023-11-30T23:15:56.214845Z", "ports": [8800], "running": 2, "size": 2}}] 2023-11-30T23:19:21.263 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2023-11-30T23:19:21.512 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:19:21 smithi167 conmon[87022]: cluster 2023-11-30T23:19:20.075674+0000 mgr.smithi038.ldalxq (mgr.14182) 1187 : cluster [DBG] pgmap v758: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 38 KiB/s rd, 0 B/s wr, 63 op/s 2023-11-30T23:19:21.524 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:19:21 smithi038 conmon[81956]: cluster 2023-11-30T23:19:20.075674+0000 mgr.smithi038.ldalxq 2023-11-30T23:19:21.524 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:19:21 smithi038 conmon[81956]: (mgr.14182) 1187 : cluster [DBG] pgmap v758: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 38 KiB/s rd, 0 B/s wr, 63 op/s 2023-11-30T23:19:22.264 DEBUG:teuthology.orchestra.run.smithi038:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:0dc074ce0b0b3b4f393f56dd32ef36884ebf45a9 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 3faf8b00-8fd3-11ee-95a2-87774f69a715 -- ceph orch ls -f json 2023-11-30T23:19:22.512 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:19:22 smithi167 conmon[87022]: audit 2023-11-30T23:19:20.852663+0000 mgr.smithi038.ldalxq (mgr.14182) 1188 : audit [DBG] from='client.16108 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-11-30T23:19:22.524 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:19:22 smithi038 conmon[81956]: audit 2023-11-30T23:19:20.852663+0000 mgr.smithi038.ldalxq (mgr.14182) 1188 : audit [DBG] from='client.16108 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-11-30T23:19:23.428 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:19:23 smithi038 conmon[81956]: cluster 2023-11-30T23:19:22.076343+0000 mgr.smithi038.ldalxq (mgr.14182) 1189 : cluster [DBG] pgmap v759: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 39 KiB/s rd, 0 B/s wr, 65 op/s 2023-11-30T23:19:23.512 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:19:23 smithi167 conmon[87022]: cluster 2023-11-30T23:19:22.076343+0000 mgr.smithi038.ldalxq (mgr.14182) 1189 : cluster [DBG] pgmap v759: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 39 KiB/s rd, 0 B/s wr, 65 op/s 2023-11-30T23:19:24.112 INFO:teuthology.orchestra.run.smithi038.stdout: 2023-11-30T23:19:24.113 INFO:teuthology.orchestra.run.smithi038.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2023-11-30T22:54:47.122758Z", "last_refresh": "2023-11-30T23:15:59.564688Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2023-11-30T22:54:42.674972Z", "last_refresh": "2023-11-30T23:15:56.214205Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2023-11-30T22:54:45.114633Z", "last_refresh": "2023-11-30T23:15:59.564823Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2023-11-30T23:12:23.150100Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi167.nhhxhd on smithi167: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi167-nhhxhd\n/bin/podman: stderr Error: error inspecting object: no such container ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi167-nhhxhd\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi167.nhhxhd\n/bin/podman: stderr Error: error inspecting object: no such container ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi167.nhhxhd\nDeploy daemon haproxy.nfs.foo.smithi167.nhhxhd ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi167 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2023-11-30T23:10:30Z\" level=warning msg=\"failed, retrying in 1s ... (1/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-11-30T23:11:08Z\" level=warning msg=\"failed, retrying in 1s ... (2/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-11-30T23:11:45Z\" level=warning msg=\"failed, retrying in 1s ... (3/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi167 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-11-30T23:14:53.155795Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi038.njeday on smithi038: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi038-njeday\n/bin/podman: stderr Error: error inspecting object: no such container ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi038-njeday\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi038.njeday\n/bin/podman: stderr Error: error inspecting object: no such container ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi038.njeday\nDeploy daemon haproxy.nfs.foo.smithi038.njeday ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi038 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2023-11-30T23:13:00Z\" level=warning msg=\"failed, retrying in 1s ... (1/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-11-30T23:13:38Z\" level=warning msg=\"failed, retrying in 1s ... (2/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-11-30T23:14:15Z\" level=warning msg=\"failed, retrying in 1s ... (3/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi038 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-11-30T23:14:53.157035Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi038.pwduyd on smithi038: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2023-11-30T23:14:53.158104Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi167.obmcvj on smithi167: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2023-11-30T23:18:29.795059Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi167.ktqzxw on smithi167: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi167-ktqzxw\n/bin/podman: stderr Error: error inspecting object: no such container ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi167-ktqzxw\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi167.ktqzxw\n/bin/podman: stderr Error: error inspecting object: no such container ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi167.ktqzxw\nDeploy daemon haproxy.nfs.foo.smithi167.ktqzxw ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi167 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2023-11-30T23:16:36Z\" level=warning msg=\"failed, retrying in 1s ... (1/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-11-30T23:17:14Z\" level=warning msg=\"failed, retrying in 1s ... (2/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-11-30T23:17:52Z\" level=warning msg=\"failed, retrying in 1s ... (3/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi167 -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": 9049, "virtual_ip": "10.0.31.38/16"}, "status": {"created": "2023-11-30T22:58:56.312786Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.38/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2023-11-30T22:54:41.668043Z", "last_refresh": "2023-11-30T23:15:56.214350Z", "running": 2, "size": 2}}, {"events": ["2023-11-30T22:55:50.759225Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi038:172.21.15.38=smithi038", "smithi167:172.21.15.167=smithi167"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2023-11-30T22:55:50.756456Z", "last_refresh": "2023-11-30T23:15:56.214426Z", "running": 2, "size": 2}}, {"events": ["2023-11-30T22:58:56.311581Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2023-11-30T22:58:56.308071Z", "last_refresh": "2023-11-30T23:15:59.565359Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2023-11-30T22:54:46.136630Z", "last_refresh": "2023-11-30T23:15:56.214508Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2023-11-30T22:56:33.258058Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2023-11-30T22:56:33.253117Z", "last_refresh": "2023-11-30T23:15:56.214583Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2023-11-30T22:54:43.949497Z", "last_refresh": "2023-11-30T23:15:59.564954Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2023-11-30T22:58:52.105721Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2023-11-30T22:58:59.793467Z", "last_refresh": "2023-11-30T23:15:56.214845Z", "ports": [8800], "running": 2, "size": 2}}] 2023-11-30T23:19:24.526 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2023-11-30T23:19:25.512 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:19:25 smithi167 conmon[87022]: cluster 2023-11-30T23:19:24.076898+0000 mgr.smithi038.ldalxq (mgr.14182) 1190 : cluster [DBG] pgmap v760: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 35 KiB/s rd, 0 B/s wr, 58 op/s 2023-11-30T23:19:25.512 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:19:25 smithi167 conmon[87022]: audit 2023-11-30T23:19:24.108071+0000 mgr.smithi038.ldalxq (mgr.14182) 1191 : audit [DBG] from='client.16112 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-11-30T23:19:25.524 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:19:25 smithi038 conmon[81956]: cluster 2023-11-30T23:19:24.076898+0000 mgr.smithi038.ldalxq (mgr.14182) 1190 : cluster [DBG] pgmap v760: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 35 KiB/s rd, 0 B/s wr, 58 op/s 2023-11-30T23:19:25.524 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:19:25 smithi038 conmon[81956]: audit 2023-11-30T23:19:24.108071+0000 mgr.smithi038.ldalxq (mgr.14182) 1191 : audit [DBG] from='client.16112 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-11-30T23:19:25.527 DEBUG:teuthology.orchestra.run.smithi038:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:0dc074ce0b0b3b4f393f56dd32ef36884ebf45a9 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 3faf8b00-8fd3-11ee-95a2-87774f69a715 -- ceph orch ls -f json 2023-11-30T23:19:27.361 INFO:teuthology.orchestra.run.smithi038.stdout: 2023-11-30T23:19:27.361 INFO:teuthology.orchestra.run.smithi038.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2023-11-30T22:54:47.122758Z", "last_refresh": "2023-11-30T23:15:59.564688Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2023-11-30T22:54:42.674972Z", "last_refresh": "2023-11-30T23:15:56.214205Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2023-11-30T22:54:45.114633Z", "last_refresh": "2023-11-30T23:15:59.564823Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2023-11-30T23:12:23.150100Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi167.nhhxhd on smithi167: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi167-nhhxhd\n/bin/podman: stderr Error: error inspecting object: no such container ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi167-nhhxhd\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi167.nhhxhd\n/bin/podman: stderr Error: error inspecting object: no such container ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi167.nhhxhd\nDeploy daemon haproxy.nfs.foo.smithi167.nhhxhd ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi167 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2023-11-30T23:10:30Z\" level=warning msg=\"failed, retrying in 1s ... (1/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-11-30T23:11:08Z\" level=warning msg=\"failed, retrying in 1s ... (2/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-11-30T23:11:45Z\" level=warning msg=\"failed, retrying in 1s ... (3/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi167 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-11-30T23:14:53.155795Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi038.njeday on smithi038: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi038-njeday\n/bin/podman: stderr Error: error inspecting object: no such container ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi038-njeday\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi038.njeday\n/bin/podman: stderr Error: error inspecting object: no such container ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi038.njeday\nDeploy daemon haproxy.nfs.foo.smithi038.njeday ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi038 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2023-11-30T23:13:00Z\" level=warning msg=\"failed, retrying in 1s ... (1/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-11-30T23:13:38Z\" level=warning msg=\"failed, retrying in 1s ... (2/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-11-30T23:14:15Z\" level=warning msg=\"failed, retrying in 1s ... (3/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi038 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-11-30T23:14:53.157035Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi038.pwduyd on smithi038: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2023-11-30T23:14:53.158104Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi167.obmcvj on smithi167: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2023-11-30T23:18:29.795059Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi167.ktqzxw on smithi167: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi167-ktqzxw\n/bin/podman: stderr Error: error inspecting object: no such container ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi167-ktqzxw\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi167.ktqzxw\n/bin/podman: stderr Error: error inspecting object: no such container ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi167.ktqzxw\nDeploy daemon haproxy.nfs.foo.smithi167.ktqzxw ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi167 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2023-11-30T23:16:36Z\" level=warning msg=\"failed, retrying in 1s ... (1/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-11-30T23:17:14Z\" level=warning msg=\"failed, retrying in 1s ... (2/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-11-30T23:17:52Z\" level=warning msg=\"failed, retrying in 1s ... (3/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi167 -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": 9049, "virtual_ip": "10.0.31.38/16"}, "status": {"created": "2023-11-30T22:58:56.312786Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.38/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2023-11-30T22:54:41.668043Z", "last_refresh": "2023-11-30T23:15:56.214350Z", "running": 2, "size": 2}}, {"events": ["2023-11-30T22:55:50.759225Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi038:172.21.15.38=smithi038", "smithi167:172.21.15.167=smithi167"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2023-11-30T22:55:50.756456Z", "last_refresh": "2023-11-30T23:15:56.214426Z", "running": 2, "size": 2}}, {"events": ["2023-11-30T22:58:56.311581Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2023-11-30T22:58:56.308071Z", "last_refresh": "2023-11-30T23:15:59.565359Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2023-11-30T22:54:46.136630Z", "last_refresh": "2023-11-30T23:15:56.214508Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2023-11-30T22:56:33.258058Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2023-11-30T22:56:33.253117Z", "last_refresh": "2023-11-30T23:15:56.214583Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2023-11-30T22:54:43.949497Z", "last_refresh": "2023-11-30T23:15:59.564954Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2023-11-30T22:58:52.105721Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2023-11-30T22:58:59.793467Z", "last_refresh": "2023-11-30T23:15:56.214845Z", "ports": [8800], "running": 2, "size": 2}}] 2023-11-30T23:19:27.512 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:19:27 smithi167 conmon[87022]: cluster 2023-11-30T23:19:26.077613+0000 mgr.smithi038.ldalxq (mgr.14182) 1192 : cluster [DBG] pgmap v761: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 25 KiB/s rd, 0 B/s wr, 42 op/s 2023-11-30T23:19:27.524 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:19:27 smithi038 conmon[81956]: cluster 2023-11-30T23:19:26.077613+0000 mgr.smithi038.ldalxq (mgr.14182) 1192 : cluster [DBG] pgmap v761: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 25 KiB/s rd, 0 B/s wr, 42 op/s 2023-11-30T23:19:27.776 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2023-11-30T23:19:28.512 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:19:28 smithi167 conmon[87022]: audit 2023-11-30T23:19:27.355293+0000 mgr.smithi038.ldalxq (mgr.14182) 1193 : audit [DBG] from='client.16116 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-11-30T23:19:28.524 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:19:28 smithi038 conmon[81956]: audit 2023-11-30T23:19:27.355293+0000 mgr.smithi038.ldalxq 2023-11-30T23:19:28.524 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:19:28 smithi038 conmon[81956]: (mgr.14182) 1193 : audit [DBG] from='client.16116 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-11-30T23:19:28.778 DEBUG:teuthology.orchestra.run.smithi038:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:0dc074ce0b0b3b4f393f56dd32ef36884ebf45a9 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 3faf8b00-8fd3-11ee-95a2-87774f69a715 -- ceph orch ls -f json 2023-11-30T23:19:29.512 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:19:29 smithi167 conmon[87022]: cluster 2023-11-30T23:19:28.078278+0000 mgr.smithi038.ldalxq (mgr.14182) 1194 : cluster [DBG] pgmap v762: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 4.8 KiB/s rd, 0 B/s wr, 7 op/s 2023-11-30T23:19:29.524 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:19:29 smithi038 conmon[81956]: cluster 2023-11-30T23:19:28.078278+0000 mgr.smithi038.ldalxq (mgr.14182) 1194 : cluster [DBG] pgmap v762: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 4.8 KiB/s rd, 0 B/s wr, 7 op/s 2023-11-30T23:19:30.480 INFO:teuthology.orchestra.run.smithi038.stdout: 2023-11-30T23:19:30.480 INFO:teuthology.orchestra.run.smithi038.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2023-11-30T22:54:47.122758Z", "last_refresh": "2023-11-30T23:15:59.564688Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2023-11-30T22:54:42.674972Z", "last_refresh": "2023-11-30T23:15:56.214205Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2023-11-30T22:54:45.114633Z", "last_refresh": "2023-11-30T23:15:59.564823Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2023-11-30T23:12:23.150100Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi167.nhhxhd on smithi167: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi167-nhhxhd\n/bin/podman: stderr Error: error inspecting object: no such container ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi167-nhhxhd\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi167.nhhxhd\n/bin/podman: stderr Error: error inspecting object: no such container ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi167.nhhxhd\nDeploy daemon haproxy.nfs.foo.smithi167.nhhxhd ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi167 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2023-11-30T23:10:30Z\" level=warning msg=\"failed, retrying in 1s ... (1/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-11-30T23:11:08Z\" level=warning msg=\"failed, retrying in 1s ... (2/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-11-30T23:11:45Z\" level=warning msg=\"failed, retrying in 1s ... (3/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi167 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-11-30T23:14:53.155795Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi038.njeday on smithi038: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi038-njeday\n/bin/podman: stderr Error: error inspecting object: no such container ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi038-njeday\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi038.njeday\n/bin/podman: stderr Error: error inspecting object: no such container ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi038.njeday\nDeploy daemon haproxy.nfs.foo.smithi038.njeday ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi038 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2023-11-30T23:13:00Z\" level=warning msg=\"failed, retrying in 1s ... (1/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-11-30T23:13:38Z\" level=warning msg=\"failed, retrying in 1s ... (2/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-11-30T23:14:15Z\" level=warning msg=\"failed, retrying in 1s ... (3/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi038 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-11-30T23:14:53.157035Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi038.pwduyd on smithi038: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2023-11-30T23:14:53.158104Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi167.obmcvj on smithi167: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2023-11-30T23:18:29.795059Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi167.ktqzxw on smithi167: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi167-ktqzxw\n/bin/podman: stderr Error: error inspecting object: no such container ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi167-ktqzxw\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi167.ktqzxw\n/bin/podman: stderr Error: error inspecting object: no such container ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi167.ktqzxw\nDeploy daemon haproxy.nfs.foo.smithi167.ktqzxw ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi167 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2023-11-30T23:16:36Z\" level=warning msg=\"failed, retrying in 1s ... (1/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-11-30T23:17:14Z\" level=warning msg=\"failed, retrying in 1s ... (2/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-11-30T23:17:52Z\" level=warning msg=\"failed, retrying in 1s ... (3/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi167 -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": 9049, "virtual_ip": "10.0.31.38/16"}, "status": {"created": "2023-11-30T22:58:56.312786Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.38/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2023-11-30T22:54:41.668043Z", "last_refresh": "2023-11-30T23:15:56.214350Z", "running": 2, "size": 2}}, {"events": ["2023-11-30T22:55:50.759225Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi038:172.21.15.38=smithi038", "smithi167:172.21.15.167=smithi167"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2023-11-30T22:55:50.756456Z", "last_refresh": "2023-11-30T23:15:56.214426Z", "running": 2, "size": 2}}, {"events": ["2023-11-30T22:58:56.311581Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2023-11-30T22:58:56.308071Z", "last_refresh": "2023-11-30T23:15:59.565359Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2023-11-30T22:54:46.136630Z", "last_refresh": "2023-11-30T23:15:56.214508Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2023-11-30T22:56:33.258058Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2023-11-30T22:56:33.253117Z", "last_refresh": "2023-11-30T23:15:56.214583Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2023-11-30T22:54:43.949497Z", "last_refresh": "2023-11-30T23:15:59.564954Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2023-11-30T22:58:52.105721Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2023-11-30T22:58:59.793467Z", "last_refresh": "2023-11-30T23:15:56.214845Z", "ports": [8800], "running": 2, "size": 2}}] 2023-11-30T23:19:30.940 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2023-11-30T23:19:31.512 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:19:31 smithi167 conmon[87022]: cluster 2023-11-30T23:19:30.078949+0000 mgr.smithi038.ldalxq (mgr.14182) 1195 : cluster [DBG] pgmap v763: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 4.1 KiB/s rd, 0 B/s wr, 6 op/s 2023-11-30T23:19:31.512 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:19:31 smithi167 conmon[87022]: audit 2023-11-30T23:19:30.475935+0000 mgr.smithi038.ldalxq (mgr.14182) 1196 : audit [DBG] from='client.16120 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-11-30T23:19:31.524 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:19:31 smithi038 conmon[81956]: cluster 2023-11-30T23:19:30.078949+0000 mgr.smithi038.ldalxq (mgr.14182) 1195 : cluster [DBG] pgmap v763: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 4.1 KiB/s rd, 0 B/s wr, 6 op/s 2023-11-30T23:19:31.524 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:19:31 smithi038 conmon[81956]: audit 2023-11-30T23:19:30.475935+0000 mgr.smithi038.ldalxq (mgr.14182) 1196 : audit [DBG] from='client.16120 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-11-30T23:19:31.941 DEBUG:teuthology.orchestra.run.smithi038:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:0dc074ce0b0b3b4f393f56dd32ef36884ebf45a9 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 3faf8b00-8fd3-11ee-95a2-87774f69a715 -- ceph orch ls -f json 2023-11-30T23:19:33.262 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:19:32 smithi167 conmon[87022]: cluster 2023-11-30T23:19:32.079464+0000 mgr.smithi038.ldalxq (mgr.14182) 1197 : cluster [DBG] pgmap v764: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 1.8 KiB/s rd, 0 B/s wr, 2 op/s 2023-11-30T23:19:33.274 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:19:32 smithi038 conmon[81956]: cluster 2023-11-30T23:19:32.079464+0000 mgr.smithi038.ldalxq (mgr.14182) 1197 : cluster [DBG] pgmap v764: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 1.8 KiB/s rd, 0 B/s wr, 2 op/s 2023-11-30T23:19:33.774 INFO:teuthology.orchestra.run.smithi038.stdout: 2023-11-30T23:19:33.774 INFO:teuthology.orchestra.run.smithi038.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2023-11-30T22:54:47.122758Z", "last_refresh": "2023-11-30T23:15:59.564688Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2023-11-30T22:54:42.674972Z", "last_refresh": "2023-11-30T23:15:56.214205Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2023-11-30T22:54:45.114633Z", "last_refresh": "2023-11-30T23:15:59.564823Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2023-11-30T23:12:23.150100Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi167.nhhxhd on smithi167: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi167-nhhxhd\n/bin/podman: stderr Error: error inspecting object: no such container ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi167-nhhxhd\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi167.nhhxhd\n/bin/podman: stderr Error: error inspecting object: no such container ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi167.nhhxhd\nDeploy daemon haproxy.nfs.foo.smithi167.nhhxhd ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi167 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2023-11-30T23:10:30Z\" level=warning msg=\"failed, retrying in 1s ... (1/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-11-30T23:11:08Z\" level=warning msg=\"failed, retrying in 1s ... (2/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-11-30T23:11:45Z\" level=warning msg=\"failed, retrying in 1s ... (3/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi167 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-11-30T23:14:53.155795Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi038.njeday on smithi038: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi038-njeday\n/bin/podman: stderr Error: error inspecting object: no such container ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi038-njeday\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi038.njeday\n/bin/podman: stderr Error: error inspecting object: no such container ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi038.njeday\nDeploy daemon haproxy.nfs.foo.smithi038.njeday ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi038 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2023-11-30T23:13:00Z\" level=warning msg=\"failed, retrying in 1s ... (1/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-11-30T23:13:38Z\" level=warning msg=\"failed, retrying in 1s ... (2/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-11-30T23:14:15Z\" level=warning msg=\"failed, retrying in 1s ... (3/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi038 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-11-30T23:14:53.157035Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi038.pwduyd on smithi038: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2023-11-30T23:14:53.158104Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi167.obmcvj on smithi167: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2023-11-30T23:18:29.795059Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi167.ktqzxw on smithi167: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi167-ktqzxw\n/bin/podman: stderr Error: error inspecting object: no such container ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi167-ktqzxw\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi167.ktqzxw\n/bin/podman: stderr Error: error inspecting object: no such container ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi167.ktqzxw\nDeploy daemon haproxy.nfs.foo.smithi167.ktqzxw ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi167 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2023-11-30T23:16:36Z\" level=warning msg=\"failed, retrying in 1s ... (1/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-11-30T23:17:14Z\" level=warning msg=\"failed, retrying in 1s ... (2/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-11-30T23:17:52Z\" level=warning msg=\"failed, retrying in 1s ... (3/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi167 -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": 9049, "virtual_ip": "10.0.31.38/16"}, "status": {"created": "2023-11-30T22:58:56.312786Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.38/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2023-11-30T22:54:41.668043Z", "last_refresh": "2023-11-30T23:15:56.214350Z", "running": 2, "size": 2}}, {"events": ["2023-11-30T22:55:50.759225Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi038:172.21.15.38=smithi038", "smithi167:172.21.15.167=smithi167"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2023-11-30T22:55:50.756456Z", "last_refresh": "2023-11-30T23:15:56.214426Z", "running": 2, "size": 2}}, {"events": ["2023-11-30T22:58:56.311581Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2023-11-30T22:58:56.308071Z", "last_refresh": "2023-11-30T23:15:59.565359Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2023-11-30T22:54:46.136630Z", "last_refresh": "2023-11-30T23:15:56.214508Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2023-11-30T22:56:33.258058Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2023-11-30T22:56:33.253117Z", "last_refresh": "2023-11-30T23:15:56.214583Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2023-11-30T22:54:43.949497Z", "last_refresh": "2023-11-30T23:15:59.564954Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2023-11-30T22:58:52.105721Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2023-11-30T22:58:59.793467Z", "last_refresh": "2023-11-30T23:15:56.214845Z", "ports": [8800], "running": 2, "size": 2}}] 2023-11-30T23:19:34.166 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:19:33 smithi038 conmon[81956]: audit 2023-11-30T23:19:33.770057+0000 mgr.smithi038.ldalxq (mgr.14182) 1198 : audit [DBG] from='client.16124 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-11-30T23:19:34.198 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2023-11-30T23:19:34.262 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:19:33 smithi167 conmon[87022]: audit 2023-11-30T23:19:33.770057+0000 mgr.smithi038.ldalxq (mgr.14182) 1198 : audit [DBG] from='client.16124 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-11-30T23:19:35.199 DEBUG:teuthology.orchestra.run.smithi038:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:0dc074ce0b0b3b4f393f56dd32ef36884ebf45a9 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 3faf8b00-8fd3-11ee-95a2-87774f69a715 -- ceph orch ls -f json 2023-11-30T23:19:35.262 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:19:34 smithi167 conmon[87022]: cluster 2023-11-30T23:19:34.080079+0000 mgr.smithi038.ldalxq (mgr.14182) 1199 : cluster [DBG] pgmap v765: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 938 B/s rd, 0 B/s wr, 1 op/s 2023-11-30T23:19:35.274 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:19:34 smithi038 conmon[81956]: cluster 2023-11-30T23:19:34.080079+0000 mgr.smithi038.ldalxq (mgr.14182) 1199 : cluster [DBG] pgmap v765: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 938 B/s rd, 0 B/s wr, 1 op/s 2023-11-30T23:19:36.928 INFO:teuthology.orchestra.run.smithi038.stdout: 2023-11-30T23:19:36.929 INFO:teuthology.orchestra.run.smithi038.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2023-11-30T22:54:47.122758Z", "last_refresh": "2023-11-30T23:15:59.564688Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2023-11-30T22:54:42.674972Z", "last_refresh": "2023-11-30T23:15:56.214205Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2023-11-30T22:54:45.114633Z", "last_refresh": "2023-11-30T23:15:59.564823Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2023-11-30T23:12:23.150100Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi167.nhhxhd on smithi167: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi167-nhhxhd\n/bin/podman: stderr Error: error inspecting object: no such container ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi167-nhhxhd\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi167.nhhxhd\n/bin/podman: stderr Error: error inspecting object: no such container ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi167.nhhxhd\nDeploy daemon haproxy.nfs.foo.smithi167.nhhxhd ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi167 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2023-11-30T23:10:30Z\" level=warning msg=\"failed, retrying in 1s ... (1/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-11-30T23:11:08Z\" level=warning msg=\"failed, retrying in 1s ... (2/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-11-30T23:11:45Z\" level=warning msg=\"failed, retrying in 1s ... (3/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi167 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-11-30T23:14:53.155795Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi038.njeday on smithi038: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi038-njeday\n/bin/podman: stderr Error: error inspecting object: no such container ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi038-njeday\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi038.njeday\n/bin/podman: stderr Error: error inspecting object: no such container ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi038.njeday\nDeploy daemon haproxy.nfs.foo.smithi038.njeday ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi038 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2023-11-30T23:13:00Z\" level=warning msg=\"failed, retrying in 1s ... (1/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-11-30T23:13:38Z\" level=warning msg=\"failed, retrying in 1s ... (2/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-11-30T23:14:15Z\" level=warning msg=\"failed, retrying in 1s ... (3/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi038 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-11-30T23:14:53.157035Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi038.pwduyd on smithi038: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2023-11-30T23:14:53.158104Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi167.obmcvj on smithi167: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2023-11-30T23:18:29.795059Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi167.ktqzxw on smithi167: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi167-ktqzxw\n/bin/podman: stderr Error: error inspecting object: no such container ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi167-ktqzxw\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi167.ktqzxw\n/bin/podman: stderr Error: error inspecting object: no such container ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi167.ktqzxw\nDeploy daemon haproxy.nfs.foo.smithi167.ktqzxw ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi167 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2023-11-30T23:16:36Z\" level=warning msg=\"failed, retrying in 1s ... (1/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-11-30T23:17:14Z\" level=warning msg=\"failed, retrying in 1s ... (2/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-11-30T23:17:52Z\" level=warning msg=\"failed, retrying in 1s ... (3/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi167 -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": 9049, "virtual_ip": "10.0.31.38/16"}, "status": {"created": "2023-11-30T22:58:56.312786Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.38/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2023-11-30T22:54:41.668043Z", "last_refresh": "2023-11-30T23:15:56.214350Z", "running": 2, "size": 2}}, {"events": ["2023-11-30T22:55:50.759225Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi038:172.21.15.38=smithi038", "smithi167:172.21.15.167=smithi167"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2023-11-30T22:55:50.756456Z", "last_refresh": "2023-11-30T23:15:56.214426Z", "running": 2, "size": 2}}, {"events": ["2023-11-30T22:58:56.311581Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2023-11-30T22:58:56.308071Z", "last_refresh": "2023-11-30T23:15:59.565359Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2023-11-30T22:54:46.136630Z", "last_refresh": "2023-11-30T23:15:56.214508Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2023-11-30T22:56:33.258058Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2023-11-30T22:56:33.253117Z", "last_refresh": "2023-11-30T23:15:56.214583Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2023-11-30T22:54:43.949497Z", "last_refresh": "2023-11-30T23:15:59.564954Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2023-11-30T22:58:52.105721Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2023-11-30T22:58:59.793467Z", "last_refresh": "2023-11-30T23:15:56.214845Z", "ports": [8800], "running": 2, "size": 2}}] 2023-11-30T23:19:37.274 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:19:37 smithi038 conmon[81956]: cluster 2023-11-30T23:19:36.080759+0000 mgr.smithi038.ldalxq (mgr.14182) 1200 : cluster [DBG] pgmap v766: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2023-11-30T23:19:37.362 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2023-11-30T23:19:37.512 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:19:37 smithi167 conmon[87022]: cluster 2023-11-30T23:19:36.080759+0000 mgr.smithi038.ldalxq (mgr.14182) 1200 : cluster [DBG] 2023-11-30T23:19:37.512 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:19:37 smithi167 conmon[87022]: pgmap v766: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2023-11-30T23:19:38.363 DEBUG:teuthology.orchestra.run.smithi038:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:0dc074ce0b0b3b4f393f56dd32ef36884ebf45a9 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 3faf8b00-8fd3-11ee-95a2-87774f69a715 -- ceph orch ls -f json 2023-11-30T23:19:38.397 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:19:38 smithi038 conmon[81956]: audit 2023-11-30T23:19:36.924297+0000 mgr.smithi038.ldalxq ( 2023-11-30T23:19:38.397 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:19:38 smithi038 conmon[81956]: mgr.14182) 1201 : audit [DBG] from='client.16128 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-11-30T23:19:38.512 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:19:38 smithi167 conmon[87022]: audit 2023-11-30T23:19:36.924297+0000 mgr.smithi038.ldalxq (mgr.14182) 1201 : 2023-11-30T23:19:38.512 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:19:38 smithi167 conmon[87022]: audit [DBG] from='client.16128 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-11-30T23:19:39.274 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:19:39 smithi038 conmon[81956]: cluster 2023-11-30T23:19:38.081431+0000 mgr.smithi038.ldalxq (mgr.14182) 1202 : cluster [DBG] pgmap v767: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2023-11-30T23:19:39.512 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:19:39 smithi167 conmon[87022]: cluster 2023-11-30T23:19:38.081431+0000 mgr.smithi038.ldalxq (mgr.14182) 1202 : 2023-11-30T23:19:39.512 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:19:39 smithi167 conmon[87022]: cluster [DBG] pgmap v767: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2023-11-30T23:19:40.082 INFO:teuthology.orchestra.run.smithi038.stdout: 2023-11-30T23:19:40.082 INFO:teuthology.orchestra.run.smithi038.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2023-11-30T22:54:47.122758Z", "last_refresh": "2023-11-30T23:15:59.564688Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2023-11-30T22:54:42.674972Z", "last_refresh": "2023-11-30T23:15:56.214205Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2023-11-30T22:54:45.114633Z", "last_refresh": "2023-11-30T23:15:59.564823Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2023-11-30T23:12:23.150100Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi167.nhhxhd on smithi167: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi167-nhhxhd\n/bin/podman: stderr Error: error inspecting object: no such container ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi167-nhhxhd\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi167.nhhxhd\n/bin/podman: stderr Error: error inspecting object: no such container ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi167.nhhxhd\nDeploy daemon haproxy.nfs.foo.smithi167.nhhxhd ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi167 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2023-11-30T23:10:30Z\" level=warning msg=\"failed, retrying in 1s ... (1/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-11-30T23:11:08Z\" level=warning msg=\"failed, retrying in 1s ... (2/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-11-30T23:11:45Z\" level=warning msg=\"failed, retrying in 1s ... (3/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi167 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-11-30T23:14:53.155795Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi038.njeday on smithi038: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi038-njeday\n/bin/podman: stderr Error: error inspecting object: no such container ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi038-njeday\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi038.njeday\n/bin/podman: stderr Error: error inspecting object: no such container ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi038.njeday\nDeploy daemon haproxy.nfs.foo.smithi038.njeday ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi038 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2023-11-30T23:13:00Z\" level=warning msg=\"failed, retrying in 1s ... (1/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-11-30T23:13:38Z\" level=warning msg=\"failed, retrying in 1s ... (2/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-11-30T23:14:15Z\" level=warning msg=\"failed, retrying in 1s ... (3/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi038 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-11-30T23:14:53.157035Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi038.pwduyd on smithi038: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2023-11-30T23:14:53.158104Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi167.obmcvj on smithi167: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2023-11-30T23:18:29.795059Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi167.ktqzxw on smithi167: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi167-ktqzxw\n/bin/podman: stderr Error: error inspecting object: no such container ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi167-ktqzxw\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi167.ktqzxw\n/bin/podman: stderr Error: error inspecting object: no such container ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi167.ktqzxw\nDeploy daemon haproxy.nfs.foo.smithi167.ktqzxw ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi167 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2023-11-30T23:16:36Z\" level=warning msg=\"failed, retrying in 1s ... (1/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-11-30T23:17:14Z\" level=warning msg=\"failed, retrying in 1s ... (2/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-11-30T23:17:52Z\" level=warning msg=\"failed, retrying in 1s ... (3/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi167 -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": 9049, "virtual_ip": "10.0.31.38/16"}, "status": {"created": "2023-11-30T22:58:56.312786Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.38/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2023-11-30T22:54:41.668043Z", "last_refresh": "2023-11-30T23:15:56.214350Z", "running": 2, "size": 2}}, {"events": ["2023-11-30T22:55:50.759225Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi038:172.21.15.38=smithi038", "smithi167:172.21.15.167=smithi167"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2023-11-30T22:55:50.756456Z", "last_refresh": "2023-11-30T23:15:56.214426Z", "running": 2, "size": 2}}, {"events": ["2023-11-30T22:58:56.311581Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2023-11-30T22:58:56.308071Z", "last_refresh": "2023-11-30T23:15:59.565359Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2023-11-30T22:54:46.136630Z", "last_refresh": "2023-11-30T23:15:56.214508Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2023-11-30T22:56:33.258058Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2023-11-30T22:56:33.253117Z", "last_refresh": "2023-11-30T23:15:56.214583Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2023-11-30T22:54:43.949497Z", "last_refresh": "2023-11-30T23:15:59.564954Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2023-11-30T22:58:52.105721Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2023-11-30T22:58:59.793467Z", "last_refresh": "2023-11-30T23:15:56.214845Z", "ports": [8800], "running": 2, "size": 2}}] 2023-11-30T23:19:40.525 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2023-11-30T23:19:41.512 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:19:41 smithi167 conmon[87022]: audit 2023-11-30T23:19: 2023-11-30T23:19:41.512 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:19:41 smithi167 conmon[87022]: 40.077759+0000 mgr.smithi038.ldalxq (mgr.14182) 1203 : audit [DBG] from='client.16132 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-11-30T23:19:41.512 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:19:41 smithi167 conmon[87022]: cluster 2023-11-30T23:19:40.082146+0000 mgr.smithi038.ldalxq (mgr.14182) 1204 : cluster [DBG] pgmap v768: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2023-11-30T23:19:41.524 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:19:41 smithi038 conmon[81956]: audit 2023-11-30T23:19:40.077759+0000 mgr.smithi038.ldalxq (mgr.14182) 1203 : audit [DBG] from='client.16132 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-11-30T23:19:41.524 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:19:41 smithi038 conmon[81956]: cluster 2023-11-30T23:19:40.082146+0000 mgr.smithi038.ldalxq (mgr.14182) 1204 : cluster [DBG] pgmap v768: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2023-11-30T23:19:41.526 DEBUG:teuthology.orchestra.run.smithi038:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:0dc074ce0b0b3b4f393f56dd32ef36884ebf45a9 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 3faf8b00-8fd3-11ee-95a2-87774f69a715 -- ceph orch ls -f json 2023-11-30T23:19:43.262 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:19:42 smithi167 conmon[87022]: cluster 2023-11-30T23:19:42.082723+0000 mgr.smithi038.ldalxq (mgr.14182) 1205 2023-11-30T23:19:43.262 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:19:42 smithi167 conmon[87022]: : cluster [DBG] pgmap v769: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2023-11-30T23:19:43.274 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:19:42 smithi038 conmon[81956]: cluster 2023-11-30T23:19:42.082723+0000 mgr.smithi038.ldalxq (mgr 2023-11-30T23:19:43.275 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:19:42 smithi038 conmon[81956]: .14182) 1205 : cluster [DBG] pgmap v769: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2023-11-30T23:19:43.353 INFO:teuthology.orchestra.run.smithi038.stdout: 2023-11-30T23:19:43.353 INFO:teuthology.orchestra.run.smithi038.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2023-11-30T22:54:47.122758Z", "last_refresh": "2023-11-30T23:15:59.564688Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2023-11-30T22:54:42.674972Z", "last_refresh": "2023-11-30T23:15:56.214205Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2023-11-30T22:54:45.114633Z", "last_refresh": "2023-11-30T23:15:59.564823Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2023-11-30T23:12:23.150100Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi167.nhhxhd on smithi167: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi167-nhhxhd\n/bin/podman: stderr Error: error inspecting object: no such container ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi167-nhhxhd\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi167.nhhxhd\n/bin/podman: stderr Error: error inspecting object: no such container ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi167.nhhxhd\nDeploy daemon haproxy.nfs.foo.smithi167.nhhxhd ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi167 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2023-11-30T23:10:30Z\" level=warning msg=\"failed, retrying in 1s ... (1/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-11-30T23:11:08Z\" level=warning msg=\"failed, retrying in 1s ... (2/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-11-30T23:11:45Z\" level=warning msg=\"failed, retrying in 1s ... (3/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi167 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-11-30T23:14:53.155795Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi038.njeday on smithi038: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi038-njeday\n/bin/podman: stderr Error: error inspecting object: no such container ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi038-njeday\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi038.njeday\n/bin/podman: stderr Error: error inspecting object: no such container ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi038.njeday\nDeploy daemon haproxy.nfs.foo.smithi038.njeday ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi038 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2023-11-30T23:13:00Z\" level=warning msg=\"failed, retrying in 1s ... (1/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-11-30T23:13:38Z\" level=warning msg=\"failed, retrying in 1s ... (2/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-11-30T23:14:15Z\" level=warning msg=\"failed, retrying in 1s ... (3/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi038 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-11-30T23:14:53.157035Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi038.pwduyd on smithi038: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2023-11-30T23:14:53.158104Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi167.obmcvj on smithi167: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2023-11-30T23:18:29.795059Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi167.ktqzxw on smithi167: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi167-ktqzxw\n/bin/podman: stderr Error: error inspecting object: no such container ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi167-ktqzxw\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi167.ktqzxw\n/bin/podman: stderr Error: error inspecting object: no such container ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi167.ktqzxw\nDeploy daemon haproxy.nfs.foo.smithi167.ktqzxw ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi167 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2023-11-30T23:16:36Z\" level=warning msg=\"failed, retrying in 1s ... (1/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-11-30T23:17:14Z\" level=warning msg=\"failed, retrying in 1s ... (2/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-11-30T23:17:52Z\" level=warning msg=\"failed, retrying in 1s ... (3/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi167 -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": 9049, "virtual_ip": "10.0.31.38/16"}, "status": {"created": "2023-11-30T22:58:56.312786Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.38/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2023-11-30T22:54:41.668043Z", "last_refresh": "2023-11-30T23:15:56.214350Z", "running": 2, "size": 2}}, {"events": ["2023-11-30T22:55:50.759225Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi038:172.21.15.38=smithi038", "smithi167:172.21.15.167=smithi167"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2023-11-30T22:55:50.756456Z", "last_refresh": "2023-11-30T23:15:56.214426Z", "running": 2, "size": 2}}, {"events": ["2023-11-30T22:58:56.311581Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2023-11-30T22:58:56.308071Z", "last_refresh": "2023-11-30T23:15:59.565359Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2023-11-30T22:54:46.136630Z", "last_refresh": "2023-11-30T23:15:56.214508Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2023-11-30T22:56:33.258058Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2023-11-30T22:56:33.253117Z", "last_refresh": "2023-11-30T23:15:56.214583Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2023-11-30T22:54:43.949497Z", "last_refresh": "2023-11-30T23:15:59.564954Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2023-11-30T22:58:52.105721Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2023-11-30T22:58:59.793467Z", "last_refresh": "2023-11-30T23:15:56.214845Z", "ports": [8800], "running": 2, "size": 2}}] 2023-11-30T23:19:43.788 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2023-11-30T23:19:44.262 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:19:43 smithi167 conmon[87022]: audit 2023-11-30T23:19:43.349119+0000 mgr.smithi038.ldalxq (mgr.14182) 2023-11-30T23:19:44.262 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:19:43 smithi167 conmon[87022]: 1206 : audit [DBG] from='client.16136 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-11-30T23:19:44.274 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:19:43 smithi038 conmon[81956]: audit 2023-11-30T23:19:43.349119+0000 mgr.smithi038.ldalxq (mgr.14182) 1206 : audit [DBG] from='client.16136 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-11-30T23:19:44.789 DEBUG:teuthology.orchestra.run.smithi038:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:0dc074ce0b0b3b4f393f56dd32ef36884ebf45a9 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 3faf8b00-8fd3-11ee-95a2-87774f69a715 -- ceph orch ls -f json 2023-11-30T23:19:45.262 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:19:45 smithi167 conmon[87022]: cluster 2023-11-30T23:19:44.083453+0000 mgr.smithi038.ldalxq (mgr.14182) 1207 : cluster 2023-11-30T23:19:45.262 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:19:45 smithi167 conmon[87022]: [DBG] pgmap v770: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2023-11-30T23:19:45.274 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:19:45 smithi038 conmon[81956]: cluster 2023-11-30T23:19:44.083453+0000 mgr.smithi038.ldalxq ( 2023-11-30T23:19:45.274 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:19:45 smithi038 conmon[81956]: mgr.14182) 1207 : cluster [DBG] pgmap v770: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2023-11-30T23:19:46.551 INFO:teuthology.orchestra.run.smithi038.stdout: 2023-11-30T23:19:46.551 INFO:teuthology.orchestra.run.smithi038.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2023-11-30T22:54:47.122758Z", "last_refresh": "2023-11-30T23:15:59.564688Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2023-11-30T22:54:42.674972Z", "last_refresh": "2023-11-30T23:15:56.214205Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2023-11-30T22:54:45.114633Z", "last_refresh": "2023-11-30T23:15:59.564823Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2023-11-30T23:12:23.150100Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi167.nhhxhd on smithi167: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi167-nhhxhd\n/bin/podman: stderr Error: error inspecting object: no such container ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi167-nhhxhd\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi167.nhhxhd\n/bin/podman: stderr Error: error inspecting object: no such container ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi167.nhhxhd\nDeploy daemon haproxy.nfs.foo.smithi167.nhhxhd ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi167 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2023-11-30T23:10:30Z\" level=warning msg=\"failed, retrying in 1s ... (1/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-11-30T23:11:08Z\" level=warning msg=\"failed, retrying in 1s ... (2/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-11-30T23:11:45Z\" level=warning msg=\"failed, retrying in 1s ... (3/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi167 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-11-30T23:14:53.155795Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi038.njeday on smithi038: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi038-njeday\n/bin/podman: stderr Error: error inspecting object: no such container ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi038-njeday\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi038.njeday\n/bin/podman: stderr Error: error inspecting object: no such container ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi038.njeday\nDeploy daemon haproxy.nfs.foo.smithi038.njeday ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi038 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2023-11-30T23:13:00Z\" level=warning msg=\"failed, retrying in 1s ... (1/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-11-30T23:13:38Z\" level=warning msg=\"failed, retrying in 1s ... (2/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-11-30T23:14:15Z\" level=warning msg=\"failed, retrying in 1s ... (3/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi038 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-11-30T23:14:53.157035Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi038.pwduyd on smithi038: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2023-11-30T23:14:53.158104Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi167.obmcvj on smithi167: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2023-11-30T23:18:29.795059Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi167.ktqzxw on smithi167: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi167-ktqzxw\n/bin/podman: stderr Error: error inspecting object: no such container ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi167-ktqzxw\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi167.ktqzxw\n/bin/podman: stderr Error: error inspecting object: no such container ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi167.ktqzxw\nDeploy daemon haproxy.nfs.foo.smithi167.ktqzxw ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi167 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2023-11-30T23:16:36Z\" level=warning msg=\"failed, retrying in 1s ... (1/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-11-30T23:17:14Z\" level=warning msg=\"failed, retrying in 1s ... (2/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-11-30T23:17:52Z\" level=warning msg=\"failed, retrying in 1s ... (3/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi167 -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": 9049, "virtual_ip": "10.0.31.38/16"}, "status": {"created": "2023-11-30T22:58:56.312786Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.38/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2023-11-30T22:54:41.668043Z", "last_refresh": "2023-11-30T23:15:56.214350Z", "running": 2, "size": 2}}, {"events": ["2023-11-30T22:55:50.759225Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi038:172.21.15.38=smithi038", "smithi167:172.21.15.167=smithi167"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2023-11-30T22:55:50.756456Z", "last_refresh": "2023-11-30T23:15:56.214426Z", "running": 2, "size": 2}}, {"events": ["2023-11-30T22:58:56.311581Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2023-11-30T22:58:56.308071Z", "last_refresh": "2023-11-30T23:15:59.565359Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2023-11-30T22:54:46.136630Z", "last_refresh": "2023-11-30T23:15:56.214508Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2023-11-30T22:56:33.258058Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2023-11-30T22:56:33.253117Z", "last_refresh": "2023-11-30T23:15:56.214583Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2023-11-30T22:54:43.949497Z", "last_refresh": "2023-11-30T23:15:59.564954Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2023-11-30T22:58:52.105721Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2023-11-30T22:58:59.793467Z", "last_refresh": "2023-11-30T23:15:56.214845Z", "ports": [8800], "running": 2, "size": 2}}] 2023-11-30T23:19:46.951 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2023-11-30T23:19:47.274 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:19:47 smithi038 conmon[81956]: cluster 2023-11-30T23:19:46.084085+0000 mgr.smithi038.ldalxq (mgr.14182) 1208 : cluster [DBG] pgmap v771: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2023-11-30T23:19:47.274 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:19:47 smithi038 conmon[81956]: audit 2023-11-30T23:19:46.547016+0000 mgr.smithi038.ldalxq (mgr.14182) 1209 : audit [DBG] from='client.16140 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-11-30T23:19:47.512 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:19:47 smithi167 conmon[87022]: cluster 2023-11-30T23:19:46.084085+0000 mgr.smithi038.ldalxq (mgr.14182) 1208 : cluster [DBG] pgmap v771: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2023-11-30T23:19:47.512 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:19:47 smithi167 conmon[87022]: audit 2023-11-30T23:19:46.547016+0000 mgr.smithi038.ldalxq (mgr.14182) 1209 : audit [DBG] from='client.16140 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-11-30T23:19:47.952 DEBUG:teuthology.orchestra.run.smithi038:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:0dc074ce0b0b3b4f393f56dd32ef36884ebf45a9 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 3faf8b00-8fd3-11ee-95a2-87774f69a715 -- ceph orch ls -f json 2023-11-30T23:19:49.512 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:19:49 smithi167 conmon[87022]: cluster 2023-11-30T23:19:48.084787+0000 mgr.smithi038.ldalxq (mgr.14182) 1210 : cluster [DBG] pgmap v772: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2023-11-30T23:19:49.524 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:19:49 smithi038 conmon[81956]: cluster 2023-11-30T23:19:48.084787+0000 mgr.smithi038.ldalxq (mgr.14182) 1210 : cluster [DBG] pgmap v772: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2023-11-30T23:19:49.700 INFO:teuthology.orchestra.run.smithi038.stdout: 2023-11-30T23:19:49.701 INFO:teuthology.orchestra.run.smithi038.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2023-11-30T22:54:47.122758Z", "last_refresh": "2023-11-30T23:15:59.564688Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2023-11-30T22:54:42.674972Z", "last_refresh": "2023-11-30T23:15:56.214205Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2023-11-30T22:54:45.114633Z", "last_refresh": "2023-11-30T23:15:59.564823Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2023-11-30T23:12:23.150100Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi167.nhhxhd on smithi167: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi167-nhhxhd\n/bin/podman: stderr Error: error inspecting object: no such container ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi167-nhhxhd\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi167.nhhxhd\n/bin/podman: stderr Error: error inspecting object: no such container ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi167.nhhxhd\nDeploy daemon haproxy.nfs.foo.smithi167.nhhxhd ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi167 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2023-11-30T23:10:30Z\" level=warning msg=\"failed, retrying in 1s ... (1/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-11-30T23:11:08Z\" level=warning msg=\"failed, retrying in 1s ... (2/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-11-30T23:11:45Z\" level=warning msg=\"failed, retrying in 1s ... (3/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi167 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-11-30T23:14:53.155795Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi038.njeday on smithi038: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi038-njeday\n/bin/podman: stderr Error: error inspecting object: no such container ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi038-njeday\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi038.njeday\n/bin/podman: stderr Error: error inspecting object: no such container ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi038.njeday\nDeploy daemon haproxy.nfs.foo.smithi038.njeday ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi038 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2023-11-30T23:13:00Z\" level=warning msg=\"failed, retrying in 1s ... (1/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-11-30T23:13:38Z\" level=warning msg=\"failed, retrying in 1s ... (2/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-11-30T23:14:15Z\" level=warning msg=\"failed, retrying in 1s ... (3/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi038 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-11-30T23:14:53.157035Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi038.pwduyd on smithi038: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2023-11-30T23:14:53.158104Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi167.obmcvj on smithi167: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2023-11-30T23:18:29.795059Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi167.ktqzxw on smithi167: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi167-ktqzxw\n/bin/podman: stderr Error: error inspecting object: no such container ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi167-ktqzxw\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi167.ktqzxw\n/bin/podman: stderr Error: error inspecting object: no such container ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi167.ktqzxw\nDeploy daemon haproxy.nfs.foo.smithi167.ktqzxw ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi167 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2023-11-30T23:16:36Z\" level=warning msg=\"failed, retrying in 1s ... (1/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-11-30T23:17:14Z\" level=warning msg=\"failed, retrying in 1s ... (2/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-11-30T23:17:52Z\" level=warning msg=\"failed, retrying in 1s ... (3/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi167 -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": 9049, "virtual_ip": "10.0.31.38/16"}, "status": {"created": "2023-11-30T22:58:56.312786Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.38/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2023-11-30T22:54:41.668043Z", "last_refresh": "2023-11-30T23:15:56.214350Z", "running": 2, "size": 2}}, {"events": ["2023-11-30T22:55:50.759225Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi038:172.21.15.38=smithi038", "smithi167:172.21.15.167=smithi167"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2023-11-30T22:55:50.756456Z", "last_refresh": "2023-11-30T23:15:56.214426Z", "running": 2, "size": 2}}, {"events": ["2023-11-30T22:58:56.311581Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2023-11-30T22:58:56.308071Z", "last_refresh": "2023-11-30T23:15:59.565359Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2023-11-30T22:54:46.136630Z", "last_refresh": "2023-11-30T23:15:56.214508Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2023-11-30T22:56:33.258058Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2023-11-30T22:56:33.253117Z", "last_refresh": "2023-11-30T23:15:56.214583Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2023-11-30T22:54:43.949497Z", "last_refresh": "2023-11-30T23:15:59.564954Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2023-11-30T22:58:52.105721Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2023-11-30T22:58:59.793467Z", "last_refresh": "2023-11-30T23:15:56.214845Z", "ports": [8800], "running": 2, "size": 2}}] 2023-11-30T23:19:50.099 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2023-11-30T23:19:50.511 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:19:50 smithi167 conmon[87022]: audit 2023-11-30T23:19:49.696299+0000 mgr.smithi038.ldalxq (mgr.14182) 1211 : audit [DBG] from='client.16144 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-11-30T23:19:50.524 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:19:50 smithi038 conmon[81956]: audit 2023-11-30T23:19:49.696299+0000 mgr.smithi038.ldalxq ( 2023-11-30T23:19:50.524 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:19:50 smithi038 conmon[81956]: mgr.14182) 1211 : audit [DBG] from='client.16144 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-11-30T23:19:51.100 DEBUG:teuthology.orchestra.run.smithi038:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:0dc074ce0b0b3b4f393f56dd32ef36884ebf45a9 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 3faf8b00-8fd3-11ee-95a2-87774f69a715 -- ceph orch ls -f json 2023-11-30T23:19:51.512 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:19:51 smithi167 conmon[87022]: cluster 2023-11-30T23:19:50.085541+0000 mgr.smithi038.ldalxq (mgr.14182) 1212 : cluster [DBG] pgmap v773: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2023-11-30T23:19:51.524 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:19:51 smithi038 conmon[81956]: cluster 2023-11-30T23:19:50.085541+0000 mgr.smithi038.ldalxq (mgr.14182) 1212 : 2023-11-30T23:19:51.524 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:19:51 smithi038 conmon[81956]: cluster [DBG] pgmap v773: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2023-11-30T23:19:52.833 INFO:teuthology.orchestra.run.smithi038.stdout: 2023-11-30T23:19:52.833 INFO:teuthology.orchestra.run.smithi038.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2023-11-30T22:54:47.122758Z", "last_refresh": "2023-11-30T23:15:59.564688Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2023-11-30T22:54:42.674972Z", "last_refresh": "2023-11-30T23:15:56.214205Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2023-11-30T22:54:45.114633Z", "last_refresh": "2023-11-30T23:15:59.564823Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2023-11-30T23:12:23.150100Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi167.nhhxhd on smithi167: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi167-nhhxhd\n/bin/podman: stderr Error: error inspecting object: no such container ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi167-nhhxhd\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi167.nhhxhd\n/bin/podman: stderr Error: error inspecting object: no such container ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi167.nhhxhd\nDeploy daemon haproxy.nfs.foo.smithi167.nhhxhd ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi167 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2023-11-30T23:10:30Z\" level=warning msg=\"failed, retrying in 1s ... (1/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-11-30T23:11:08Z\" level=warning msg=\"failed, retrying in 1s ... (2/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-11-30T23:11:45Z\" level=warning msg=\"failed, retrying in 1s ... (3/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi167 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-11-30T23:14:53.155795Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi038.njeday on smithi038: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi038-njeday\n/bin/podman: stderr Error: error inspecting object: no such container ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi038-njeday\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi038.njeday\n/bin/podman: stderr Error: error inspecting object: no such container ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi038.njeday\nDeploy daemon haproxy.nfs.foo.smithi038.njeday ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi038 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2023-11-30T23:13:00Z\" level=warning msg=\"failed, retrying in 1s ... (1/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-11-30T23:13:38Z\" level=warning msg=\"failed, retrying in 1s ... (2/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-11-30T23:14:15Z\" level=warning msg=\"failed, retrying in 1s ... (3/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi038 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-11-30T23:14:53.157035Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi038.pwduyd on smithi038: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2023-11-30T23:14:53.158104Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi167.obmcvj on smithi167: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2023-11-30T23:18:29.795059Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi167.ktqzxw on smithi167: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi167-ktqzxw\n/bin/podman: stderr Error: error inspecting object: no such container ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi167-ktqzxw\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi167.ktqzxw\n/bin/podman: stderr Error: error inspecting object: no such container ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi167.ktqzxw\nDeploy daemon haproxy.nfs.foo.smithi167.ktqzxw ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi167 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2023-11-30T23:16:36Z\" level=warning msg=\"failed, retrying in 1s ... (1/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-11-30T23:17:14Z\" level=warning msg=\"failed, retrying in 1s ... (2/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-11-30T23:17:52Z\" level=warning msg=\"failed, retrying in 1s ... (3/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi167 -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": 9049, "virtual_ip": "10.0.31.38/16"}, "status": {"created": "2023-11-30T22:58:56.312786Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.38/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2023-11-30T22:54:41.668043Z", "last_refresh": "2023-11-30T23:15:56.214350Z", "running": 2, "size": 2}}, {"events": ["2023-11-30T22:55:50.759225Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi038:172.21.15.38=smithi038", "smithi167:172.21.15.167=smithi167"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2023-11-30T22:55:50.756456Z", "last_refresh": "2023-11-30T23:15:56.214426Z", "running": 2, "size": 2}}, {"events": ["2023-11-30T22:58:56.311581Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2023-11-30T22:58:56.308071Z", "last_refresh": "2023-11-30T23:15:59.565359Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2023-11-30T22:54:46.136630Z", "last_refresh": "2023-11-30T23:15:56.214508Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2023-11-30T22:56:33.258058Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2023-11-30T22:56:33.253117Z", "last_refresh": "2023-11-30T23:15:56.214583Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2023-11-30T22:54:43.949497Z", "last_refresh": "2023-11-30T23:15:59.564954Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2023-11-30T22:58:52.105721Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2023-11-30T22:58:59.793467Z", "last_refresh": "2023-11-30T23:15:56.214845Z", "ports": [8800], "running": 2, "size": 2}}] 2023-11-30T23:19:53.245 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:19:52 smithi038 conmon[81956]: cluster 2023-11-30T23:19:52.086139+0000 mgr.smithi038.ldalxq (mgr.14182) 1213 : cluster [DBG] pgmap v774: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2023-11-30T23:19:53.247 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2023-11-30T23:19:53.262 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:19:52 smithi167 conmon[87022]: cluster 2023-11-30T23:19:52.086139+0000 mgr.smithi038.ldalxq (mgr.14182) 1213 : cluster [DBG] pgmap v774: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2023-11-30T23:19:54.248 DEBUG:teuthology.orchestra.run.smithi038:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:0dc074ce0b0b3b4f393f56dd32ef36884ebf45a9 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 3faf8b00-8fd3-11ee-95a2-87774f69a715 -- ceph orch ls -f json 2023-11-30T23:19:54.262 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:19:53 smithi167 conmon[87022]: audit 2023-11-30T23:19:52.828746+0000 mgr.smithi038.ldalxq (mgr.14182) 1214 : 2023-11-30T23:19:54.262 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:19:53 smithi167 conmon[87022]: audit [DBG] from='client.16148 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-11-30T23:19:54.274 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:19:53 smithi038 conmon[81956]: audit 2023-11-30T23:19:52.828746 2023-11-30T23:19:54.274 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:19:53 smithi038 conmon[81956]: +0000 mgr.smithi038.ldalxq (mgr.14182) 1214 : audit [DBG] from='client.16148 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-11-30T23:19:55.052 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:19:55 smithi038 conmon[81956]: cluster 2023-11-30T23:19:54.086760+0000 mgr.smithi038.ldalxq (mgr.14182) 1215 : cluster [DBG] pgmap v775: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2023-11-30T23:19:55.262 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:19:55 smithi167 conmon[87022]: cluster 2023-11-30T23:19:54.086760+0000 mgr.smithi038.ldalxq (mgr.14182) 1215 : cluster [DBG] 2023-11-30T23:19:55.262 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:19:55 smithi167 conmon[87022]: pgmap v775: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2023-11-30T23:19:55.879 INFO:teuthology.orchestra.run.smithi038.stdout: 2023-11-30T23:19:55.879 INFO:teuthology.orchestra.run.smithi038.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2023-11-30T22:54:47.122758Z", "last_refresh": "2023-11-30T23:15:59.564688Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2023-11-30T22:54:42.674972Z", "last_refresh": "2023-11-30T23:15:56.214205Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2023-11-30T22:54:45.114633Z", "last_refresh": "2023-11-30T23:15:59.564823Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2023-11-30T23:12:23.150100Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi167.nhhxhd on smithi167: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi167-nhhxhd\n/bin/podman: stderr Error: error inspecting object: no such container ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi167-nhhxhd\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi167.nhhxhd\n/bin/podman: stderr Error: error inspecting object: no such container ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi167.nhhxhd\nDeploy daemon haproxy.nfs.foo.smithi167.nhhxhd ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi167 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2023-11-30T23:10:30Z\" level=warning msg=\"failed, retrying in 1s ... (1/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-11-30T23:11:08Z\" level=warning msg=\"failed, retrying in 1s ... (2/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-11-30T23:11:45Z\" level=warning msg=\"failed, retrying in 1s ... (3/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi167 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-11-30T23:14:53.155795Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi038.njeday on smithi038: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi038-njeday\n/bin/podman: stderr Error: error inspecting object: no such container ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi038-njeday\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi038.njeday\n/bin/podman: stderr Error: error inspecting object: no such container ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi038.njeday\nDeploy daemon haproxy.nfs.foo.smithi038.njeday ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi038 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2023-11-30T23:13:00Z\" level=warning msg=\"failed, retrying in 1s ... (1/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-11-30T23:13:38Z\" level=warning msg=\"failed, retrying in 1s ... (2/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-11-30T23:14:15Z\" level=warning msg=\"failed, retrying in 1s ... (3/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi038 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-11-30T23:14:53.157035Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi038.pwduyd on smithi038: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2023-11-30T23:14:53.158104Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi167.obmcvj on smithi167: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2023-11-30T23:18:29.795059Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi167.ktqzxw on smithi167: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi167-ktqzxw\n/bin/podman: stderr Error: error inspecting object: no such container ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi167-ktqzxw\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi167.ktqzxw\n/bin/podman: stderr Error: error inspecting object: no such container ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi167.ktqzxw\nDeploy daemon haproxy.nfs.foo.smithi167.ktqzxw ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi167 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2023-11-30T23:16:36Z\" level=warning msg=\"failed, retrying in 1s ... (1/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-11-30T23:17:14Z\" level=warning msg=\"failed, retrying in 1s ... (2/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-11-30T23:17:52Z\" level=warning msg=\"failed, retrying in 1s ... (3/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi167 -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": 9049, "virtual_ip": "10.0.31.38/16"}, "status": {"created": "2023-11-30T22:58:56.312786Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.38/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2023-11-30T22:54:41.668043Z", "last_refresh": "2023-11-30T23:15:56.214350Z", "running": 2, "size": 2}}, {"events": ["2023-11-30T22:55:50.759225Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi038:172.21.15.38=smithi038", "smithi167:172.21.15.167=smithi167"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2023-11-30T22:55:50.756456Z", "last_refresh": "2023-11-30T23:15:56.214426Z", "running": 2, "size": 2}}, {"events": ["2023-11-30T22:58:56.311581Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2023-11-30T22:58:56.308071Z", "last_refresh": "2023-11-30T23:15:59.565359Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2023-11-30T22:54:46.136630Z", "last_refresh": "2023-11-30T23:15:56.214508Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2023-11-30T22:56:33.258058Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2023-11-30T22:56:33.253117Z", "last_refresh": "2023-11-30T23:15:56.214583Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2023-11-30T22:54:43.949497Z", "last_refresh": "2023-11-30T23:15:59.564954Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2023-11-30T22:58:52.105721Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2023-11-30T22:58:59.793467Z", "last_refresh": "2023-11-30T23:15:56.214845Z", "ports": [8800], "running": 2, "size": 2}}] 2023-11-30T23:19:56.398 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2023-11-30T23:19:57.398 DEBUG:teuthology.orchestra.run.smithi038:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:0dc074ce0b0b3b4f393f56dd32ef36884ebf45a9 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 3faf8b00-8fd3-11ee-95a2-87774f69a715 -- ceph orch ls -f json 2023-11-30T23:19:57.427 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:19:57 smithi038 conmon[81956]: audit 2023-11-30T23:19:55.874718+0000 mgr.smithi038.ldalxq (mgr.14182) 1216 : audit [DBG] from='client.16152 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-11-30T23:19:57.427 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:19:57 smithi038 conmon[81956]: cluster 2023-11-30T23:19:56.087451+0000 mgr.smithi038.ldalxq (mgr.14182) 1217 : cluster [DBG] pgmap v776: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2023-11-30T23:19:57.512 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:19:57 smithi167 conmon[87022]: audit 2023-11-30T23:19:55.874718+0000 mgr.smithi038.ldalxq (mgr.14182) 1216 : audit 2023-11-30T23:19:57.512 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:19:57 smithi167 conmon[87022]: [DBG] from='client.16152 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-11-30T23:19:57.512 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:19:57 smithi167 conmon[87022]: cluster 2023-11-30T23:19:56.087451+0000 mgr.smithi038.ldalxq (mgr.14182) 1217 : cluster [DBG] pgmap v776: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2023-11-30T23:19:59.074 INFO:teuthology.orchestra.run.smithi038.stdout: 2023-11-30T23:19:59.074 INFO:teuthology.orchestra.run.smithi038.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2023-11-30T22:54:47.122758Z", "last_refresh": "2023-11-30T23:15:59.564688Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2023-11-30T22:54:42.674972Z", "last_refresh": "2023-11-30T23:15:56.214205Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2023-11-30T22:54:45.114633Z", "last_refresh": "2023-11-30T23:15:59.564823Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2023-11-30T23:12:23.150100Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi167.nhhxhd on smithi167: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi167-nhhxhd\n/bin/podman: stderr Error: error inspecting object: no such container ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi167-nhhxhd\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi167.nhhxhd\n/bin/podman: stderr Error: error inspecting object: no such container ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi167.nhhxhd\nDeploy daemon haproxy.nfs.foo.smithi167.nhhxhd ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi167 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2023-11-30T23:10:30Z\" level=warning msg=\"failed, retrying in 1s ... (1/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-11-30T23:11:08Z\" level=warning msg=\"failed, retrying in 1s ... (2/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-11-30T23:11:45Z\" level=warning msg=\"failed, retrying in 1s ... (3/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi167 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-11-30T23:14:53.155795Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi038.njeday on smithi038: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi038-njeday\n/bin/podman: stderr Error: error inspecting object: no such container ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi038-njeday\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi038.njeday\n/bin/podman: stderr Error: error inspecting object: no such container ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi038.njeday\nDeploy daemon haproxy.nfs.foo.smithi038.njeday ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi038 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2023-11-30T23:13:00Z\" level=warning msg=\"failed, retrying in 1s ... (1/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-11-30T23:13:38Z\" level=warning msg=\"failed, retrying in 1s ... (2/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-11-30T23:14:15Z\" level=warning msg=\"failed, retrying in 1s ... (3/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi038 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-11-30T23:14:53.157035Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi038.pwduyd on smithi038: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2023-11-30T23:14:53.158104Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi167.obmcvj on smithi167: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2023-11-30T23:18:29.795059Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi167.ktqzxw on smithi167: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi167-ktqzxw\n/bin/podman: stderr Error: error inspecting object: no such container ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi167-ktqzxw\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi167.ktqzxw\n/bin/podman: stderr Error: error inspecting object: no such container ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi167.ktqzxw\nDeploy daemon haproxy.nfs.foo.smithi167.ktqzxw ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi167 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2023-11-30T23:16:36Z\" level=warning msg=\"failed, retrying in 1s ... (1/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-11-30T23:17:14Z\" level=warning msg=\"failed, retrying in 1s ... (2/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-11-30T23:17:52Z\" level=warning msg=\"failed, retrying in 1s ... (3/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi167 -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": 9049, "virtual_ip": "10.0.31.38/16"}, "status": {"created": "2023-11-30T22:58:56.312786Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.38/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2023-11-30T22:54:41.668043Z", "last_refresh": "2023-11-30T23:15:56.214350Z", "running": 2, "size": 2}}, {"events": ["2023-11-30T22:55:50.759225Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi038:172.21.15.38=smithi038", "smithi167:172.21.15.167=smithi167"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2023-11-30T22:55:50.756456Z", "last_refresh": "2023-11-30T23:15:56.214426Z", "running": 2, "size": 2}}, {"events": ["2023-11-30T22:58:56.311581Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2023-11-30T22:58:56.308071Z", "last_refresh": "2023-11-30T23:15:59.565359Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2023-11-30T22:54:46.136630Z", "last_refresh": "2023-11-30T23:15:56.214508Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2023-11-30T22:56:33.258058Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2023-11-30T22:56:33.253117Z", "last_refresh": "2023-11-30T23:15:56.214583Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2023-11-30T22:54:43.949497Z", "last_refresh": "2023-11-30T23:15:59.564954Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2023-11-30T22:58:52.105721Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2023-11-30T22:58:59.793467Z", "last_refresh": "2023-11-30T23:15:56.214845Z", "ports": [8800], "running": 2, "size": 2}}] 2023-11-30T23:19:59.274 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:19:59 smithi038 conmon[81956]: cluster 2023-11-30T23 2023-11-30T23:19:59.274 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:19:59 smithi038 conmon[81956]: :19:58.088039+0000 mgr.smithi038.ldalxq (mgr.14182) 1218 : cluster [DBG] pgmap v777: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2023-11-30T23:19:59.512 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:19:59 smithi167 conmon[87022]: cluster 2023-11-30T23:19:58.088039+0000 mgr.smithi038.ldalxq (mgr.14182) 1218 : cluster 2023-11-30T23:19:59.512 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:19:59 smithi167 conmon[87022]: [DBG] pgmap v777: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2023-11-30T23:19:59.543 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2023-11-30T23:20:00.512 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:20:00 smithi167 conmon[87022]: audit 2023-11-30T23:19:59.069060+0000 mgr.smithi038.ldalxq (mgr.14182) 1219 : audit 2023-11-30T23:20:00.512 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:20:00 smithi167 conmon[87022]: [DBG] from='client.16156 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-11-30T23:20:00.512 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:20:00 smithi167 conmon[87022]: cluster 2023-11-30T23:20:00.000200+0000 mon.smithi038 (mon.0) 731 : cluster [INF] overall HEALTH_OK 2023-11-30T23:20:00.524 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:20:00 smithi038 conmon[81956]: audit 2023-11-30T23:19:59.069060+0000 mgr.smithi038.ldalxq (mgr.14182) 1219 : audit 2023-11-30T23:20:00.524 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:20:00 smithi038 conmon[81956]: [DBG] from='client.16156 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-11-30T23:20:00.524 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:20:00 smithi038 conmon[81956]: cluster 2023-11-30T23:20:00.000200+0000 mon.smithi038 (mon.0) 731 : cluster [INF] overall HEALTH_OK 2023-11-30T23:20:00.544 DEBUG:teuthology.orchestra.run.smithi038:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:0dc074ce0b0b3b4f393f56dd32ef36884ebf45a9 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 3faf8b00-8fd3-11ee-95a2-87774f69a715 -- ceph orch ls -f json 2023-11-30T23:20:01.503 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:20:01 smithi038 conmon[81956]: cluster 2023-11-30T23:20:00.088768+0000 mgr.smithi038.ldalxq 2023-11-30T23:20:01.503 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:20:01 smithi038 conmon[81956]: (mgr.14182) 1220 : cluster [DBG] pgmap v778: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2023-11-30T23:20:01.512 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:20:01 smithi167 conmon[87022]: cluster 2023-11-30T23:20:00.088768+0000 mgr.smithi038.ldalxq (mgr.14182) 1220 2023-11-30T23:20:01.512 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:20:01 smithi167 conmon[87022]: : cluster [DBG] pgmap v778: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2023-11-30T23:20:02.364 INFO:teuthology.orchestra.run.smithi038.stdout: 2023-11-30T23:20:02.364 INFO:teuthology.orchestra.run.smithi038.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2023-11-30T22:54:47.122758Z", "last_refresh": "2023-11-30T23:15:59.564688Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2023-11-30T22:54:42.674972Z", "last_refresh": "2023-11-30T23:15:56.214205Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2023-11-30T22:54:45.114633Z", "last_refresh": "2023-11-30T23:15:59.564823Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2023-11-30T23:12:23.150100Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi167.nhhxhd on smithi167: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi167-nhhxhd\n/bin/podman: stderr Error: error inspecting object: no such container ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi167-nhhxhd\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi167.nhhxhd\n/bin/podman: stderr Error: error inspecting object: no such container ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi167.nhhxhd\nDeploy daemon haproxy.nfs.foo.smithi167.nhhxhd ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi167 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2023-11-30T23:10:30Z\" level=warning msg=\"failed, retrying in 1s ... (1/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-11-30T23:11:08Z\" level=warning msg=\"failed, retrying in 1s ... (2/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-11-30T23:11:45Z\" level=warning msg=\"failed, retrying in 1s ... (3/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi167 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-11-30T23:14:53.155795Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi038.njeday on smithi038: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi038-njeday\n/bin/podman: stderr Error: error inspecting object: no such container ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi038-njeday\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi038.njeday\n/bin/podman: stderr Error: error inspecting object: no such container ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi038.njeday\nDeploy daemon haproxy.nfs.foo.smithi038.njeday ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi038 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2023-11-30T23:13:00Z\" level=warning msg=\"failed, retrying in 1s ... (1/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-11-30T23:13:38Z\" level=warning msg=\"failed, retrying in 1s ... (2/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-11-30T23:14:15Z\" level=warning msg=\"failed, retrying in 1s ... (3/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi038 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-11-30T23:14:53.157035Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi038.pwduyd on smithi038: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2023-11-30T23:14:53.158104Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi167.obmcvj on smithi167: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2023-11-30T23:18:29.795059Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi167.ktqzxw on smithi167: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi167-ktqzxw\n/bin/podman: stderr Error: error inspecting object: no such container ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi167-ktqzxw\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi167.ktqzxw\n/bin/podman: stderr Error: error inspecting object: no such container ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi167.ktqzxw\nDeploy daemon haproxy.nfs.foo.smithi167.ktqzxw ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi167 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2023-11-30T23:16:36Z\" level=warning msg=\"failed, retrying in 1s ... (1/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-11-30T23:17:14Z\" level=warning msg=\"failed, retrying in 1s ... (2/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-11-30T23:17:52Z\" level=warning msg=\"failed, retrying in 1s ... (3/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi167 -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": 9049, "virtual_ip": "10.0.31.38/16"}, "status": {"created": "2023-11-30T22:58:56.312786Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.38/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2023-11-30T22:54:41.668043Z", "last_refresh": "2023-11-30T23:15:56.214350Z", "running": 2, "size": 2}}, {"events": ["2023-11-30T22:55:50.759225Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi038:172.21.15.38=smithi038", "smithi167:172.21.15.167=smithi167"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2023-11-30T22:55:50.756456Z", "last_refresh": "2023-11-30T23:15:56.214426Z", "running": 2, "size": 2}}, {"events": ["2023-11-30T22:58:56.311581Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2023-11-30T22:58:56.308071Z", "last_refresh": "2023-11-30T23:15:59.565359Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2023-11-30T22:54:46.136630Z", "last_refresh": "2023-11-30T23:15:56.214508Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2023-11-30T22:56:33.258058Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2023-11-30T22:56:33.253117Z", "last_refresh": "2023-11-30T23:15:56.214583Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2023-11-30T22:54:43.949497Z", "last_refresh": "2023-11-30T23:15:59.564954Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2023-11-30T22:58:52.105721Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2023-11-30T22:58:59.793467Z", "last_refresh": "2023-11-30T23:15:56.214845Z", "ports": [8800], "running": 2, "size": 2}}] 2023-11-30T23:20:02.797 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2023-11-30T23:20:03.262 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:20:02 smithi167 conmon[87022]: cluster 2023-11-30T23:20:02.089253+0000 mgr.smithi038.ldalxq (mgr.14182) 1221 : cluster 2023-11-30T23:20:03.262 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:20:02 smithi167 conmon[87022]: [DBG] pgmap v779: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2023-11-30T23:20:03.262 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:20:02 smithi167 conmon[87022]: audit 2023-11-30T23:20:02.359593+0000 mgr.smithi038.ldalxq (mgr.14182) 1222 : audit [DBG] from='client.16160 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-11-30T23:20:03.274 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:20:02 smithi038 conmon[81956]: cluster 2023-11-30T23:20:02.089253+0000 mgr.smithi038.ldalxq (mgr.14182) 1221 : cluster [DBG] pgmap v779: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2023-11-30T23:20:03.274 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:20:02 smithi038 conmon[81956]: audit 2023-11-30T23:20:02.359593+0000 mgr.smithi038.ldalxq (mgr.14182) 1222 : audit [DBG] from='client.16160 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-11-30T23:20:03.798 DEBUG:teuthology.orchestra.run.smithi038:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:0dc074ce0b0b3b4f393f56dd32ef36884ebf45a9 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 3faf8b00-8fd3-11ee-95a2-87774f69a715 -- ceph orch ls -f json 2023-11-30T23:20:05.512 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:20:05 smithi167 conmon[87022]: cluster 2023-11-30T23:20:04.090021+0000 mgr.smithi038.ldalxq (mgr.14182) 1223 : cluster [DBG] 2023-11-30T23:20:05.512 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:20:05 smithi167 conmon[87022]: pgmap v780: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2023-11-30T23:20:05.517 INFO:teuthology.orchestra.run.smithi038.stdout: 2023-11-30T23:20:05.517 INFO:teuthology.orchestra.run.smithi038.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2023-11-30T22:54:47.122758Z", "last_refresh": "2023-11-30T23:15:59.564688Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2023-11-30T22:54:42.674972Z", "last_refresh": "2023-11-30T23:15:56.214205Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2023-11-30T22:54:45.114633Z", "last_refresh": "2023-11-30T23:15:59.564823Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2023-11-30T23:12:23.150100Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi167.nhhxhd on smithi167: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi167-nhhxhd\n/bin/podman: stderr Error: error inspecting object: no such container ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi167-nhhxhd\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi167.nhhxhd\n/bin/podman: stderr Error: error inspecting object: no such container ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi167.nhhxhd\nDeploy daemon haproxy.nfs.foo.smithi167.nhhxhd ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi167 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2023-11-30T23:10:30Z\" level=warning msg=\"failed, retrying in 1s ... (1/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-11-30T23:11:08Z\" level=warning msg=\"failed, retrying in 1s ... (2/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-11-30T23:11:45Z\" level=warning msg=\"failed, retrying in 1s ... (3/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi167 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-11-30T23:14:53.155795Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi038.njeday on smithi038: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi038-njeday\n/bin/podman: stderr Error: error inspecting object: no such container ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi038-njeday\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi038.njeday\n/bin/podman: stderr Error: error inspecting object: no such container ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi038.njeday\nDeploy daemon haproxy.nfs.foo.smithi038.njeday ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi038 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2023-11-30T23:13:00Z\" level=warning msg=\"failed, retrying in 1s ... (1/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-11-30T23:13:38Z\" level=warning msg=\"failed, retrying in 1s ... (2/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-11-30T23:14:15Z\" level=warning msg=\"failed, retrying in 1s ... (3/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi038 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-11-30T23:14:53.157035Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi038.pwduyd on smithi038: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2023-11-30T23:14:53.158104Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi167.obmcvj on smithi167: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2023-11-30T23:18:29.795059Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi167.ktqzxw on smithi167: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi167-ktqzxw\n/bin/podman: stderr Error: error inspecting object: no such container ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi167-ktqzxw\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi167.ktqzxw\n/bin/podman: stderr Error: error inspecting object: no such container ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi167.ktqzxw\nDeploy daemon haproxy.nfs.foo.smithi167.ktqzxw ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi167 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2023-11-30T23:16:36Z\" level=warning msg=\"failed, retrying in 1s ... (1/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-11-30T23:17:14Z\" level=warning msg=\"failed, retrying in 1s ... (2/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-11-30T23:17:52Z\" level=warning msg=\"failed, retrying in 1s ... (3/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi167 -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": 9049, "virtual_ip": "10.0.31.38/16"}, "status": {"created": "2023-11-30T22:58:56.312786Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.38/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2023-11-30T22:54:41.668043Z", "last_refresh": "2023-11-30T23:15:56.214350Z", "running": 2, "size": 2}}, {"events": ["2023-11-30T22:55:50.759225Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi038:172.21.15.38=smithi038", "smithi167:172.21.15.167=smithi167"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2023-11-30T22:55:50.756456Z", "last_refresh": "2023-11-30T23:15:56.214426Z", "running": 2, "size": 2}}, {"events": ["2023-11-30T22:58:56.311581Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2023-11-30T22:58:56.308071Z", "last_refresh": "2023-11-30T23:15:59.565359Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2023-11-30T22:54:46.136630Z", "last_refresh": "2023-11-30T23:15:56.214508Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2023-11-30T22:56:33.258058Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2023-11-30T22:56:33.253117Z", "last_refresh": "2023-11-30T23:15:56.214583Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2023-11-30T22:54:43.949497Z", "last_refresh": "2023-11-30T23:15:59.564954Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2023-11-30T22:58:52.105721Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2023-11-30T22:58:59.793467Z", "last_refresh": "2023-11-30T23:15:56.214845Z", "ports": [8800], "running": 2, "size": 2}}] 2023-11-30T23:20:05.523 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:20:05 smithi038 conmon[81956]: cluster 2023-11-30T23:20:04. 2023-11-30T23:20:05.524 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:20:05 smithi038 conmon[81956]: 090021+0000 mgr.smithi038.ldalxq (mgr.14182) 1223 : cluster [DBG] pgmap v780: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2023-11-30T23:20:05.949 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2023-11-30T23:20:06.274 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:20:06 smithi038 conmon[81956]: audit 2023-11-30T23:20:05.513243+0000 mgr.smithi038.ldalxq (mgr.14182 2023-11-30T23:20:06.274 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:20:06 smithi038 conmon[81956]: ) 1224 : audit [DBG] from='client.16164 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-11-30T23:20:06.512 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:20:06 smithi167 conmon[87022]: audit 2023-11-30T23:20:05.513243+0000 mgr.smithi038.ldalxq (mgr.14182) 1224 2023-11-30T23:20:06.512 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:20:06 smithi167 conmon[87022]: : audit [DBG] from='client.16164 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-11-30T23:20:06.950 DEBUG:teuthology.orchestra.run.smithi038:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:0dc074ce0b0b3b4f393f56dd32ef36884ebf45a9 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 3faf8b00-8fd3-11ee-95a2-87774f69a715 -- ceph orch ls -f json 2023-11-30T23:20:07.274 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:20:07 smithi038 conmon[81956]: cluster 2023-11-30T23:20:06.090884+0000 mgr.smithi038.ldalxq (mgr.14182 2023-11-30T23:20:07.274 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:20:07 smithi038 conmon[81956]: ) 1225 : cluster [DBG] pgmap v781: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2023-11-30T23:20:07.512 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:20:07 smithi167 conmon[87022]: cluster 2023-11-30T23:20:06.090884+0000 mgr.smithi038.ldalxq ( 2023-11-30T23:20:07.512 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:20:07 smithi167 conmon[87022]: mgr.14182) 1225 : cluster [DBG] pgmap v781: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2023-11-30T23:20:08.802 INFO:teuthology.orchestra.run.smithi038.stdout: 2023-11-30T23:20:08.802 INFO:teuthology.orchestra.run.smithi038.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2023-11-30T22:54:47.122758Z", "last_refresh": "2023-11-30T23:15:59.564688Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2023-11-30T22:54:42.674972Z", "last_refresh": "2023-11-30T23:15:56.214205Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2023-11-30T22:54:45.114633Z", "last_refresh": "2023-11-30T23:15:59.564823Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2023-11-30T23:12:23.150100Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi167.nhhxhd on smithi167: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi167-nhhxhd\n/bin/podman: stderr Error: error inspecting object: no such container ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi167-nhhxhd\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi167.nhhxhd\n/bin/podman: stderr Error: error inspecting object: no such container ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi167.nhhxhd\nDeploy daemon haproxy.nfs.foo.smithi167.nhhxhd ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi167 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2023-11-30T23:10:30Z\" level=warning msg=\"failed, retrying in 1s ... (1/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-11-30T23:11:08Z\" level=warning msg=\"failed, retrying in 1s ... (2/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-11-30T23:11:45Z\" level=warning msg=\"failed, retrying in 1s ... (3/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi167 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-11-30T23:14:53.155795Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi038.njeday on smithi038: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi038-njeday\n/bin/podman: stderr Error: error inspecting object: no such container ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi038-njeday\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi038.njeday\n/bin/podman: stderr Error: error inspecting object: no such container ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi038.njeday\nDeploy daemon haproxy.nfs.foo.smithi038.njeday ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi038 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2023-11-30T23:13:00Z\" level=warning msg=\"failed, retrying in 1s ... (1/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-11-30T23:13:38Z\" level=warning msg=\"failed, retrying in 1s ... (2/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-11-30T23:14:15Z\" level=warning msg=\"failed, retrying in 1s ... (3/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi038 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-11-30T23:14:53.157035Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi038.pwduyd on smithi038: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2023-11-30T23:14:53.158104Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi167.obmcvj on smithi167: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2023-11-30T23:18:29.795059Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi167.ktqzxw on smithi167: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi167-ktqzxw\n/bin/podman: stderr Error: error inspecting object: no such container ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi167-ktqzxw\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi167.ktqzxw\n/bin/podman: stderr Error: error inspecting object: no such container ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi167.ktqzxw\nDeploy daemon haproxy.nfs.foo.smithi167.ktqzxw ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi167 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2023-11-30T23:16:36Z\" level=warning msg=\"failed, retrying in 1s ... (1/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-11-30T23:17:14Z\" level=warning msg=\"failed, retrying in 1s ... (2/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-11-30T23:17:52Z\" level=warning msg=\"failed, retrying in 1s ... (3/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi167 -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": 9049, "virtual_ip": "10.0.31.38/16"}, "status": {"created": "2023-11-30T22:58:56.312786Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.38/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2023-11-30T22:54:41.668043Z", "last_refresh": "2023-11-30T23:15:56.214350Z", "running": 2, "size": 2}}, {"events": ["2023-11-30T22:55:50.759225Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi038:172.21.15.38=smithi038", "smithi167:172.21.15.167=smithi167"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2023-11-30T22:55:50.756456Z", "last_refresh": "2023-11-30T23:15:56.214426Z", "running": 2, "size": 2}}, {"events": ["2023-11-30T22:58:56.311581Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2023-11-30T22:58:56.308071Z", "last_refresh": "2023-11-30T23:15:59.565359Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2023-11-30T22:54:46.136630Z", "last_refresh": "2023-11-30T23:15:56.214508Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2023-11-30T22:56:33.258058Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2023-11-30T22:56:33.253117Z", "last_refresh": "2023-11-30T23:15:56.214583Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2023-11-30T22:54:43.949497Z", "last_refresh": "2023-11-30T23:15:59.564954Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2023-11-30T22:58:52.105721Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2023-11-30T22:58:59.793467Z", "last_refresh": "2023-11-30T23:15:56.214845Z", "ports": [8800], "running": 2, "size": 2}}] 2023-11-30T23:20:09.200 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2023-11-30T23:20:09.512 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:20:09 smithi167 conmon[87022]: cluster 2023-11-30T23:20:08.091385+0000 mgr.smithi038.ldalxq (mgr.14182) 1226 : cluster [DBG] pgmap v782: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2023-11-30T23:20:09.512 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:20:09 smithi167 conmon[87022]: audit 2023-11-30T23:20:08.798080+0000 mgr.smithi038.ldalxq (mgr.14182) 1227 : audit [DBG] from='client.16168 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-11-30T23:20:09.524 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:20:09 smithi038 conmon[81956]: cluster 2023-11-30T23:20:08.091385+0000 2023-11-30T23:20:09.524 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:20:09 smithi038 conmon[81956]: mgr.smithi038.ldalxq (mgr.14182) 1226 : cluster [DBG] pgmap v782: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2023-11-30T23:20:09.524 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:20:09 smithi038 conmon[81956]: audit 2023-11-30T23:20:08.798080+0000 mgr.smithi038.ldalxq (mgr.14182) 1227 : audit [DBG] from='client.16168 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-11-30T23:20:10.201 DEBUG:teuthology.orchestra.run.smithi038:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:0dc074ce0b0b3b4f393f56dd32ef36884ebf45a9 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 3faf8b00-8fd3-11ee-95a2-87774f69a715 -- ceph orch ls -f json 2023-11-30T23:20:11.512 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:20:11 smithi167 conmon[87022]: cluster 2023-11-30T23:20:10.092233+0000 mgr.smithi038.ldalxq (mgr.14182) 1228 : cluster [DBG] pgmap v783: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2023-11-30T23:20:11.524 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:20:11 smithi038 conmon[81956]: cluster 2023-11-30T23:20:10.092233+0000 mgr.smithi038.ldalxq 2023-11-30T23:20:11.524 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:20:11 smithi038 conmon[81956]: (mgr.14182) 1228 : cluster [DBG] pgmap v783: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2023-11-30T23:20:12.025 INFO:teuthology.orchestra.run.smithi038.stdout: 2023-11-30T23:20:12.025 INFO:teuthology.orchestra.run.smithi038.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2023-11-30T22:54:47.122758Z", "last_refresh": "2023-11-30T23:15:59.564688Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2023-11-30T22:54:42.674972Z", "last_refresh": "2023-11-30T23:15:56.214205Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2023-11-30T22:54:45.114633Z", "last_refresh": "2023-11-30T23:15:59.564823Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2023-11-30T23:12:23.150100Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi167.nhhxhd on smithi167: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi167-nhhxhd\n/bin/podman: stderr Error: error inspecting object: no such container ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi167-nhhxhd\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi167.nhhxhd\n/bin/podman: stderr Error: error inspecting object: no such container ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi167.nhhxhd\nDeploy daemon haproxy.nfs.foo.smithi167.nhhxhd ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi167 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2023-11-30T23:10:30Z\" level=warning msg=\"failed, retrying in 1s ... (1/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-11-30T23:11:08Z\" level=warning msg=\"failed, retrying in 1s ... (2/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-11-30T23:11:45Z\" level=warning msg=\"failed, retrying in 1s ... (3/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi167 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-11-30T23:14:53.155795Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi038.njeday on smithi038: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi038-njeday\n/bin/podman: stderr Error: error inspecting object: no such container ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi038-njeday\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi038.njeday\n/bin/podman: stderr Error: error inspecting object: no such container ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi038.njeday\nDeploy daemon haproxy.nfs.foo.smithi038.njeday ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi038 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2023-11-30T23:13:00Z\" level=warning msg=\"failed, retrying in 1s ... (1/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-11-30T23:13:38Z\" level=warning msg=\"failed, retrying in 1s ... (2/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-11-30T23:14:15Z\" level=warning msg=\"failed, retrying in 1s ... (3/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi038 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-11-30T23:14:53.157035Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi038.pwduyd on smithi038: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2023-11-30T23:14:53.158104Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi167.obmcvj on smithi167: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2023-11-30T23:18:29.795059Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi167.ktqzxw on smithi167: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi167-ktqzxw\n/bin/podman: stderr Error: error inspecting object: no such container ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi167-ktqzxw\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi167.ktqzxw\n/bin/podman: stderr Error: error inspecting object: no such container ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi167.ktqzxw\nDeploy daemon haproxy.nfs.foo.smithi167.ktqzxw ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi167 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2023-11-30T23:16:36Z\" level=warning msg=\"failed, retrying in 1s ... (1/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-11-30T23:17:14Z\" level=warning msg=\"failed, retrying in 1s ... (2/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-11-30T23:17:52Z\" level=warning msg=\"failed, retrying in 1s ... (3/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi167 -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": 9049, "virtual_ip": "10.0.31.38/16"}, "status": {"created": "2023-11-30T22:58:56.312786Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.38/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2023-11-30T22:54:41.668043Z", "last_refresh": "2023-11-30T23:15:56.214350Z", "running": 2, "size": 2}}, {"events": ["2023-11-30T22:55:50.759225Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi038:172.21.15.38=smithi038", "smithi167:172.21.15.167=smithi167"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2023-11-30T22:55:50.756456Z", "last_refresh": "2023-11-30T23:15:56.214426Z", "running": 2, "size": 2}}, {"events": ["2023-11-30T22:58:56.311581Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2023-11-30T22:58:56.308071Z", "last_refresh": "2023-11-30T23:15:59.565359Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2023-11-30T22:54:46.136630Z", "last_refresh": "2023-11-30T23:15:56.214508Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2023-11-30T22:56:33.258058Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2023-11-30T22:56:33.253117Z", "last_refresh": "2023-11-30T23:15:56.214583Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2023-11-30T22:54:43.949497Z", "last_refresh": "2023-11-30T23:15:59.564954Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2023-11-30T22:58:52.105721Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2023-11-30T22:58:59.793467Z", "last_refresh": "2023-11-30T23:15:56.214845Z", "ports": [8800], "running": 2, "size": 2}}] 2023-11-30T23:20:12.466 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2023-11-30T23:20:13.262 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:20:12 smithi167 conmon[87022]: audit 2023-11-30T23:20:12.021076+0000 mgr.smithi038.ldalxq (mgr.14182) 1229 : audit [DBG] from='client.16172 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-11-30T23:20:13.262 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:20:12 smithi167 conmon[87022]: cluster 2023-11-30T23:20:12.092738+0000 mgr.smithi038.ldalxq (mgr.14182) 1230 : cluster [DBG] pgmap v784: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2023-11-30T23:20:13.274 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:20:12 smithi038 conmon[81956]: audit 2023-11-30T23:20:12.021076+0000 mgr.smithi038.ldalxq ( 2023-11-30T23:20:13.274 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:20:12 smithi038 conmon[81956]: mgr.14182) 1229 : audit [DBG] from='client.16172 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-11-30T23:20:13.274 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:20:12 smithi038 conmon[81956]: cluster 2023-11-30T23:20:12.092738+0000 mgr.smithi038.ldalxq (mgr.14182) 1230 : cluster [DBG] pgmap v784: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2023-11-30T23:20:13.467 DEBUG:teuthology.orchestra.run.smithi038:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:0dc074ce0b0b3b4f393f56dd32ef36884ebf45a9 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 3faf8b00-8fd3-11ee-95a2-87774f69a715 -- ceph orch ls -f json 2023-11-30T23:20:15.205 INFO:teuthology.orchestra.run.smithi038.stdout: 2023-11-30T23:20:15.205 INFO:teuthology.orchestra.run.smithi038.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2023-11-30T22:54:47.122758Z", "last_refresh": "2023-11-30T23:15:59.564688Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2023-11-30T22:54:42.674972Z", "last_refresh": "2023-11-30T23:15:56.214205Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2023-11-30T22:54:45.114633Z", "last_refresh": "2023-11-30T23:15:59.564823Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2023-11-30T23:12:23.150100Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi167.nhhxhd on smithi167: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi167-nhhxhd\n/bin/podman: stderr Error: error inspecting object: no such container ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi167-nhhxhd\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi167.nhhxhd\n/bin/podman: stderr Error: error inspecting object: no such container ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi167.nhhxhd\nDeploy daemon haproxy.nfs.foo.smithi167.nhhxhd ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi167 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2023-11-30T23:10:30Z\" level=warning msg=\"failed, retrying in 1s ... (1/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-11-30T23:11:08Z\" level=warning msg=\"failed, retrying in 1s ... (2/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-11-30T23:11:45Z\" level=warning msg=\"failed, retrying in 1s ... (3/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi167 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-11-30T23:14:53.155795Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi038.njeday on smithi038: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi038-njeday\n/bin/podman: stderr Error: error inspecting object: no such container ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi038-njeday\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi038.njeday\n/bin/podman: stderr Error: error inspecting object: no such container ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi038.njeday\nDeploy daemon haproxy.nfs.foo.smithi038.njeday ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi038 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2023-11-30T23:13:00Z\" level=warning msg=\"failed, retrying in 1s ... (1/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-11-30T23:13:38Z\" level=warning msg=\"failed, retrying in 1s ... (2/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-11-30T23:14:15Z\" level=warning msg=\"failed, retrying in 1s ... (3/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi038 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-11-30T23:14:53.157035Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi038.pwduyd on smithi038: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2023-11-30T23:14:53.158104Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi167.obmcvj on smithi167: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2023-11-30T23:18:29.795059Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi167.ktqzxw on smithi167: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi167-ktqzxw\n/bin/podman: stderr Error: error inspecting object: no such container ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi167-ktqzxw\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi167.ktqzxw\n/bin/podman: stderr Error: error inspecting object: no such container ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi167.ktqzxw\nDeploy daemon haproxy.nfs.foo.smithi167.ktqzxw ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi167 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2023-11-30T23:16:36Z\" level=warning msg=\"failed, retrying in 1s ... (1/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-11-30T23:17:14Z\" level=warning msg=\"failed, retrying in 1s ... (2/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-11-30T23:17:52Z\" level=warning msg=\"failed, retrying in 1s ... (3/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi167 -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": 9049, "virtual_ip": "10.0.31.38/16"}, "status": {"created": "2023-11-30T22:58:56.312786Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.38/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2023-11-30T22:54:41.668043Z", "last_refresh": "2023-11-30T23:15:56.214350Z", "running": 2, "size": 2}}, {"events": ["2023-11-30T22:55:50.759225Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi038:172.21.15.38=smithi038", "smithi167:172.21.15.167=smithi167"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2023-11-30T22:55:50.756456Z", "last_refresh": "2023-11-30T23:15:56.214426Z", "running": 2, "size": 2}}, {"events": ["2023-11-30T22:58:56.311581Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2023-11-30T22:58:56.308071Z", "last_refresh": "2023-11-30T23:15:59.565359Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2023-11-30T22:54:46.136630Z", "last_refresh": "2023-11-30T23:15:56.214508Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2023-11-30T22:56:33.258058Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2023-11-30T22:56:33.253117Z", "last_refresh": "2023-11-30T23:15:56.214583Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2023-11-30T22:54:43.949497Z", "last_refresh": "2023-11-30T23:15:59.564954Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2023-11-30T22:58:52.105721Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2023-11-30T22:58:59.793467Z", "last_refresh": "2023-11-30T23:15:56.214845Z", "ports": [8800], "running": 2, "size": 2}}] 2023-11-30T23:20:15.475 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:20:15 smithi038 conmon[81956]: cluster 2023-11-30T23:20:14.093313+0000 mgr.smithi038.ldalxq (mgr.14182 2023-11-30T23:20:15.475 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:20:15 smithi038 conmon[81956]: ) 1231 : cluster [DBG] pgmap v785: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2023-11-30T23:20:15.512 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:20:15 smithi167 conmon[87022]: cluster 2023-11-30T23:20:14.093313+0000 mgr.smithi038.ldalxq (mgr.14182) 1231 : cluster [DBG] pgmap v785: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2023-11-30T23:20:15.722 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2023-11-30T23:20:16.512 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:20:16 smithi167 conmon[87022]: audit 2023-11-30T23:20:15.200775+0000 mgr.smithi038.ldalxq (mgr.14182) 1232 : audit [DBG] from='client.16176 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-11-30T23:20:16.524 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:20:16 smithi038 conmon[81956]: audit 2023-11-30T23:20:15.200775+0000 mgr.smithi038.ldalxq (mgr.14182) 1232 : audit [DBG] from='client.16176 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-11-30T23:20:16.723 DEBUG:teuthology.orchestra.run.smithi038:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:0dc074ce0b0b3b4f393f56dd32ef36884ebf45a9 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 3faf8b00-8fd3-11ee-95a2-87774f69a715 -- ceph orch ls -f json 2023-11-30T23:20:17.447 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:20:17 smithi038 conmon[81956]: cluster 2023-11-30T23:20:16.094042+0000 mgr.smithi038.ldalxq (mgr.14182) 1233 : cluster [DBG] pgmap v786: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2023-11-30T23:20:17.512 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:20:17 smithi167 conmon[87022]: cluster 2023-11-30T23:20:16.094042+0000 mgr.smithi038.ldalxq (mgr.14182) 1233 : cluster [DBG] pgmap v786: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2023-11-30T23:20:18.548 INFO:teuthology.orchestra.run.smithi038.stdout: 2023-11-30T23:20:18.548 INFO:teuthology.orchestra.run.smithi038.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2023-11-30T22:54:47.122758Z", "last_refresh": "2023-11-30T23:15:59.564688Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2023-11-30T22:54:42.674972Z", "last_refresh": "2023-11-30T23:15:56.214205Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2023-11-30T22:54:45.114633Z", "last_refresh": "2023-11-30T23:15:59.564823Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2023-11-30T23:12:23.150100Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi167.nhhxhd on smithi167: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi167-nhhxhd\n/bin/podman: stderr Error: error inspecting object: no such container ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi167-nhhxhd\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi167.nhhxhd\n/bin/podman: stderr Error: error inspecting object: no such container ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi167.nhhxhd\nDeploy daemon haproxy.nfs.foo.smithi167.nhhxhd ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi167 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2023-11-30T23:10:30Z\" level=warning msg=\"failed, retrying in 1s ... (1/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-11-30T23:11:08Z\" level=warning msg=\"failed, retrying in 1s ... (2/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-11-30T23:11:45Z\" level=warning msg=\"failed, retrying in 1s ... (3/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi167 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-11-30T23:14:53.155795Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi038.njeday on smithi038: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi038-njeday\n/bin/podman: stderr Error: error inspecting object: no such container ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi038-njeday\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi038.njeday\n/bin/podman: stderr Error: error inspecting object: no such container ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi038.njeday\nDeploy daemon haproxy.nfs.foo.smithi038.njeday ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi038 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2023-11-30T23:13:00Z\" level=warning msg=\"failed, retrying in 1s ... (1/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-11-30T23:13:38Z\" level=warning msg=\"failed, retrying in 1s ... (2/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-11-30T23:14:15Z\" level=warning msg=\"failed, retrying in 1s ... (3/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi038 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-11-30T23:14:53.157035Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi038.pwduyd on smithi038: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2023-11-30T23:14:53.158104Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi167.obmcvj on smithi167: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2023-11-30T23:18:29.795059Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi167.ktqzxw on smithi167: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi167-ktqzxw\n/bin/podman: stderr Error: error inspecting object: no such container ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi167-ktqzxw\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi167.ktqzxw\n/bin/podman: stderr Error: error inspecting object: no such container ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi167.ktqzxw\nDeploy daemon haproxy.nfs.foo.smithi167.ktqzxw ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi167 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2023-11-30T23:16:36Z\" level=warning msg=\"failed, retrying in 1s ... (1/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-11-30T23:17:14Z\" level=warning msg=\"failed, retrying in 1s ... (2/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-11-30T23:17:52Z\" level=warning msg=\"failed, retrying in 1s ... (3/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi167 -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": 9049, "virtual_ip": "10.0.31.38/16"}, "status": {"created": "2023-11-30T22:58:56.312786Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.38/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2023-11-30T22:54:41.668043Z", "last_refresh": "2023-11-30T23:15:56.214350Z", "running": 2, "size": 2}}, {"events": ["2023-11-30T22:55:50.759225Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi038:172.21.15.38=smithi038", "smithi167:172.21.15.167=smithi167"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2023-11-30T22:55:50.756456Z", "last_refresh": "2023-11-30T23:15:56.214426Z", "running": 2, "size": 2}}, {"events": ["2023-11-30T22:58:56.311581Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2023-11-30T22:58:56.308071Z", "last_refresh": "2023-11-30T23:15:59.565359Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2023-11-30T22:54:46.136630Z", "last_refresh": "2023-11-30T23:15:56.214508Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2023-11-30T22:56:33.258058Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2023-11-30T22:56:33.253117Z", "last_refresh": "2023-11-30T23:15:56.214583Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2023-11-30T22:54:43.949497Z", "last_refresh": "2023-11-30T23:15:59.564954Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2023-11-30T22:58:52.105721Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2023-11-30T22:58:59.793467Z", "last_refresh": "2023-11-30T23:15:56.214845Z", "ports": [8800], "running": 2, "size": 2}}] 2023-11-30T23:20:18.976 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2023-11-30T23:20:19.274 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:20:19 smithi038 conmon[81956]: cluster 2023-11-30T23:20:18.094655+0000 mgr.smithi038.ldalxq (mgr. 2023-11-30T23:20:19.274 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:20:19 smithi038 conmon[81956]: 14182) 1234 : cluster [DBG] pgmap v787: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2023-11-30T23:20:19.274 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:20:19 smithi038 conmon[81956]: audit 2023-11-30T23:20:18.542838+0000 mgr.smithi038.ldalxq (mgr.14182) 1235 : audit [DBG] from='client.16180 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-11-30T23:20:19.512 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:20:19 smithi167 conmon[87022]: cluster 2023-11-30T23:20:18.094655+0000 mgr.smithi038.ldalxq (mgr.14182) 1234 : cluster [DBG] pgmap v787: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2023-11-30T23:20:19.512 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:20:19 smithi167 conmon[87022]: audit 2023-11-30T23:20:18.542838+0000 mgr.smithi038.ldalxq (mgr.14182) 1235 : audit [DBG] from='client.16180 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-11-30T23:20:19.977 DEBUG:teuthology.orchestra.run.smithi038:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:0dc074ce0b0b3b4f393f56dd32ef36884ebf45a9 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 3faf8b00-8fd3-11ee-95a2-87774f69a715 -- ceph orch ls -f json 2023-11-30T23:20:21.404 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:20:21 smithi038 conmon[81956]: cluster 2023-11-30T23:20:20.095616+0000 mgr.smithi038.ldalxq (mgr.14182) 1236 : cluster [DBG] pgmap v788: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2023-11-30T23:20:21.512 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:20:21 smithi167 conmon[87022]: cluster 2023-11-30T23:20:20.095616+0000 mgr.smithi038.ldalxq (mgr.14182) 1236 : cluster [DBG] pgmap v788: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2023-11-30T23:20:21.807 INFO:teuthology.orchestra.run.smithi038.stdout: 2023-11-30T23:20:21.807 INFO:teuthology.orchestra.run.smithi038.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2023-11-30T22:54:47.122758Z", "last_refresh": "2023-11-30T23:15:59.564688Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2023-11-30T22:54:42.674972Z", "last_refresh": "2023-11-30T23:15:56.214205Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2023-11-30T22:54:45.114633Z", "last_refresh": "2023-11-30T23:15:59.564823Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2023-11-30T23:12:23.150100Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi167.nhhxhd on smithi167: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi167-nhhxhd\n/bin/podman: stderr Error: error inspecting object: no such container ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi167-nhhxhd\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi167.nhhxhd\n/bin/podman: stderr Error: error inspecting object: no such container ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi167.nhhxhd\nDeploy daemon haproxy.nfs.foo.smithi167.nhhxhd ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi167 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2023-11-30T23:10:30Z\" level=warning msg=\"failed, retrying in 1s ... (1/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-11-30T23:11:08Z\" level=warning msg=\"failed, retrying in 1s ... (2/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-11-30T23:11:45Z\" level=warning msg=\"failed, retrying in 1s ... (3/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi167 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-11-30T23:14:53.155795Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi038.njeday on smithi038: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi038-njeday\n/bin/podman: stderr Error: error inspecting object: no such container ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi038-njeday\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi038.njeday\n/bin/podman: stderr Error: error inspecting object: no such container ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi038.njeday\nDeploy daemon haproxy.nfs.foo.smithi038.njeday ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi038 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2023-11-30T23:13:00Z\" level=warning msg=\"failed, retrying in 1s ... (1/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-11-30T23:13:38Z\" level=warning msg=\"failed, retrying in 1s ... (2/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-11-30T23:14:15Z\" level=warning msg=\"failed, retrying in 1s ... (3/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi038 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-11-30T23:14:53.157035Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi038.pwduyd on smithi038: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2023-11-30T23:14:53.158104Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi167.obmcvj on smithi167: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2023-11-30T23:18:29.795059Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi167.ktqzxw on smithi167: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi167-ktqzxw\n/bin/podman: stderr Error: error inspecting object: no such container ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi167-ktqzxw\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi167.ktqzxw\n/bin/podman: stderr Error: error inspecting object: no such container ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi167.ktqzxw\nDeploy daemon haproxy.nfs.foo.smithi167.ktqzxw ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi167 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2023-11-30T23:16:36Z\" level=warning msg=\"failed, retrying in 1s ... (1/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-11-30T23:17:14Z\" level=warning msg=\"failed, retrying in 1s ... (2/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-11-30T23:17:52Z\" level=warning msg=\"failed, retrying in 1s ... (3/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi167 -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": 9049, "virtual_ip": "10.0.31.38/16"}, "status": {"created": "2023-11-30T22:58:56.312786Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.38/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2023-11-30T22:54:41.668043Z", "last_refresh": "2023-11-30T23:15:56.214350Z", "running": 2, "size": 2}}, {"events": ["2023-11-30T22:55:50.759225Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi038:172.21.15.38=smithi038", "smithi167:172.21.15.167=smithi167"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2023-11-30T22:55:50.756456Z", "last_refresh": "2023-11-30T23:15:56.214426Z", "running": 2, "size": 2}}, {"events": ["2023-11-30T22:58:56.311581Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2023-11-30T22:58:56.308071Z", "last_refresh": "2023-11-30T23:15:59.565359Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2023-11-30T22:54:46.136630Z", "last_refresh": "2023-11-30T23:15:56.214508Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2023-11-30T22:56:33.258058Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2023-11-30T22:56:33.253117Z", "last_refresh": "2023-11-30T23:15:56.214583Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2023-11-30T22:54:43.949497Z", "last_refresh": "2023-11-30T23:15:59.564954Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2023-11-30T22:58:52.105721Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2023-11-30T22:58:59.793467Z", "last_refresh": "2023-11-30T23:15:56.214845Z", "ports": [8800], "running": 2, "size": 2}}] 2023-11-30T23:20:22.241 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2023-11-30T23:20:22.512 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:20:22 smithi167 conmon[87022]: audit 2023-11-30T23:20:21.802827+0000 mgr.smithi038.ldalxq (mgr.14182) 1237 : 2023-11-30T23:20:22.512 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:20:22 smithi167 conmon[87022]: audit [DBG] from='client.16184 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-11-30T23:20:22.524 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:20:22 smithi038 conmon[81956]: audit 2023-11-30T23:20:21.802827 2023-11-30T23:20:22.524 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:20:22 smithi038 conmon[81956]: +0000 mgr.smithi038.ldalxq (mgr.14182) 1237 : audit [DBG] from='client.16184 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-11-30T23:20:23.241 DEBUG:teuthology.orchestra.run.smithi038:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:0dc074ce0b0b3b4f393f56dd32ef36884ebf45a9 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 3faf8b00-8fd3-11ee-95a2-87774f69a715 -- ceph orch ls -f json 2023-11-30T23:20:23.512 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:20:23 smithi167 conmon[87022]: cluster 2023-11-30T23:20:22.096172+0000 mgr.smithi038.ldalxq (mgr.14182) 1238 : cluster [DBG] 2023-11-30T23:20:23.512 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:20:23 smithi167 conmon[87022]: pgmap v789: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2023-11-30T23:20:23.524 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:20:23 smithi038 conmon[81956]: cluster 2023-11-30T23:20:22.096172+0000 mgr.smithi038.ldalxq (mgr. 2023-11-30T23:20:23.524 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:20:23 smithi038 conmon[81956]: 14182) 1238 : cluster [DBG] pgmap v789: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2023-11-30T23:20:25.078 INFO:teuthology.orchestra.run.smithi038.stdout: 2023-11-30T23:20:25.078 INFO:teuthology.orchestra.run.smithi038.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2023-11-30T22:54:47.122758Z", "last_refresh": "2023-11-30T23:15:59.564688Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2023-11-30T22:54:42.674972Z", "last_refresh": "2023-11-30T23:15:56.214205Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2023-11-30T22:54:45.114633Z", "last_refresh": "2023-11-30T23:15:59.564823Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2023-11-30T23:12:23.150100Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi167.nhhxhd on smithi167: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi167-nhhxhd\n/bin/podman: stderr Error: error inspecting object: no such container ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi167-nhhxhd\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi167.nhhxhd\n/bin/podman: stderr Error: error inspecting object: no such container ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi167.nhhxhd\nDeploy daemon haproxy.nfs.foo.smithi167.nhhxhd ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi167 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2023-11-30T23:10:30Z\" level=warning msg=\"failed, retrying in 1s ... (1/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-11-30T23:11:08Z\" level=warning msg=\"failed, retrying in 1s ... (2/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-11-30T23:11:45Z\" level=warning msg=\"failed, retrying in 1s ... (3/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi167 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-11-30T23:14:53.155795Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi038.njeday on smithi038: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi038-njeday\n/bin/podman: stderr Error: error inspecting object: no such container ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi038-njeday\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi038.njeday\n/bin/podman: stderr Error: error inspecting object: no such container ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi038.njeday\nDeploy daemon haproxy.nfs.foo.smithi038.njeday ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi038 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2023-11-30T23:13:00Z\" level=warning msg=\"failed, retrying in 1s ... (1/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-11-30T23:13:38Z\" level=warning msg=\"failed, retrying in 1s ... (2/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-11-30T23:14:15Z\" level=warning msg=\"failed, retrying in 1s ... (3/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi038 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-11-30T23:14:53.157035Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi038.pwduyd on smithi038: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2023-11-30T23:14:53.158104Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi167.obmcvj on smithi167: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2023-11-30T23:18:29.795059Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi167.ktqzxw on smithi167: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi167-ktqzxw\n/bin/podman: stderr Error: error inspecting object: no such container ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi167-ktqzxw\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi167.ktqzxw\n/bin/podman: stderr Error: error inspecting object: no such container ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi167.ktqzxw\nDeploy daemon haproxy.nfs.foo.smithi167.ktqzxw ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi167 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2023-11-30T23:16:36Z\" level=warning msg=\"failed, retrying in 1s ... (1/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-11-30T23:17:14Z\" level=warning msg=\"failed, retrying in 1s ... (2/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-11-30T23:17:52Z\" level=warning msg=\"failed, retrying in 1s ... (3/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi167 -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": 9049, "virtual_ip": "10.0.31.38/16"}, "status": {"created": "2023-11-30T22:58:56.312786Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.38/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2023-11-30T22:54:41.668043Z", "last_refresh": "2023-11-30T23:15:56.214350Z", "running": 2, "size": 2}}, {"events": ["2023-11-30T22:55:50.759225Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi038:172.21.15.38=smithi038", "smithi167:172.21.15.167=smithi167"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2023-11-30T22:55:50.756456Z", "last_refresh": "2023-11-30T23:15:56.214426Z", "running": 2, "size": 2}}, {"events": ["2023-11-30T22:58:56.311581Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2023-11-30T22:58:56.308071Z", "last_refresh": "2023-11-30T23:15:59.565359Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2023-11-30T22:54:46.136630Z", "last_refresh": "2023-11-30T23:15:56.214508Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2023-11-30T22:56:33.258058Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2023-11-30T22:56:33.253117Z", "last_refresh": "2023-11-30T23:15:56.214583Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2023-11-30T22:54:43.949497Z", "last_refresh": "2023-11-30T23:15:59.564954Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2023-11-30T22:58:52.105721Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2023-11-30T22:58:59.793467Z", "last_refresh": "2023-11-30T23:15:56.214845Z", "ports": [8800], "running": 2, "size": 2}}] 2023-11-30T23:20:25.491 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:20:25 smithi038 conmon[81956]: cluster 2023-11-30T23:20:24.096710+0000 mgr.smithi038.ldalxq (mgr.14182) 1239 : cluster [DBG] pgmap v790: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2023-11-30T23:20:25.493 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2023-11-30T23:20:25.512 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:20:25 smithi167 conmon[87022]: cluster 2023-11-30T23:20:24.096710+0000 mgr.smithi038.ldalxq (mgr.14182) 1239 : cluster [DBG] pgmap v790: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2023-11-30T23:20:26.494 DEBUG:teuthology.orchestra.run.smithi038:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:0dc074ce0b0b3b4f393f56dd32ef36884ebf45a9 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 3faf8b00-8fd3-11ee-95a2-87774f69a715 -- ceph orch ls -f json 2023-11-30T23:20:26.512 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:20:26 smithi167 conmon[87022]: audit 2023-11-30T23:20:25.073694+0000 mgr.smithi038.ldalxq (mgr.14182) 1240 : audit [DBG] from='client.16188 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-11-30T23:20:26.524 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:20:26 smithi038 conmon[81956]: audit 2023-11-30T23:20:25.073694+0000 mgr.smithi038.ldalxq (mgr.14182) 2023-11-30T23:20:26.524 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:20:26 smithi038 conmon[81956]: 1240 : audit [DBG] from='client.16188 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-11-30T23:20:27.274 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:20:27 smithi038 conmon[81956]: cluster 2023-11-30T23:20:26.097763+0000 mgr.smithi038.ldalxq 2023-11-30T23:20:27.274 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:20:27 smithi038 conmon[81956]: (mgr.14182) 1241 : cluster [DBG] pgmap v791: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2023-11-30T23:20:27.512 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:20:27 smithi167 conmon[87022]: cluster 2023-11-30T23:20:26.097763+0000 mgr.smithi038.ldalxq (mgr.14182) 1241 : cluster [DBG] pgmap v791: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2023-11-30T23:20:28.205 INFO:teuthology.orchestra.run.smithi038.stdout: 2023-11-30T23:20:28.205 INFO:teuthology.orchestra.run.smithi038.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2023-11-30T22:54:47.122758Z", "last_refresh": "2023-11-30T23:15:59.564688Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2023-11-30T22:54:42.674972Z", "last_refresh": "2023-11-30T23:15:56.214205Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2023-11-30T22:54:45.114633Z", "last_refresh": "2023-11-30T23:15:59.564823Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2023-11-30T23:12:23.150100Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi167.nhhxhd on smithi167: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi167-nhhxhd\n/bin/podman: stderr Error: error inspecting object: no such container ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi167-nhhxhd\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi167.nhhxhd\n/bin/podman: stderr Error: error inspecting object: no such container ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi167.nhhxhd\nDeploy daemon haproxy.nfs.foo.smithi167.nhhxhd ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi167 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2023-11-30T23:10:30Z\" level=warning msg=\"failed, retrying in 1s ... (1/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-11-30T23:11:08Z\" level=warning msg=\"failed, retrying in 1s ... (2/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-11-30T23:11:45Z\" level=warning msg=\"failed, retrying in 1s ... (3/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi167 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-11-30T23:14:53.155795Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi038.njeday on smithi038: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi038-njeday\n/bin/podman: stderr Error: error inspecting object: no such container ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi038-njeday\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi038.njeday\n/bin/podman: stderr Error: error inspecting object: no such container ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi038.njeday\nDeploy daemon haproxy.nfs.foo.smithi038.njeday ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi038 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2023-11-30T23:13:00Z\" level=warning msg=\"failed, retrying in 1s ... (1/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-11-30T23:13:38Z\" level=warning msg=\"failed, retrying in 1s ... (2/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-11-30T23:14:15Z\" level=warning msg=\"failed, retrying in 1s ... (3/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi038 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-11-30T23:14:53.157035Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi038.pwduyd on smithi038: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2023-11-30T23:14:53.158104Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi167.obmcvj on smithi167: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2023-11-30T23:18:29.795059Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi167.ktqzxw on smithi167: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi167-ktqzxw\n/bin/podman: stderr Error: error inspecting object: no such container ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi167-ktqzxw\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi167.ktqzxw\n/bin/podman: stderr Error: error inspecting object: no such container ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi167.ktqzxw\nDeploy daemon haproxy.nfs.foo.smithi167.ktqzxw ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi167 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2023-11-30T23:16:36Z\" level=warning msg=\"failed, retrying in 1s ... (1/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-11-30T23:17:14Z\" level=warning msg=\"failed, retrying in 1s ... (2/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-11-30T23:17:52Z\" level=warning msg=\"failed, retrying in 1s ... (3/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi167 -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": 9049, "virtual_ip": "10.0.31.38/16"}, "status": {"created": "2023-11-30T22:58:56.312786Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.38/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2023-11-30T22:54:41.668043Z", "last_refresh": "2023-11-30T23:15:56.214350Z", "running": 2, "size": 2}}, {"events": ["2023-11-30T22:55:50.759225Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi038:172.21.15.38=smithi038", "smithi167:172.21.15.167=smithi167"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2023-11-30T22:55:50.756456Z", "last_refresh": "2023-11-30T23:15:56.214426Z", "running": 2, "size": 2}}, {"events": ["2023-11-30T22:58:56.311581Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2023-11-30T22:58:56.308071Z", "last_refresh": "2023-11-30T23:15:59.565359Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2023-11-30T22:54:46.136630Z", "last_refresh": "2023-11-30T23:15:56.214508Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2023-11-30T22:56:33.258058Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2023-11-30T22:56:33.253117Z", "last_refresh": "2023-11-30T23:15:56.214583Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2023-11-30T22:54:43.949497Z", "last_refresh": "2023-11-30T23:15:59.564954Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2023-11-30T22:58:52.105721Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2023-11-30T22:58:59.793467Z", "last_refresh": "2023-11-30T23:15:56.214845Z", "ports": [8800], "running": 2, "size": 2}}] 2023-11-30T23:20:28.654 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2023-11-30T23:20:29.512 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:20:29 smithi167 conmon[87022]: cluster 2023-11-30T23:20:28.098449+0000 mgr.smithi038.ldalxq (mgr.14182) 1242 : cluster [DBG] 2023-11-30T23:20:29.512 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:20:29 smithi167 conmon[87022]: pgmap v792: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2023-11-30T23:20:29.512 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:20:29 smithi167 conmon[87022]: audit 2023-11-30T23:20:28.200855+0000 mgr.smithi038.ldalxq (mgr.14182) 1243 : audit [DBG] from='client.16192 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-11-30T23:20:29.524 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:20:29 smithi038 conmon[81956]: cluster 2023-11-30T23:20 2023-11-30T23:20:29.524 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:20:29 smithi038 conmon[81956]: :28.098449+0000 mgr.smithi038.ldalxq (mgr.14182) 1242 : cluster [DBG] pgmap v792: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2023-11-30T23:20:29.524 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:20:29 smithi038 conmon[81956]: audit 2023-11-30T23 2023-11-30T23:20:29.524 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:20:29 smithi038 conmon[81956]: :20:28.200855+0000 mgr.smithi038.ldalxq (mgr.14182) 1243 : audit [DBG] from='client.16192 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-11-30T23:20:29.655 DEBUG:teuthology.orchestra.run.smithi038:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:0dc074ce0b0b3b4f393f56dd32ef36884ebf45a9 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 3faf8b00-8fd3-11ee-95a2-87774f69a715 -- ceph orch ls -f json 2023-11-30T23:20:31.498 INFO:teuthology.orchestra.run.smithi038.stdout: 2023-11-30T23:20:31.499 INFO:teuthology.orchestra.run.smithi038.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2023-11-30T22:54:47.122758Z", "last_refresh": "2023-11-30T23:15:59.564688Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2023-11-30T22:54:42.674972Z", "last_refresh": "2023-11-30T23:15:56.214205Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2023-11-30T22:54:45.114633Z", "last_refresh": "2023-11-30T23:15:59.564823Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2023-11-30T23:12:23.150100Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi167.nhhxhd on smithi167: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi167-nhhxhd\n/bin/podman: stderr Error: error inspecting object: no such container ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi167-nhhxhd\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi167.nhhxhd\n/bin/podman: stderr Error: error inspecting object: no such container ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi167.nhhxhd\nDeploy daemon haproxy.nfs.foo.smithi167.nhhxhd ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi167 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2023-11-30T23:10:30Z\" level=warning msg=\"failed, retrying in 1s ... (1/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-11-30T23:11:08Z\" level=warning msg=\"failed, retrying in 1s ... (2/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-11-30T23:11:45Z\" level=warning msg=\"failed, retrying in 1s ... (3/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi167 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-11-30T23:14:53.155795Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi038.njeday on smithi038: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi038-njeday\n/bin/podman: stderr Error: error inspecting object: no such container ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi038-njeday\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi038.njeday\n/bin/podman: stderr Error: error inspecting object: no such container ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi038.njeday\nDeploy daemon haproxy.nfs.foo.smithi038.njeday ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi038 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2023-11-30T23:13:00Z\" level=warning msg=\"failed, retrying in 1s ... (1/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-11-30T23:13:38Z\" level=warning msg=\"failed, retrying in 1s ... (2/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-11-30T23:14:15Z\" level=warning msg=\"failed, retrying in 1s ... (3/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi038 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-11-30T23:14:53.157035Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi038.pwduyd on smithi038: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2023-11-30T23:14:53.158104Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi167.obmcvj on smithi167: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2023-11-30T23:18:29.795059Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi167.ktqzxw on smithi167: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi167-ktqzxw\n/bin/podman: stderr Error: error inspecting object: no such container ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi167-ktqzxw\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi167.ktqzxw\n/bin/podman: stderr Error: error inspecting object: no such container ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi167.ktqzxw\nDeploy daemon haproxy.nfs.foo.smithi167.ktqzxw ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi167 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2023-11-30T23:16:36Z\" level=warning msg=\"failed, retrying in 1s ... (1/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-11-30T23:17:14Z\" level=warning msg=\"failed, retrying in 1s ... (2/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-11-30T23:17:52Z\" level=warning msg=\"failed, retrying in 1s ... (3/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi167 -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": 9049, "virtual_ip": "10.0.31.38/16"}, "status": {"created": "2023-11-30T22:58:56.312786Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.38/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2023-11-30T22:54:41.668043Z", "last_refresh": "2023-11-30T23:15:56.214350Z", "running": 2, "size": 2}}, {"events": ["2023-11-30T22:55:50.759225Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi038:172.21.15.38=smithi038", "smithi167:172.21.15.167=smithi167"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2023-11-30T22:55:50.756456Z", "last_refresh": "2023-11-30T23:15:56.214426Z", "running": 2, "size": 2}}, {"events": ["2023-11-30T22:58:56.311581Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2023-11-30T22:58:56.308071Z", "last_refresh": "2023-11-30T23:15:59.565359Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2023-11-30T22:54:46.136630Z", "last_refresh": "2023-11-30T23:15:56.214508Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2023-11-30T22:56:33.258058Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2023-11-30T22:56:33.253117Z", "last_refresh": "2023-11-30T23:15:56.214583Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2023-11-30T22:54:43.949497Z", "last_refresh": "2023-11-30T23:15:59.564954Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2023-11-30T22:58:52.105721Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2023-11-30T22:58:59.793467Z", "last_refresh": "2023-11-30T23:15:56.214845Z", "ports": [8800], "running": 2, "size": 2}}] 2023-11-30T23:20:31.512 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:20:31 smithi167 conmon[87022]: cluster 2023-11-30T23:20:30.099180+0000 mgr.smithi038.ldalxq (mgr.14182) 1244 : cluster [DBG] pgmap v793: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2023-11-30T23:20:31.519 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:20:31 smithi038 conmon[81956]: cluster 2023-11-30T23:20:30.099180+0000 mgr.smithi038.ldalxq (mgr.14182) 1244 : cluster [DBG] pgmap v793: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2023-11-30T23:20:31.912 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2023-11-30T23:20:32.512 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:20:32 smithi167 conmon[87022]: audit 2023-11-30T23:20:31.493979+0000 mgr.smithi038.ldalxq (mgr.14182) 1245 : audit [DBG] from='client.16196 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-11-30T23:20:32.524 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:20:32 smithi038 conmon[81956]: audit 2023-11-30T23:20:31.493979+0000 2023-11-30T23:20:32.524 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:20:32 smithi038 conmon[81956]: mgr.smithi038.ldalxq (mgr.14182) 1245 : audit [DBG] from='client.16196 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-11-30T23:20:32.912 DEBUG:teuthology.orchestra.run.smithi038:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:0dc074ce0b0b3b4f393f56dd32ef36884ebf45a9 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 3faf8b00-8fd3-11ee-95a2-87774f69a715 -- ceph orch ls -f json 2023-11-30T23:20:33.484 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:20:33 smithi038 conmon[81956]: cluster 2023-11-30T23:20:32.099686+0000 mgr.smithi038.ldalxq (mgr. 2023-11-30T23:20:33.485 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:20:33 smithi038 conmon[81956]: 14182) 1246 : cluster [DBG] pgmap v794: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2023-11-30T23:20:33.512 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:20:33 smithi167 conmon[87022]: cluster 2023-11-30T23:20:32.099686+0000 mgr.smithi038.ldalxq (mgr.14182) 1246 : cluster [DBG] pgmap v794: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2023-11-30T23:20:34.700 INFO:teuthology.orchestra.run.smithi038.stdout: 2023-11-30T23:20:34.700 INFO:teuthology.orchestra.run.smithi038.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2023-11-30T22:54:47.122758Z", "last_refresh": "2023-11-30T23:15:59.564688Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2023-11-30T22:54:42.674972Z", "last_refresh": "2023-11-30T23:15:56.214205Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2023-11-30T22:54:45.114633Z", "last_refresh": "2023-11-30T23:15:59.564823Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2023-11-30T23:12:23.150100Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi167.nhhxhd on smithi167: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi167-nhhxhd\n/bin/podman: stderr Error: error inspecting object: no such container ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi167-nhhxhd\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi167.nhhxhd\n/bin/podman: stderr Error: error inspecting object: no such container ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi167.nhhxhd\nDeploy daemon haproxy.nfs.foo.smithi167.nhhxhd ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi167 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2023-11-30T23:10:30Z\" level=warning msg=\"failed, retrying in 1s ... (1/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-11-30T23:11:08Z\" level=warning msg=\"failed, retrying in 1s ... (2/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-11-30T23:11:45Z\" level=warning msg=\"failed, retrying in 1s ... (3/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi167 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-11-30T23:14:53.155795Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi038.njeday on smithi038: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi038-njeday\n/bin/podman: stderr Error: error inspecting object: no such container ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi038-njeday\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi038.njeday\n/bin/podman: stderr Error: error inspecting object: no such container ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi038.njeday\nDeploy daemon haproxy.nfs.foo.smithi038.njeday ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi038 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2023-11-30T23:13:00Z\" level=warning msg=\"failed, retrying in 1s ... (1/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-11-30T23:13:38Z\" level=warning msg=\"failed, retrying in 1s ... (2/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-11-30T23:14:15Z\" level=warning msg=\"failed, retrying in 1s ... (3/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi038 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-11-30T23:14:53.157035Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi038.pwduyd on smithi038: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2023-11-30T23:14:53.158104Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi167.obmcvj on smithi167: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2023-11-30T23:18:29.795059Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi167.ktqzxw on smithi167: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi167-ktqzxw\n/bin/podman: stderr Error: error inspecting object: no such container ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi167-ktqzxw\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi167.ktqzxw\n/bin/podman: stderr Error: error inspecting object: no such container ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi167.ktqzxw\nDeploy daemon haproxy.nfs.foo.smithi167.ktqzxw ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi167 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2023-11-30T23:16:36Z\" level=warning msg=\"failed, retrying in 1s ... (1/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-11-30T23:17:14Z\" level=warning msg=\"failed, retrying in 1s ... (2/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-11-30T23:17:52Z\" level=warning msg=\"failed, retrying in 1s ... (3/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi167 -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": 9049, "virtual_ip": "10.0.31.38/16"}, "status": {"created": "2023-11-30T22:58:56.312786Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.38/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2023-11-30T22:54:41.668043Z", "last_refresh": "2023-11-30T23:15:56.214350Z", "running": 2, "size": 2}}, {"events": ["2023-11-30T22:55:50.759225Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi038:172.21.15.38=smithi038", "smithi167:172.21.15.167=smithi167"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2023-11-30T22:55:50.756456Z", "last_refresh": "2023-11-30T23:15:56.214426Z", "running": 2, "size": 2}}, {"events": ["2023-11-30T22:58:56.311581Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2023-11-30T22:58:56.308071Z", "last_refresh": "2023-11-30T23:15:59.565359Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2023-11-30T22:54:46.136630Z", "last_refresh": "2023-11-30T23:15:56.214508Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2023-11-30T22:56:33.258058Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2023-11-30T22:56:33.253117Z", "last_refresh": "2023-11-30T23:15:56.214583Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2023-11-30T22:54:43.949497Z", "last_refresh": "2023-11-30T23:15:59.564954Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2023-11-30T22:58:52.105721Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2023-11-30T22:58:59.793467Z", "last_refresh": "2023-11-30T23:15:56.214845Z", "ports": [8800], "running": 2, "size": 2}}] 2023-11-30T23:20:35.163 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2023-11-30T23:20:35.512 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:20:35 smithi167 conmon[87022]: cluster 2023-11-30T23:20:34.100249+0000 mgr.smithi038.ldalxq (mgr.14182) 1247 : cluster [DBG] pgmap v795: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2023-11-30T23:20:35.512 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:20:35 smithi167 conmon[87022]: audit 2023-11-30T23:20: 2023-11-30T23:20:35.512 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:20:35 smithi167 conmon[87022]: 34.696458+0000 mgr.smithi038.ldalxq (mgr.14182) 1248 : audit [DBG] from='client.16200 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-11-30T23:20:35.524 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:20:35 smithi038 conmon[81956]: cluster 2023-11-30T23:20:34.100249+0000 mgr.smithi038.ldalxq (mgr.14182) 1247 : cluster [DBG] pgmap v795: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2023-11-30T23:20:35.524 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:20:35 smithi038 conmon[81956]: audit 2023-11-30T23:20:34.696458+0000 mgr.smithi038.ldalxq (mgr.14182) 1248 : audit [DBG] from='client.16200 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-11-30T23:20:36.164 DEBUG:teuthology.orchestra.run.smithi038:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:0dc074ce0b0b3b4f393f56dd32ef36884ebf45a9 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 3faf8b00-8fd3-11ee-95a2-87774f69a715 -- ceph orch ls -f json 2023-11-30T23:20:37.512 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:20:37 smithi167 conmon[87022]: cluster 2023-11-30T23:20:36.101111+0000 mgr.smithi038.ldalxq (mgr.14182) 1249 : cluster [DBG] pgmap v796: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2023-11-30T23:20:37.524 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:20:37 smithi038 conmon[81956]: cluster 2023-11-30T23:20:36.101111+0000 2023-11-30T23:20:37.524 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:20:37 smithi038 conmon[81956]: mgr.smithi038.ldalxq (mgr.14182) 1249 : cluster [DBG] pgmap v796: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2023-11-30T23:20:37.998 INFO:teuthology.orchestra.run.smithi038.stdout: 2023-11-30T23:20:37.998 INFO:teuthology.orchestra.run.smithi038.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2023-11-30T22:54:47.122758Z", "last_refresh": "2023-11-30T23:15:59.564688Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2023-11-30T22:54:42.674972Z", "last_refresh": "2023-11-30T23:15:56.214205Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2023-11-30T22:54:45.114633Z", "last_refresh": "2023-11-30T23:15:59.564823Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2023-11-30T23:12:23.150100Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi167.nhhxhd on smithi167: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi167-nhhxhd\n/bin/podman: stderr Error: error inspecting object: no such container ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi167-nhhxhd\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi167.nhhxhd\n/bin/podman: stderr Error: error inspecting object: no such container ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi167.nhhxhd\nDeploy daemon haproxy.nfs.foo.smithi167.nhhxhd ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi167 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2023-11-30T23:10:30Z\" level=warning msg=\"failed, retrying in 1s ... (1/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-11-30T23:11:08Z\" level=warning msg=\"failed, retrying in 1s ... (2/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-11-30T23:11:45Z\" level=warning msg=\"failed, retrying in 1s ... (3/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi167 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-11-30T23:14:53.155795Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi038.njeday on smithi038: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi038-njeday\n/bin/podman: stderr Error: error inspecting object: no such container ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi038-njeday\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi038.njeday\n/bin/podman: stderr Error: error inspecting object: no such container ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi038.njeday\nDeploy daemon haproxy.nfs.foo.smithi038.njeday ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi038 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2023-11-30T23:13:00Z\" level=warning msg=\"failed, retrying in 1s ... (1/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-11-30T23:13:38Z\" level=warning msg=\"failed, retrying in 1s ... (2/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-11-30T23:14:15Z\" level=warning msg=\"failed, retrying in 1s ... (3/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi038 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-11-30T23:14:53.157035Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi038.pwduyd on smithi038: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2023-11-30T23:14:53.158104Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi167.obmcvj on smithi167: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2023-11-30T23:18:29.795059Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi167.ktqzxw on smithi167: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi167-ktqzxw\n/bin/podman: stderr Error: error inspecting object: no such container ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi167-ktqzxw\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi167.ktqzxw\n/bin/podman: stderr Error: error inspecting object: no such container ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi167.ktqzxw\nDeploy daemon haproxy.nfs.foo.smithi167.ktqzxw ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi167 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2023-11-30T23:16:36Z\" level=warning msg=\"failed, retrying in 1s ... (1/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-11-30T23:17:14Z\" level=warning msg=\"failed, retrying in 1s ... (2/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-11-30T23:17:52Z\" level=warning msg=\"failed, retrying in 1s ... (3/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi167 -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": 9049, "virtual_ip": "10.0.31.38/16"}, "status": {"created": "2023-11-30T22:58:56.312786Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.38/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2023-11-30T22:54:41.668043Z", "last_refresh": "2023-11-30T23:15:56.214350Z", "running": 2, "size": 2}}, {"events": ["2023-11-30T22:55:50.759225Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi038:172.21.15.38=smithi038", "smithi167:172.21.15.167=smithi167"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2023-11-30T22:55:50.756456Z", "last_refresh": "2023-11-30T23:15:56.214426Z", "running": 2, "size": 2}}, {"events": ["2023-11-30T22:58:56.311581Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2023-11-30T22:58:56.308071Z", "last_refresh": "2023-11-30T23:15:59.565359Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2023-11-30T22:54:46.136630Z", "last_refresh": "2023-11-30T23:15:56.214508Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2023-11-30T22:56:33.258058Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2023-11-30T22:56:33.253117Z", "last_refresh": "2023-11-30T23:15:56.214583Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2023-11-30T22:54:43.949497Z", "last_refresh": "2023-11-30T23:15:59.564954Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2023-11-30T22:58:52.105721Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2023-11-30T22:58:59.793467Z", "last_refresh": "2023-11-30T23:15:56.214845Z", "ports": [8800], "running": 2, "size": 2}}] 2023-11-30T23:20:38.531 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2023-11-30T23:20:39.512 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:20:39 smithi167 conmon[87022]: audit 2023-11-30T23:20:37.993783+0000 mgr.smithi038.ldalxq (mgr.14182) 1250 : audit [DBG] 2023-11-30T23:20:39.512 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:20:39 smithi167 conmon[87022]: from='client.16204 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-11-30T23:20:39.512 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:20:39 smithi167 conmon[87022]: cluster 2023-11-30T23:20:38.101661+0000 mgr.smithi038.ldalxq (mgr.14182) 1251 : cluster [DBG] pgmap v797: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2023-11-30T23:20:39.524 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:20:39 smithi038 conmon[81956]: audit 2023-11-30T23:20:37.993783+0000 mgr.smithi038.ldalxq (mgr.14182) 2023-11-30T23:20:39.524 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:20:39 smithi038 conmon[81956]: 1250 : audit [DBG] from='client.16204 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-11-30T23:20:39.524 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:20:39 smithi038 conmon[81956]: cluster 2023-11-30T23:20:38.101661+0000 mgr.smithi038.ldalxq (mgr.14182 2023-11-30T23:20:39.524 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:20:39 smithi038 conmon[81956]: ) 1251 : cluster [DBG] pgmap v797: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2023-11-30T23:20:39.533 DEBUG:teuthology.orchestra.run.smithi038:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:0dc074ce0b0b3b4f393f56dd32ef36884ebf45a9 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 3faf8b00-8fd3-11ee-95a2-87774f69a715 -- ceph orch ls -f json 2023-11-30T23:20:41.249 INFO:teuthology.orchestra.run.smithi038.stdout: 2023-11-30T23:20:41.249 INFO:teuthology.orchestra.run.smithi038.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2023-11-30T22:54:47.122758Z", "last_refresh": "2023-11-30T23:15:59.564688Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2023-11-30T22:54:42.674972Z", "last_refresh": "2023-11-30T23:15:56.214205Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2023-11-30T22:54:45.114633Z", "last_refresh": "2023-11-30T23:15:59.564823Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2023-11-30T23:12:23.150100Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi167.nhhxhd on smithi167: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi167-nhhxhd\n/bin/podman: stderr Error: error inspecting object: no such container ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi167-nhhxhd\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi167.nhhxhd\n/bin/podman: stderr Error: error inspecting object: no such container ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi167.nhhxhd\nDeploy daemon haproxy.nfs.foo.smithi167.nhhxhd ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi167 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2023-11-30T23:10:30Z\" level=warning msg=\"failed, retrying in 1s ... (1/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-11-30T23:11:08Z\" level=warning msg=\"failed, retrying in 1s ... (2/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-11-30T23:11:45Z\" level=warning msg=\"failed, retrying in 1s ... (3/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi167 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-11-30T23:14:53.155795Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi038.njeday on smithi038: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi038-njeday\n/bin/podman: stderr Error: error inspecting object: no such container ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi038-njeday\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi038.njeday\n/bin/podman: stderr Error: error inspecting object: no such container ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi038.njeday\nDeploy daemon haproxy.nfs.foo.smithi038.njeday ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi038 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2023-11-30T23:13:00Z\" level=warning msg=\"failed, retrying in 1s ... (1/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-11-30T23:13:38Z\" level=warning msg=\"failed, retrying in 1s ... (2/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-11-30T23:14:15Z\" level=warning msg=\"failed, retrying in 1s ... (3/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi038 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-11-30T23:14:53.157035Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi038.pwduyd on smithi038: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2023-11-30T23:14:53.158104Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi167.obmcvj on smithi167: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2023-11-30T23:18:29.795059Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi167.ktqzxw on smithi167: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi167-ktqzxw\n/bin/podman: stderr Error: error inspecting object: no such container ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi167-ktqzxw\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi167.ktqzxw\n/bin/podman: stderr Error: error inspecting object: no such container ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi167.ktqzxw\nDeploy daemon haproxy.nfs.foo.smithi167.ktqzxw ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi167 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2023-11-30T23:16:36Z\" level=warning msg=\"failed, retrying in 1s ... (1/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-11-30T23:17:14Z\" level=warning msg=\"failed, retrying in 1s ... (2/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-11-30T23:17:52Z\" level=warning msg=\"failed, retrying in 1s ... (3/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi167 -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": 9049, "virtual_ip": "10.0.31.38/16"}, "status": {"created": "2023-11-30T22:58:56.312786Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.38/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2023-11-30T22:54:41.668043Z", "last_refresh": "2023-11-30T23:15:56.214350Z", "running": 2, "size": 2}}, {"events": ["2023-11-30T22:55:50.759225Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi038:172.21.15.38=smithi038", "smithi167:172.21.15.167=smithi167"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2023-11-30T22:55:50.756456Z", "last_refresh": "2023-11-30T23:15:56.214426Z", "running": 2, "size": 2}}, {"events": ["2023-11-30T22:58:56.311581Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2023-11-30T22:58:56.308071Z", "last_refresh": "2023-11-30T23:15:59.565359Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2023-11-30T22:54:46.136630Z", "last_refresh": "2023-11-30T23:15:56.214508Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2023-11-30T22:56:33.258058Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2023-11-30T22:56:33.253117Z", "last_refresh": "2023-11-30T23:15:56.214583Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2023-11-30T22:54:43.949497Z", "last_refresh": "2023-11-30T23:15:59.564954Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2023-11-30T22:58:52.105721Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2023-11-30T22:58:59.793467Z", "last_refresh": "2023-11-30T23:15:56.214845Z", "ports": [8800], "running": 2, "size": 2}}] 2023-11-30T23:20:41.512 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:20:41 smithi167 conmon[87022]: cluster 2023-11-30T23:20:40.102375+0000 mgr.smithi038.ldalxq (mgr.14182) 1252 : cluster [DBG] pgmap v798: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2023-11-30T23:20:41.523 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:20:41 smithi038 conmon[81956]: cluster 2023-11-30T23:20:40.102375+0000 mgr.smithi038.ldalxq (mgr.14182) 1252 : cluster [DBG] pgmap v798: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2023-11-30T23:20:41.682 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2023-11-30T23:20:42.512 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:20:42 smithi167 conmon[87022]: audit 2023-11-30T23:20:41.242349+0000 mgr.smithi038.ldalxq (mgr.14182) 1253 : audit [DBG] from='client.16208 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-11-30T23:20:42.524 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:20:42 smithi038 conmon[81956]: audit 2023-11-30T23:20:41.242349+0000 mgr.smithi038.ldalxq (mgr.14182) 1253 : audit [DBG] from='client.16208 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-11-30T23:20:42.683 DEBUG:teuthology.orchestra.run.smithi038:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:0dc074ce0b0b3b4f393f56dd32ef36884ebf45a9 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 3faf8b00-8fd3-11ee-95a2-87774f69a715 -- ceph orch ls -f json 2023-11-30T23:20:43.512 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:20:43 smithi167 conmon[87022]: cluster 2023-11-30T23:20:42.102868+0000 mgr.smithi038.ldalxq (mgr.14182) 1254 : cluster [DBG] pgmap v799: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2023-11-30T23:20:43.524 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:20:43 smithi038 conmon[81956]: cluster 2023-11-30T23:20:42.102868+0000 2023-11-30T23:20:43.524 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:20:43 smithi038 conmon[81956]: mgr.smithi038.ldalxq (mgr.14182) 1254 : cluster [DBG] pgmap v799: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2023-11-30T23:20:44.394 INFO:teuthology.orchestra.run.smithi038.stdout: 2023-11-30T23:20:44.394 INFO:teuthology.orchestra.run.smithi038.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2023-11-30T22:54:47.122758Z", "last_refresh": "2023-11-30T23:15:59.564688Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2023-11-30T22:54:42.674972Z", "last_refresh": "2023-11-30T23:15:56.214205Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2023-11-30T22:54:45.114633Z", "last_refresh": "2023-11-30T23:15:59.564823Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2023-11-30T23:12:23.150100Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi167.nhhxhd on smithi167: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi167-nhhxhd\n/bin/podman: stderr Error: error inspecting object: no such container ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi167-nhhxhd\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi167.nhhxhd\n/bin/podman: stderr Error: error inspecting object: no such container ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi167.nhhxhd\nDeploy daemon haproxy.nfs.foo.smithi167.nhhxhd ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi167 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2023-11-30T23:10:30Z\" level=warning msg=\"failed, retrying in 1s ... (1/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-11-30T23:11:08Z\" level=warning msg=\"failed, retrying in 1s ... (2/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-11-30T23:11:45Z\" level=warning msg=\"failed, retrying in 1s ... (3/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi167 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-11-30T23:14:53.155795Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi038.njeday on smithi038: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi038-njeday\n/bin/podman: stderr Error: error inspecting object: no such container ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi038-njeday\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi038.njeday\n/bin/podman: stderr Error: error inspecting object: no such container ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi038.njeday\nDeploy daemon haproxy.nfs.foo.smithi038.njeday ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi038 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2023-11-30T23:13:00Z\" level=warning msg=\"failed, retrying in 1s ... (1/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-11-30T23:13:38Z\" level=warning msg=\"failed, retrying in 1s ... (2/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-11-30T23:14:15Z\" level=warning msg=\"failed, retrying in 1s ... (3/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi038 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-11-30T23:14:53.157035Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi038.pwduyd on smithi038: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2023-11-30T23:14:53.158104Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi167.obmcvj on smithi167: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2023-11-30T23:18:29.795059Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi167.ktqzxw on smithi167: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi167-ktqzxw\n/bin/podman: stderr Error: error inspecting object: no such container ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi167-ktqzxw\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi167.ktqzxw\n/bin/podman: stderr Error: error inspecting object: no such container ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi167.ktqzxw\nDeploy daemon haproxy.nfs.foo.smithi167.ktqzxw ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi167 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2023-11-30T23:16:36Z\" level=warning msg=\"failed, retrying in 1s ... (1/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-11-30T23:17:14Z\" level=warning msg=\"failed, retrying in 1s ... (2/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-11-30T23:17:52Z\" level=warning msg=\"failed, retrying in 1s ... (3/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi167 -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": 9049, "virtual_ip": "10.0.31.38/16"}, "status": {"created": "2023-11-30T22:58:56.312786Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.38/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2023-11-30T22:54:41.668043Z", "last_refresh": "2023-11-30T23:15:56.214350Z", "running": 2, "size": 2}}, {"events": ["2023-11-30T22:55:50.759225Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi038:172.21.15.38=smithi038", "smithi167:172.21.15.167=smithi167"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2023-11-30T22:55:50.756456Z", "last_refresh": "2023-11-30T23:15:56.214426Z", "running": 2, "size": 2}}, {"events": ["2023-11-30T22:58:56.311581Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2023-11-30T22:58:56.308071Z", "last_refresh": "2023-11-30T23:15:59.565359Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2023-11-30T22:54:46.136630Z", "last_refresh": "2023-11-30T23:15:56.214508Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2023-11-30T22:56:33.258058Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2023-11-30T22:56:33.253117Z", "last_refresh": "2023-11-30T23:15:56.214583Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2023-11-30T22:54:43.949497Z", "last_refresh": "2023-11-30T23:15:59.564954Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2023-11-30T22:58:52.105721Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2023-11-30T22:58:59.793467Z", "last_refresh": "2023-11-30T23:15:56.214845Z", "ports": [8800], "running": 2, "size": 2}}] 2023-11-30T23:20:44.834 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2023-11-30T23:20:45.512 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:20:45 smithi167 conmon[87022]: cluster 2023-11-30T23:20:44.103424+0000 mgr.smithi038.ldalxq (mgr.14182) 1255 : cluster [DBG] pgmap v800: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2023-11-30T23:20:45.512 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:20:45 smithi167 conmon[87022]: audit 2023-11-30T23:20:44.389714+0000 mgr.smithi038.ldalxq (mgr.14182) 1256 : audit [DBG] from='client.16212 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-11-30T23:20:45.524 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:20:45 smithi038 conmon[81956]: cluster 2023-11-30T23:20:44.103424+0000 mgr.smithi038.ldalxq (mgr.14182) 2023-11-30T23:20:45.524 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:20:45 smithi038 conmon[81956]: 1255 : cluster [DBG] pgmap v800: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2023-11-30T23:20:45.524 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:20:45 smithi038 conmon[81956]: audit 2023-11-30T23:20:44.389714+0000 mgr.smithi038.ldalxq (mgr.14182) 1256 : audit [DBG] from='client.16212 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-11-30T23:20:45.835 DEBUG:teuthology.orchestra.run.smithi038:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:0dc074ce0b0b3b4f393f56dd32ef36884ebf45a9 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 3faf8b00-8fd3-11ee-95a2-87774f69a715 -- ceph orch ls -f json 2023-11-30T23:20:47.525 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:20:47 smithi038 conmon[81956]: cluster 2023-11-30T23:20:46.104311+0000 mgr.smithi038.ldalxq (mgr.14182) 1257 : cluster [DBG] pgmap v801: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2023-11-30T23:20:47.682 INFO:teuthology.orchestra.run.smithi038.stdout: 2023-11-30T23:20:47.683 INFO:teuthology.orchestra.run.smithi038.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2023-11-30T22:54:47.122758Z", "last_refresh": "2023-11-30T23:15:59.564688Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2023-11-30T22:54:42.674972Z", "last_refresh": "2023-11-30T23:15:56.214205Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2023-11-30T22:54:45.114633Z", "last_refresh": "2023-11-30T23:15:59.564823Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2023-11-30T23:12:23.150100Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi167.nhhxhd on smithi167: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi167-nhhxhd\n/bin/podman: stderr Error: error inspecting object: no such container ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi167-nhhxhd\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi167.nhhxhd\n/bin/podman: stderr Error: error inspecting object: no such container ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi167.nhhxhd\nDeploy daemon haproxy.nfs.foo.smithi167.nhhxhd ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi167 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2023-11-30T23:10:30Z\" level=warning msg=\"failed, retrying in 1s ... (1/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-11-30T23:11:08Z\" level=warning msg=\"failed, retrying in 1s ... (2/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-11-30T23:11:45Z\" level=warning msg=\"failed, retrying in 1s ... (3/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi167 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-11-30T23:14:53.155795Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi038.njeday on smithi038: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi038-njeday\n/bin/podman: stderr Error: error inspecting object: no such container ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi038-njeday\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi038.njeday\n/bin/podman: stderr Error: error inspecting object: no such container ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi038.njeday\nDeploy daemon haproxy.nfs.foo.smithi038.njeday ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi038 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2023-11-30T23:13:00Z\" level=warning msg=\"failed, retrying in 1s ... (1/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-11-30T23:13:38Z\" level=warning msg=\"failed, retrying in 1s ... (2/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-11-30T23:14:15Z\" level=warning msg=\"failed, retrying in 1s ... (3/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi038 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-11-30T23:14:53.157035Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi038.pwduyd on smithi038: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2023-11-30T23:14:53.158104Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi167.obmcvj on smithi167: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2023-11-30T23:18:29.795059Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi167.ktqzxw on smithi167: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi167-ktqzxw\n/bin/podman: stderr Error: error inspecting object: no such container ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi167-ktqzxw\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi167.ktqzxw\n/bin/podman: stderr Error: error inspecting object: no such container ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi167.ktqzxw\nDeploy daemon haproxy.nfs.foo.smithi167.ktqzxw ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi167 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2023-11-30T23:16:36Z\" level=warning msg=\"failed, retrying in 1s ... (1/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-11-30T23:17:14Z\" level=warning msg=\"failed, retrying in 1s ... (2/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-11-30T23:17:52Z\" level=warning msg=\"failed, retrying in 1s ... (3/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi167 -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": 9049, "virtual_ip": "10.0.31.38/16"}, "status": {"created": "2023-11-30T22:58:56.312786Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.38/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2023-11-30T22:54:41.668043Z", "last_refresh": "2023-11-30T23:15:56.214350Z", "running": 2, "size": 2}}, {"events": ["2023-11-30T22:55:50.759225Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi038:172.21.15.38=smithi038", "smithi167:172.21.15.167=smithi167"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2023-11-30T22:55:50.756456Z", "last_refresh": "2023-11-30T23:15:56.214426Z", "running": 2, "size": 2}}, {"events": ["2023-11-30T22:58:56.311581Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2023-11-30T22:58:56.308071Z", "last_refresh": "2023-11-30T23:15:59.565359Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2023-11-30T22:54:46.136630Z", "last_refresh": "2023-11-30T23:15:56.214508Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2023-11-30T22:56:33.258058Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2023-11-30T22:56:33.253117Z", "last_refresh": "2023-11-30T23:15:56.214583Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2023-11-30T22:54:43.949497Z", "last_refresh": "2023-11-30T23:15:59.564954Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2023-11-30T22:58:52.105721Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2023-11-30T22:58:59.793467Z", "last_refresh": "2023-11-30T23:15:56.214845Z", "ports": [8800], "running": 2, "size": 2}}] 2023-11-30T23:20:47.762 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:20:47 smithi167 conmon[87022]: cluster 2023-11-30T23:20:46.104311+0000 mgr.smithi038.ldalxq (mgr.14182) 1257 : cluster [DBG] pgmap v801: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2023-11-30T23:20:48.095 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2023-11-30T23:20:48.527 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:20:48 smithi038 conmon[81956]: audit 2023-11-30T23:20:47.678689+0000 2023-11-30T23:20:48.528 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:20:48 smithi038 conmon[81956]: mgr.smithi038.ldalxq (mgr.14182) 1258 : audit [DBG] from='client.16216 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-11-30T23:20:48.762 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:20:48 smithi167 conmon[87022]: audit 2023-11-30T23:20:47.678689+0000 mgr.smithi038.ldalxq (mgr.14182) 1258 : audit [DBG] from='client.16216 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-11-30T23:20:49.096 DEBUG:teuthology.orchestra.run.smithi038:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:0dc074ce0b0b3b4f393f56dd32ef36884ebf45a9 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 3faf8b00-8fd3-11ee-95a2-87774f69a715 -- ceph orch ls -f json 2023-11-30T23:20:49.645 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:20:49 smithi038 conmon[81956]: cluster 2023-11-30T23:20:48.105073+0000 mgr.smithi038.ldalxq (mgr. 2023-11-30T23:20:49.645 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:20:49 smithi038 conmon[81956]: 14182) 1259 : cluster [DBG] pgmap v802: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2023-11-30T23:20:49.762 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:20:49 smithi167 conmon[87022]: cluster 2023-11-30T23:20:48.105073+0000 mgr.smithi038.ldalxq (mgr.14182) 1259 : cluster [DBG] pgmap v802: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2023-11-30T23:20:50.842 INFO:teuthology.orchestra.run.smithi038.stdout: 2023-11-30T23:20:50.842 INFO:teuthology.orchestra.run.smithi038.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2023-11-30T22:54:47.122758Z", "last_refresh": "2023-11-30T23:15:59.564688Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2023-11-30T22:54:42.674972Z", "last_refresh": "2023-11-30T23:15:56.214205Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2023-11-30T22:54:45.114633Z", "last_refresh": "2023-11-30T23:15:59.564823Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2023-11-30T23:12:23.150100Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi167.nhhxhd on smithi167: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi167-nhhxhd\n/bin/podman: stderr Error: error inspecting object: no such container ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi167-nhhxhd\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi167.nhhxhd\n/bin/podman: stderr Error: error inspecting object: no such container ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi167.nhhxhd\nDeploy daemon haproxy.nfs.foo.smithi167.nhhxhd ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi167 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2023-11-30T23:10:30Z\" level=warning msg=\"failed, retrying in 1s ... (1/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-11-30T23:11:08Z\" level=warning msg=\"failed, retrying in 1s ... (2/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-11-30T23:11:45Z\" level=warning msg=\"failed, retrying in 1s ... (3/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi167 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-11-30T23:14:53.155795Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi038.njeday on smithi038: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi038-njeday\n/bin/podman: stderr Error: error inspecting object: no such container ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi038-njeday\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi038.njeday\n/bin/podman: stderr Error: error inspecting object: no such container ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi038.njeday\nDeploy daemon haproxy.nfs.foo.smithi038.njeday ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi038 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2023-11-30T23:13:00Z\" level=warning msg=\"failed, retrying in 1s ... (1/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-11-30T23:13:38Z\" level=warning msg=\"failed, retrying in 1s ... (2/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-11-30T23:14:15Z\" level=warning msg=\"failed, retrying in 1s ... (3/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi038 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-11-30T23:14:53.157035Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi038.pwduyd on smithi038: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2023-11-30T23:14:53.158104Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi167.obmcvj on smithi167: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2023-11-30T23:18:29.795059Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi167.ktqzxw on smithi167: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi167-ktqzxw\n/bin/podman: stderr Error: error inspecting object: no such container ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi167-ktqzxw\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi167.ktqzxw\n/bin/podman: stderr Error: error inspecting object: no such container ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi167.ktqzxw\nDeploy daemon haproxy.nfs.foo.smithi167.ktqzxw ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi167 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2023-11-30T23:16:36Z\" level=warning msg=\"failed, retrying in 1s ... (1/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-11-30T23:17:14Z\" level=warning msg=\"failed, retrying in 1s ... (2/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-11-30T23:17:52Z\" level=warning msg=\"failed, retrying in 1s ... (3/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi167 -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": 9049, "virtual_ip": "10.0.31.38/16"}, "status": {"created": "2023-11-30T22:58:56.312786Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.38/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2023-11-30T22:54:41.668043Z", "last_refresh": "2023-11-30T23:15:56.214350Z", "running": 2, "size": 2}}, {"events": ["2023-11-30T22:55:50.759225Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi038:172.21.15.38=smithi038", "smithi167:172.21.15.167=smithi167"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2023-11-30T22:55:50.756456Z", "last_refresh": "2023-11-30T23:15:56.214426Z", "running": 2, "size": 2}}, {"events": ["2023-11-30T22:58:56.311581Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2023-11-30T22:58:56.308071Z", "last_refresh": "2023-11-30T23:15:59.565359Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2023-11-30T22:54:46.136630Z", "last_refresh": "2023-11-30T23:15:56.214508Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2023-11-30T22:56:33.258058Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2023-11-30T22:56:33.253117Z", "last_refresh": "2023-11-30T23:15:56.214583Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2023-11-30T22:54:43.949497Z", "last_refresh": "2023-11-30T23:15:59.564954Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2023-11-30T22:58:52.105721Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2023-11-30T22:58:59.793467Z", "last_refresh": "2023-11-30T23:15:56.214845Z", "ports": [8800], "running": 2, "size": 2}}] 2023-11-30T23:20:51.248 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2023-11-30T23:20:51.524 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:20:51 smithi038 conmon[81956]: cluster 2023-11-30T23:20:50.105722+0000 mgr.smithi038.ldalxq (mgr.14182) 1260 : cluster [DBG] pgmap v803: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2023-11-30T23:20:51.762 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:20:51 smithi167 conmon[87022]: cluster 2023-11-30T23:20:50.105722+0000 mgr.smithi038.ldalxq (mgr.14182) 1260 : cluster [DBG] pgmap v803: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2023-11-30T23:20:52.249 DEBUG:teuthology.orchestra.run.smithi038:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:0dc074ce0b0b3b4f393f56dd32ef36884ebf45a9 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 3faf8b00-8fd3-11ee-95a2-87774f69a715 -- ceph orch ls -f json 2023-11-30T23:20:52.762 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:20:52 smithi167 conmon[87022]: audit 2023-11-30T23:20:50.837299+0000 mgr.smithi038.ldalxq (mgr.14182) 1261 : audit 2023-11-30T23:20:52.762 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:20:52 smithi167 conmon[87022]: [DBG] from='client.16220 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-11-30T23:20:52.773 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:20:52 smithi038 conmon[81956]: audit 2023-11-30T23:20:50.837299+0000 mgr.smithi038.ldalxq ( 2023-11-30T23:20:52.774 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:20:52 smithi038 conmon[81956]: mgr.14182) 1261 : audit [DBG] from='client.16220 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-11-30T23:20:53.524 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:20:53 smithi038 conmon[81956]: cluster 2023-11-30T23:20:52.106371+0000 2023-11-30T23:20:53.524 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:20:53 smithi038 conmon[81956]: mgr.smithi038.ldalxq (mgr.14182) 1262 : cluster [DBG] pgmap v804: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2023-11-30T23:20:53.762 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:20:53 smithi167 conmon[87022]: cluster 2023-11-30T23:20:52.106371+0000 mgr.smithi038.ldalxq (mgr.14182) 1262 : cluster [DBG] pgmap v804: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2023-11-30T23:20:53.938 INFO:teuthology.orchestra.run.smithi038.stdout: 2023-11-30T23:20:53.939 INFO:teuthology.orchestra.run.smithi038.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2023-11-30T22:54:47.122758Z", "last_refresh": "2023-11-30T23:15:59.564688Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2023-11-30T22:54:42.674972Z", "last_refresh": "2023-11-30T23:15:56.214205Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2023-11-30T22:54:45.114633Z", "last_refresh": "2023-11-30T23:15:59.564823Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2023-11-30T23:12:23.150100Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi167.nhhxhd on smithi167: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi167-nhhxhd\n/bin/podman: stderr Error: error inspecting object: no such container ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi167-nhhxhd\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi167.nhhxhd\n/bin/podman: stderr Error: error inspecting object: no such container ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi167.nhhxhd\nDeploy daemon haproxy.nfs.foo.smithi167.nhhxhd ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi167 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2023-11-30T23:10:30Z\" level=warning msg=\"failed, retrying in 1s ... (1/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-11-30T23:11:08Z\" level=warning msg=\"failed, retrying in 1s ... (2/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-11-30T23:11:45Z\" level=warning msg=\"failed, retrying in 1s ... (3/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi167 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-11-30T23:14:53.155795Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi038.njeday on smithi038: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi038-njeday\n/bin/podman: stderr Error: error inspecting object: no such container ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi038-njeday\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi038.njeday\n/bin/podman: stderr Error: error inspecting object: no such container ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi038.njeday\nDeploy daemon haproxy.nfs.foo.smithi038.njeday ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi038 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2023-11-30T23:13:00Z\" level=warning msg=\"failed, retrying in 1s ... (1/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-11-30T23:13:38Z\" level=warning msg=\"failed, retrying in 1s ... (2/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-11-30T23:14:15Z\" level=warning msg=\"failed, retrying in 1s ... (3/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi038 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-11-30T23:14:53.157035Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi038.pwduyd on smithi038: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2023-11-30T23:14:53.158104Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi167.obmcvj on smithi167: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2023-11-30T23:18:29.795059Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi167.ktqzxw on smithi167: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi167-ktqzxw\n/bin/podman: stderr Error: error inspecting object: no such container ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi167-ktqzxw\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi167.ktqzxw\n/bin/podman: stderr Error: error inspecting object: no such container ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi167.ktqzxw\nDeploy daemon haproxy.nfs.foo.smithi167.ktqzxw ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi167 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2023-11-30T23:16:36Z\" level=warning msg=\"failed, retrying in 1s ... (1/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-11-30T23:17:14Z\" level=warning msg=\"failed, retrying in 1s ... (2/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-11-30T23:17:52Z\" level=warning msg=\"failed, retrying in 1s ... (3/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi167 -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": 9049, "virtual_ip": "10.0.31.38/16"}, "status": {"created": "2023-11-30T22:58:56.312786Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.38/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2023-11-30T22:54:41.668043Z", "last_refresh": "2023-11-30T23:15:56.214350Z", "running": 2, "size": 2}}, {"events": ["2023-11-30T22:55:50.759225Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi038:172.21.15.38=smithi038", "smithi167:172.21.15.167=smithi167"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2023-11-30T22:55:50.756456Z", "last_refresh": "2023-11-30T23:15:56.214426Z", "running": 2, "size": 2}}, {"events": ["2023-11-30T22:58:56.311581Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2023-11-30T22:58:56.308071Z", "last_refresh": "2023-11-30T23:15:59.565359Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2023-11-30T22:54:46.136630Z", "last_refresh": "2023-11-30T23:15:56.214508Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2023-11-30T22:56:33.258058Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2023-11-30T22:56:33.253117Z", "last_refresh": "2023-11-30T23:15:56.214583Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2023-11-30T22:54:43.949497Z", "last_refresh": "2023-11-30T23:15:59.564954Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2023-11-30T22:58:52.105721Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2023-11-30T22:58:59.793467Z", "last_refresh": "2023-11-30T23:15:56.214845Z", "ports": [8800], "running": 2, "size": 2}}] 2023-11-30T23:20:54.413 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2023-11-30T23:20:55.415 DEBUG:teuthology.orchestra.run.smithi038:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:0dc074ce0b0b3b4f393f56dd32ef36884ebf45a9 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 3faf8b00-8fd3-11ee-95a2-87774f69a715 -- ceph orch ls -f json 2023-11-30T23:20:55.762 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:20:55 smithi167 conmon[87022]: audit 2023-11-30T23:20:53.934532+0000 mgr.smithi038.ldalxq (mgr.14182) 1263 : audit [DBG] from='client.16224 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-11-30T23:20:55.762 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:20:55 smithi167 conmon[87022]: cluster 2023-11-30T23:20:54.106944+0000 mgr.smithi038.ldalxq (mgr.14182) 1264 : cluster [DBG] pgmap v805: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2023-11-30T23:20:55.774 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:20:55 smithi038 conmon[81956]: audit 2023-11-30T23:20:53.934532+0000 mgr.smithi038.ldalxq (mgr.14182) 1263 : audit [DBG] from='client.16224 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-11-30T23:20:55.774 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:20:55 smithi038 conmon[81956]: cluster 2023-11-30T23:20:54.106944+0000 mgr.smithi038.ldalxq (mgr.14182) 1264 : cluster [DBG] pgmap v805: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2023-11-30T23:20:57.100 INFO:teuthology.orchestra.run.smithi038.stdout: 2023-11-30T23:20:57.101 INFO:teuthology.orchestra.run.smithi038.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2023-11-30T22:54:47.122758Z", "last_refresh": "2023-11-30T23:15:59.564688Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2023-11-30T22:54:42.674972Z", "last_refresh": "2023-11-30T23:15:56.214205Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2023-11-30T22:54:45.114633Z", "last_refresh": "2023-11-30T23:15:59.564823Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2023-11-30T23:12:23.150100Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi167.nhhxhd on smithi167: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi167-nhhxhd\n/bin/podman: stderr Error: error inspecting object: no such container ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi167-nhhxhd\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi167.nhhxhd\n/bin/podman: stderr Error: error inspecting object: no such container ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi167.nhhxhd\nDeploy daemon haproxy.nfs.foo.smithi167.nhhxhd ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi167 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2023-11-30T23:10:30Z\" level=warning msg=\"failed, retrying in 1s ... (1/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-11-30T23:11:08Z\" level=warning msg=\"failed, retrying in 1s ... (2/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-11-30T23:11:45Z\" level=warning msg=\"failed, retrying in 1s ... (3/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi167 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-11-30T23:14:53.155795Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi038.njeday on smithi038: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi038-njeday\n/bin/podman: stderr Error: error inspecting object: no such container ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi038-njeday\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi038.njeday\n/bin/podman: stderr Error: error inspecting object: no such container ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi038.njeday\nDeploy daemon haproxy.nfs.foo.smithi038.njeday ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi038 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2023-11-30T23:13:00Z\" level=warning msg=\"failed, retrying in 1s ... (1/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-11-30T23:13:38Z\" level=warning msg=\"failed, retrying in 1s ... (2/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-11-30T23:14:15Z\" level=warning msg=\"failed, retrying in 1s ... (3/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi038 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-11-30T23:14:53.157035Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi038.pwduyd on smithi038: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2023-11-30T23:14:53.158104Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi167.obmcvj on smithi167: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2023-11-30T23:18:29.795059Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi167.ktqzxw on smithi167: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi167-ktqzxw\n/bin/podman: stderr Error: error inspecting object: no such container ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi167-ktqzxw\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi167.ktqzxw\n/bin/podman: stderr Error: error inspecting object: no such container ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi167.ktqzxw\nDeploy daemon haproxy.nfs.foo.smithi167.ktqzxw ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi167 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2023-11-30T23:16:36Z\" level=warning msg=\"failed, retrying in 1s ... (1/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-11-30T23:17:14Z\" level=warning msg=\"failed, retrying in 1s ... (2/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-11-30T23:17:52Z\" level=warning msg=\"failed, retrying in 1s ... (3/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi167 -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": 9049, "virtual_ip": "10.0.31.38/16"}, "status": {"created": "2023-11-30T22:58:56.312786Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.38/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2023-11-30T22:54:41.668043Z", "last_refresh": "2023-11-30T23:15:56.214350Z", "running": 2, "size": 2}}, {"events": ["2023-11-30T22:55:50.759225Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi038:172.21.15.38=smithi038", "smithi167:172.21.15.167=smithi167"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2023-11-30T22:55:50.756456Z", "last_refresh": "2023-11-30T23:15:56.214426Z", "running": 2, "size": 2}}, {"events": ["2023-11-30T22:58:56.311581Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2023-11-30T22:58:56.308071Z", "last_refresh": "2023-11-30T23:15:59.565359Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2023-11-30T22:54:46.136630Z", "last_refresh": "2023-11-30T23:15:56.214508Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2023-11-30T22:56:33.258058Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2023-11-30T22:56:33.253117Z", "last_refresh": "2023-11-30T23:15:56.214583Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2023-11-30T22:54:43.949497Z", "last_refresh": "2023-11-30T23:15:59.564954Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2023-11-30T22:58:52.105721Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2023-11-30T22:58:59.793467Z", "last_refresh": "2023-11-30T23:15:56.214845Z", "ports": [8800], "running": 2, "size": 2}}] 2023-11-30T23:20:57.469 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:20:57 smithi038 conmon[81956]: cluster 2023-11-30T23:20:56.107656+0000 mgr.smithi038.ldalxq (mgr.14182) 1265 : cluster [DBG] pgmap v806: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2023-11-30T23:20:57.471 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2023-11-30T23:20:57.762 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:20:57 smithi167 conmon[87022]: cluster 2023-11-30T23:20:56.107656+0000 mgr.smithi038.ldalxq (mgr.14182) 1265 : cluster [DBG] pgmap v806: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2023-11-30T23:20:58.471 DEBUG:teuthology.orchestra.run.smithi038:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:0dc074ce0b0b3b4f393f56dd32ef36884ebf45a9 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 3faf8b00-8fd3-11ee-95a2-87774f69a715 -- ceph orch ls -f json 2023-11-30T23:20:58.762 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:20:58 smithi167 conmon[87022]: audit 2023-11-30T23:20:57.096438+0000 mgr.smithi038.ldalxq (mgr.14182) 1266 : audit [DBG] from='client.16228 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-11-30T23:20:58.774 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:20:58 smithi038 conmon[81956]: audit 2023-11-30T23:20:57.096438+0000 mgr.smithi038.ldalxq (mgr. 2023-11-30T23:20:58.774 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:20:58 smithi038 conmon[81956]: 14182) 1266 : audit [DBG] from='client.16228 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-11-30T23:20:59.559 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:20:59 smithi038 conmon[81956]: cluster 2023-11-30T23:20:58.108400+0000 mgr.smithi038.ldalxq (mgr.14182) 1267 : cluster [DBG] pgmap v807: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2023-11-30T23:20:59.560 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:20:59 smithi038 conmon[81956]: audit 2023-11-30T23:20:59.289110+0000 mon.smithi038 (mon.0) 732 : audit [INF] from='mgr.14182 172.21.15.38:0/2999689707' entity='mgr.smithi038.ldalxq' cmd=[{"prefix": "auth rm", "entity": "client.ingress.nfs.foo.smithi038.lkfmsf"}]: dispatch 2023-11-30T23:20:59.762 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:20:59 smithi167 conmon[87022]: cluster 2023-11-30T23:20:58.108400+0000 mgr.smithi038.ldalxq (mgr.14182) 1267 : cluster [DBG] pgmap v807: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2023-11-30T23:20:59.762 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:20:59 smithi167 conmon[87022]: audit 2023-11-30T23:20:59.289110+0000 2023-11-30T23:20:59.762 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:20:59 smithi167 conmon[87022]: mon.smithi038 (mon.0) 732 : audit [INF] from='mgr.14182 172.21.15.38:0/2999689707' entity='mgr.smithi038.ldalxq' cmd=[{"prefix": "auth rm", "entity": "client.ingress.nfs.foo.smithi038.lkfmsf"}]: dispatch 2023-11-30T23:21:00.174 INFO:teuthology.orchestra.run.smithi038.stdout: 2023-11-30T23:21:00.174 INFO:teuthology.orchestra.run.smithi038.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2023-11-30T22:54:47.122758Z", "last_refresh": "2023-11-30T23:15:59.564688Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2023-11-30T22:54:42.674972Z", "last_refresh": "2023-11-30T23:15:56.214205Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2023-11-30T22:54:45.114633Z", "last_refresh": "2023-11-30T23:15:59.564823Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2023-11-30T23:14:53.158104Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi167.obmcvj on smithi167: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2023-11-30T23:18:29.795059Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi167.ktqzxw on smithi167: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi167-ktqzxw\n/bin/podman: stderr Error: error inspecting object: no such container ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi167-ktqzxw\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi167.ktqzxw\n/bin/podman: stderr Error: error inspecting object: no such container ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi167.ktqzxw\nDeploy daemon haproxy.nfs.foo.smithi167.ktqzxw ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi167 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2023-11-30T23:16:36Z\" level=warning msg=\"failed, retrying in 1s ... (1/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-11-30T23:17:14Z\" level=warning msg=\"failed, retrying in 1s ... (2/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-11-30T23:17:52Z\" level=warning msg=\"failed, retrying in 1s ... (3/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi167 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-11-30T23:20:59.289612Z service:ingress.nfs.foo [ERROR] \"Failed while placing haproxy.nfs.foo.smithi038.lkfmsf on smithi038: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi038-lkfmsf\n/bin/podman: stderr Error: error inspecting object: no such container ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi038-lkfmsf\nNon-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi038.lkfmsf\n/bin/podman: stderr Error: error inspecting object: no such container ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi038.lkfmsf\nDeploy daemon haproxy.nfs.foo.smithi038.lkfmsf ...\nNon-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi038 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\nstat: stderr Trying to pull docker.io/library/haproxy:2.3...\nstat: stderr time=\"2023-11-30T23:19:06Z\" level=warning msg=\"failed, retrying in 1s ... (1/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-11-30T23:19:44Z\" level=warning msg=\"failed, retrying in 1s ... (2/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr time=\"2023-11-30T23:20:21Z\" level=warning msg=\"failed, retrying in 1s ... (3/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \\\"https://docker-mirror.front.sepia.ceph.com:5000/v2/\\\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\"\nstat: stderr Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit\nERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi038 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib\"", "2023-11-30T23:20:59.290812Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi038.jqpdxl on smithi038: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\"", "2023-11-30T23:20:59.291860Z service:ingress.nfs.foo [ERROR] \"Failed while placing keepalived.nfs.foo.smithi167.cuwero on smithi167: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.38/16"}, "status": {"created": "2023-11-30T22:58:56.312786Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.38/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2023-11-30T22:54:41.668043Z", "last_refresh": "2023-11-30T23:15:56.214350Z", "running": 2, "size": 2}}, {"events": ["2023-11-30T22:55:50.759225Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi038:172.21.15.38=smithi038", "smithi167:172.21.15.167=smithi167"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2023-11-30T22:55:50.756456Z", "last_refresh": "2023-11-30T23:15:56.214426Z", "running": 2, "size": 2}}, {"events": ["2023-11-30T22:58:56.311581Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2023-11-30T22:58:56.308071Z", "last_refresh": "2023-11-30T23:15:59.565359Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2023-11-30T22:54:46.136630Z", "last_refresh": "2023-11-30T23:15:56.214508Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2023-11-30T22:56:33.258058Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2023-11-30T22:56:33.253117Z", "last_refresh": "2023-11-30T23:15:56.214583Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2023-11-30T22:54:43.949497Z", "last_refresh": "2023-11-30T23:15:59.564954Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2023-11-30T22:58:52.105721Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2023-11-30T22:58:59.793467Z", "last_refresh": "2023-11-30T23:15:56.214845Z", "ports": [8800], "running": 2, "size": 2}}] 2023-11-30T23:21:00.524 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:21:00 smithi038 conmon[81956]: cephadm 2023-11-30T23:20:59 2023-11-30T23:21:00.525 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:21:00 smithi038 conmon[81956]: .288602+0000 mgr.smithi038.ldalxq (mgr.14182) 1268 : cephadm [ERR] cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi038-lkfmsf 2023-11-30T23:21:00.525 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:21:00 smithi038 conmon[81956]: /bin/podman: stderr Error: error inspecting object: no such container ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi038-lkfmsf 2023-11-30T23:21:00.525 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:21:00 smithi038 conmon[81956]: Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi038.lkfmsf 2023-11-30T23:21:00.525 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:21:00 smithi038 conmon[81956]: /bin/podman: stderr Error: error inspecting object: no such container ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi038.lkfmsf 2023-11-30T23:21:00.525 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:21:00 smithi038 conmon[81956]: Deploy daemon haproxy.nfs.foo.smithi038.lkfmsf ... 2023-11-30T23:21:00.525 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:21:00 smithi038 conmon[81956]: Non-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi038 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2023-11-30T23:21:00.525 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:21:00 smithi038 conmon[81956]: stat: stderr Trying to pull docker.io/library/haproxy:2.3... 2023-11-30T23:21:00.525 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:21:00 smithi038 conmon[81956]: stat: stderr time="2023-11-30T23:19:06Z" level=warning msg="failed, retrying in 1s ... (1/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit" 2023-11-30T23:21:00.525 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:21:00 smithi038 conmon[81956]: stat: stderr time="2023-11-30T23:19:44Z" level=warning msg="failed, retrying in 1s ... (2/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit" 2023-11-30T23:21:00.526 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:21:00 smithi038 conmon[81956]: stat: stderr time="2023-11-30T23:20:21Z" level=warning msg="failed, retrying in 1s ... (3/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit" 2023-11-30T23:21:00.526 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:21:00 smithi038 conmon[81956]: stat: stderr Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get "https://docker-mirror.front.sepia.ceph.com:5000/v2/": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit 2023-11-30T23:21:00.526 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:21:00 smithi038 conmon[81956]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi038 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2023-11-30T23:21:00.526 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:21:00 smithi038 conmon[81956]: Traceback (most recent call last): 2023-11-30T23:21:00.526 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:21:00 smithi038 conmon[81956]: File "/usr/share/ceph/mgr/cephadm/serve.py", line 1538, in _remote_connection 2023-11-30T23:21:00.526 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:21:00 smithi038 conmon[81956]: yield (conn, connr) 2023-11-30T23:21:00.526 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:21:00 smithi038 conmon[81956]: File "/usr/share/ceph/mgr/cephadm/serve.py", line 1426, in _run_cephadm 2023-11-30T23:21:00.526 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:21:00 smithi038 conmon[81956]: code, '\n'.join(err))) 2023-11-30T23:21:00.526 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:21:00 smithi038 conmon[81956]: orchestrator._interface.OrchestratorError: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi038-lkfmsf 2023-11-30T23:21:00.526 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:21:00 smithi038 conmon[81956]: /bin/podman: stderr Error: error inspecting object: no such container ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi038-lkfmsf 2023-11-30T23:21:00.526 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:21:00 smithi038 conmon[81956]: Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi038.lkfmsf 2023-11-30T23:21:00.527 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:21:00 smithi038 conmon[81956]: /bin/podman: stderr Error: error inspecting object: no such container ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi038.lkfmsf 2023-11-30T23:21:00.527 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:21:00 smithi038 conmon[81956]: Deploy daemon haproxy.nfs.foo.smithi038.lkfmsf ... 2023-11-30T23:21:00.527 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:21:00 smithi038 conmon[81956]: Non-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi038 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2023-11-30T23:21:00.527 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:21:00 smithi038 conmon[81956]: stat: stderr Trying to pull docker.io/library/haproxy:2.3... 2023-11-30T23:21:00.527 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:21:00 smithi038 conmon[81956]: stat: stderr time="2023-11-30T23:19:06Z" level=warning msg="failed, retrying in 1s ... (1/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit" 2023-11-30T23:21:00.527 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:21:00 smithi038 conmon[81956]: stat: stderr time="2023-11-30T23:19:44Z" level=warning msg="failed, retrying in 1s ... (2/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit" 2023-11-30T23:21:00.527 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:21:00 smithi038 conmon[81956]: stat: stderr time="2023-11-30T23:20:21Z" level=warning msg="failed, retrying in 1s ... (3/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit" 2023-11-30T23:21:00.527 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:21:00 smithi038 conmon[81956]: stat: stderr Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get "https://docker-mirror.front.sepia.ceph.com:5000/v2/": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit 2023-11-30T23:21:00.527 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:21:00 smithi038 conmon[81956]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi038 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c 2023-11-30T23:21:00.528 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:21:00 smithi038 conmon[81956]: %u %g /var/lib 2023-11-30T23:21:00.528 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:21:00 smithi038 conmon[81956]: cephadm 2023-11-30T23:20:59.288771+0000 mgr.smithi038.ldalxq (mgr.14182) 1269 : cephadm [INF] Removing key for client.ingress.nfs.foo.smithi038.lkfmsf 2023-11-30T23:21:00.528 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:21:00 smithi038 conmon[81956]: cephadm 2023-11-30T23:20:59.289700+0000 mgr.smithi038.ldalxq (mgr.14182) 1270 : cephadm [ERR] Failed while placing haproxy.nfs.foo.smithi038.lkfmsf on smithi038: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi038-lkfmsf 2023-11-30T23:21:00.528 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:21:00 smithi038 conmon[81956]: /bin/podman: stderr Error: error inspecting object: no such container ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi038-lkfmsf 2023-11-30T23:21:00.528 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:21:00 smithi038 conmon[81956]: Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi038.lkfmsf 2023-11-30T23:21:00.528 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:21:00 smithi038 conmon[81956]: /bin/podman: stderr Error: error inspecting object: no such container ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi038.lkfmsf 2023-11-30T23:21:00.528 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:21:00 smithi038 conmon[81956]: Deploy daemon haproxy.nfs.foo.smithi038.lkfmsf ... 2023-11-30T23:21:00.528 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:21:00 smithi038 conmon[81956]: Non-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi038 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2023-11-30T23:21:00.528 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:21:00 smithi038 conmon[81956]: stat: stderr Trying to pull docker.io/library/haproxy:2.3... 2023-11-30T23:21:00.528 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:21:00 smithi038 conmon[81956]: stat: stderr time="2023-11-30T23:19:06Z" level=warning msg="failed, retrying in 1s ... (1/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit" 2023-11-30T23:21:00.528 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:21:00 smithi038 conmon[81956]: stat: stderr time="2023-11-30T23:19:44Z" level=warning msg="failed, retrying in 1s ... (2/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit" 2023-11-30T23:21:00.529 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:21:00 smithi038 conmon[81956]: stat: stderr time="2023-11-30T23:20:21Z" level=warning msg="failed, retrying in 1s ... (3/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit" 2023-11-30T23:21:00.529 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:21:00 smithi038 conmon[81956]: stat: stderr Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get "https://docker-mirror.front.sepia.ceph.com:5000/v2/": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit 2023-11-30T23:21:00.529 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:21:00 smithi038 conmon[81956]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi038 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2023-11-30T23:21:00.529 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:21:00 smithi038 conmon[81956]: cephadm 2023-11-30T23:20:59.290886+0000 mgr.smithi038.ldalxq (mgr.14182) 1271 : cephadm [ERR] Failed while placing keepalived.nfs.foo.smithi038.jqpdxl on smithi038: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo 2023-11-30T23:21:00.529 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:21:00 smithi038 conmon[81956]: cephadm 2023-11-30T23:20:59.291935+0000 mgr.smithi038.ldalxq (mgr.14182) 1272 : cephadm [ERR] Failed while placing keepalived.nfs.foo.smithi167.cuwero on smithi167: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo 2023-11-30T23:21:00.529 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:21:00 smithi038 conmon[81956]: cluster 2023-11-30T23:20:59.292667+0000 mgr.smithi038.ldalxq (mgr.14182) 1273 : cluster [DBG] pgmap v808: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 91 B/s rd, 0 op/s 2023-11-30T23:21:00.529 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:21:00 smithi038 conmon[81956]: cluster 2023-11-30T23:20:59.309845+0000 mon.smithi038 (mon.0) 733 : cluster [WRN] Health check failed: Failed to place 4 daemon(s) (CEPHADM_DAEMON_PLACE_FAIL) 2023-11-30T23:21:00.621 INFO:tasks.cephadm:ingress.nfs.foo has 0/4 2023-11-30T23:21:00.621 ERROR:teuthology.run_tasks:Saw exception from tasks. Traceback (most recent call last): File "/home/teuthworker/src/git.ceph.com_teuthology_595fad1080bd379e3c0231a8e02595924c59a9da/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_595fad1080bd379e3c0231a8e02595924c59a9da/teuthology/run_tasks.py", line 83, in run_one_task return task(**kwargs) File "/home/teuthworker/src/github.com_ceph_ceph-c_0dc074ce0b0b3b4f393f56dd32ef36884ebf45a9/qa/tasks/cephadm.py", line 1119, in wait_for_service while proceed(): File "/home/teuthworker/src/git.ceph.com_teuthology_595fad1080bd379e3c0231a8e02595924c59a9da/teuthology/contextutil.py", line 134, in __call__ raise MaxWhileTries(error_msg) teuthology.exceptions.MaxWhileTries: reached maximum tries (301) after waiting for 300 seconds 2023-11-30T23:21:00.695 ERROR:teuthology.util.sentry: Sentry event: https://sentry.ceph.com/organizations/ceph/?query=a12c25aaeb3b40fc966ffa8bdb97c27b Traceback (most recent call last): File "/home/teuthworker/src/git.ceph.com_teuthology_595fad1080bd379e3c0231a8e02595924c59a9da/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_595fad1080bd379e3c0231a8e02595924c59a9da/teuthology/run_tasks.py", line 83, in run_one_task return task(**kwargs) File "/home/teuthworker/src/github.com_ceph_ceph-c_0dc074ce0b0b3b4f393f56dd32ef36884ebf45a9/qa/tasks/cephadm.py", line 1119, in wait_for_service while proceed(): File "/home/teuthworker/src/git.ceph.com_teuthology_595fad1080bd379e3c0231a8e02595924c59a9da/teuthology/contextutil.py", line 134, in __call__ raise MaxWhileTries(error_msg) teuthology.exceptions.MaxWhileTries: reached maximum tries (301) after waiting for 300 seconds 2023-11-30T23:21:00.696 DEBUG:teuthology.run_tasks:Unwinding manager vip 2023-11-30T23:21:00.707 INFO:tasks.vip:Removing 10.0.15.38 (and any VIPs) on smithi038.front.sepia.ceph.com iface ens1f0... 2023-11-30T23:21:00.707 DEBUG:teuthology.orchestra.run.smithi038:> sudo ip addr del 10.0.15.38/16 dev ens1f0 2023-11-30T23:21:00.740 DEBUG:teuthology.orchestra.run.smithi038:> sudo ip addr del 10.0.31.38/16 dev ens1f0 2023-11-30T23:21:00.762 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:21:00 smithi167 conmon[87022]: cephadm 2023-11-30T23:20:59.288602+0000 mgr.smithi038.ldalxq (mgr.14182) 1268 : cephadm [ERR] cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi038-lkfmsf 2023-11-30T23:21:00.763 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:21:00 smithi167 conmon[87022]: /bin/podman: stderr Error: error inspecting object: no such container ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi038-lkfmsf 2023-11-30T23:21:00.763 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:21:00 smithi167 conmon[87022]: Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi038.lkfmsf 2023-11-30T23:21:00.763 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:21:00 smithi167 conmon[87022]: /bin/podman: stderr Error: error inspecting object: no such container ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi038.lkfmsf 2023-11-30T23:21:00.763 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:21:00 smithi167 conmon[87022]: Deploy daemon haproxy.nfs.foo.smithi038.lkfmsf ... 2023-11-30T23:21:00.763 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:21:00 smithi167 conmon[87022]: Non-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi038 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2023-11-30T23:21:00.763 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:21:00 smithi167 conmon[87022]: stat: stderr Trying to pull docker.io/library/haproxy:2.3... 2023-11-30T23:21:00.763 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:21:00 smithi167 conmon[87022]: stat: stderr time="2023-11-30T23:19:06Z" level=warning msg="failed, retrying in 1s ... (1/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit" 2023-11-30T23:21:00.764 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:21:00 smithi167 conmon[87022]: stat: stderr time="2023-11-30T23:19:44Z" level=warning msg="failed, retrying in 1s ... (2/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit" 2023-11-30T23:21:00.764 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:21:00 smithi167 conmon[87022]: stat: stderr time="2023-11-30T23:20:21Z" level=warning msg="failed, retrying in 1s ... (3/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit" 2023-11-30T23:21:00.764 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:21:00 smithi167 conmon[87022]: stat: stderr Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get "https://docker-mirror.front.sepia.ceph.com:5000/v2/": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit 2023-11-30T23:21:00.764 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:21:00 smithi167 conmon[87022]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi038 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2023-11-30T23:21:00.764 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:21:00 smithi167 conmon[87022]: Traceback (most recent call last): 2023-11-30T23:21:00.764 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:21:00 smithi167 conmon[87022]: File "/usr/share/ceph/mgr/cephadm/serve.py", line 1538, in _remote_connection 2023-11-30T23:21:00.764 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:21:00 smithi167 conmon[87022]: yield (conn, connr) 2023-11-30T23:21:00.764 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:21:00 smithi167 conmon[87022]: File "/usr/share/ceph/mgr/cephadm/serve.py", line 1426, in _run_cephadm 2023-11-30T23:21:00.765 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:21:00 smithi167 conmon[87022]: code, '\n'.join(err))) 2023-11-30T23:21:00.765 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:21:00 smithi167 conmon[87022]: orchestrator._interface.OrchestratorError: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi038-lkfmsf 2023-11-30T23:21:00.765 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:21:00 smithi167 conmon[87022]: /bin/podman: stderr Error: error inspecting object: no such container ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi038-lkfmsf 2023-11-30T23:21:00.765 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:21:00 smithi167 conmon[87022]: Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi038.lkfmsf 2023-11-30T23:21:00.765 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:21:00 smithi167 conmon[87022]: /bin/podman: stderr Error: error inspecting object: no such container ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi038.lkfmsf 2023-11-30T23:21:00.765 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:21:00 smithi167 conmon[87022]: Deploy daemon haproxy.nfs.foo.smithi038.lkfmsf ... 2023-11-30T23:21:00.765 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:21:00 smithi167 conmon[87022]: Non-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi038 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2023-11-30T23:21:00.765 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:21:00 smithi167 conmon[87022]: stat: stderr Trying to pull docker.io/library/haproxy:2.3... 2023-11-30T23:21:00.766 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:21:00 smithi167 conmon[87022]: stat: stderr time="2023-11-30T23:19:06Z" level=warning msg="failed, retrying in 1s ... (1/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit" 2023-11-30T23:21:00.766 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:21:00 smithi167 conmon[87022]: stat: stderr time="2023-11-30T23:19:44Z" level=warning msg="failed, retrying in 1s ... (2/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit" 2023-11-30T23:21:00.766 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:21:00 smithi167 conmon[87022]: stat: stderr time="2023-11-30T23:20:21Z" level=warning msg="failed, retrying in 1s ... (3/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit" 2023-11-30T23:21:00.766 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:21:00 smithi167 conmon[87022]: stat: stderr Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get "https://docker-mirror.front.sepia.ceph.com:5000/v2/": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit 2023-11-30T23:21:00.766 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:21:00 smithi167 conmon[87022]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi038 -e CEPH_USE_RANDOM_NONCE=1 docke 2023-11-30T23:21:00.766 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:21:00 smithi167 conmon[87022]: r.io/library/haproxy:2.3 -c %u %g /var/lib 2023-11-30T23:21:00.767 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:21:00 smithi167 conmon[87022]: cephadm 2023-11-30T23:20:59.288771+0000 mgr.smithi038.ldalxq (mgr.14182) 1269 : cephadm [INF] Removing key for client.ingress.nfs.foo.smithi038.lkfmsf 2023-11-30T23:21:00.767 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:21:00 smithi167 conmon[87022]: cephadm 2023-11-30T23:20:59.289700+0000 mgr.smithi038.ldalxq (mgr.14182) 1270 : cephadm [ERR] Failed while placing haproxy.nfs.foo.smithi038.lkfmsf on smithi038: cephadm exited with an error code: 1, stderr:Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi038-lkfmsf 2023-11-30T23:21:00.767 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:21:00 smithi167 conmon[87022]: /bin/podman: stderr Error: error inspecting object: no such container ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy-nfs-foo-smithi038-lkfmsf 2023-11-30T23:21:00.767 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:21:00 smithi167 conmon[87022]: Non-zero exit code 125 from /bin/podman container inspect --format {{.State.Status}} ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi038.lkfmsf 2023-11-30T23:21:00.767 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:21:00 smithi167 conmon[87022]: /bin/podman: stderr Error: error inspecting object: no such container ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-haproxy.nfs.foo.smithi038.lkfmsf 2023-11-30T23:21:00.767 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:21:00 smithi167 conmon[87022]: Deploy daemon haproxy.nfs.foo.smithi038.lkfmsf ... 2023-11-30T23:21:00.767 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:21:00 smithi167 conmon[87022]: Non-zero exit code 125 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi038 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2023-11-30T23:21:00.767 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:21:00 smithi167 conmon[87022]: stat: stderr Trying to pull docker.io/library/haproxy:2.3... 2023-11-30T23:21:00.768 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:21:00 smithi167 conmon[87022]: stat: stderr time="2023-11-30T23:19:06Z" level=warning msg="failed, retrying in 1s ... (1/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit" 2023-11-30T23:21:00.768 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:21:00 smithi167 conmon[87022]: stat: stderr time="2023-11-30T23:19:44Z" level=warning msg="failed, retrying in 1s ... (2/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit" 2023-11-30T23:21:00.768 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:21:00 smithi167 conmon[87022]: stat: stderr time="2023-11-30T23:20:21Z" level=warning msg="failed, retrying in 1s ... (3/3). Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get \"https://docker-mirror.front.sepia.ceph.com:5000/v2/\": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit" 2023-11-30T23:21:00.768 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:21:00 smithi167 conmon[87022]: stat: stderr Error: Error initializing source docker://haproxy:2.3: (Mirrors also failed: [docker-mirror.front.sepia.ceph.com:5000/library/haproxy:2.3: error pinging docker registry docker-mirror.front.sepia.ceph.com:5000: Get "https://docker-mirror.front.sepia.ceph.com:5000/v2/": dial tcp 172.21.0.79:5000: connect: no route to host]): docker.io/library/haproxy:2.3: Error reading manifest 2.3 in docker.io/library/haproxy: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit 2023-11-30T23:21:00.768 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:21:00 smithi167 conmon[87022]: ERROR: Failed to extract uid/gid for path /var/lib: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint stat --init -e CONTAINER_IMAGE=docker.io/library/haproxy:2.3 -e NODE_NAME=smithi038 -e CEPH_USE_RANDOM_NONCE=1 docker.io/library/haproxy:2.3 -c %u %g /var/lib 2023-11-30T23:21:00.768 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:21:00 smithi167 conmon[87022]: cephadm 2023-11-30T23:20:59.290886+0000 mgr.smithi038.ldalxq (mgr.14182) 1271 : cephadm [ERR] Failed while placing keepalived.nfs.foo.smithi038.jqpdxl on smithi038: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo 2023-11-30T23:21:00.768 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:21:00 smithi167 conmon[87022]: cephadm 2023-11-30T23:20:59.291935+0000 mgr.smithi038.ldalxq (mgr.14182) 1272 : cephadm 2023-11-30T23:21:00.768 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:21:00 smithi167 conmon[87022]: [ERR] Failed while placing keepalived.nfs.foo.smithi167.cuwero on smithi167: Failed to generate keepalived.conf: No daemons deployed for ingress.nfs.foo 2023-11-30T23:21:00.769 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:21:00 smithi167 conmon[87022]: cluster 2023-11-30T23:20:59.292667+0000 mgr.smithi038.ldalxq (mgr.14182) 1273 : cluster [DBG] pgmap v808: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 91 B/s rd, 0 op/s 2023-11-30T23:21:00.769 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:21:00 smithi167 conmon[87022]: cluster 2023-11-30T23:20:59.309845+0000 mon.smithi038 ( 2023-11-30T23:21:00.769 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:21:00 smithi167 conmon[87022]: mon.0) 733 : cluster [WRN] Health check failed: Failed to place 4 daemon(s) (CEPHADM_DAEMON_PLACE_FAIL) 2023-11-30T23:21:00.769 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:21:00 smithi167 conmon[87022]: 2023-11-30T23:21:00.805 INFO:teuthology.orchestra.run.smithi038.stderr:RTNETLINK answers: Cannot assign requested address 2023-11-30T23:21:00.806 DEBUG:teuthology.orchestra.run:got remote process result: 2 2023-11-30T23:21:00.806 INFO:tasks.vip:Removing 10.0.15.167 (and any VIPs) on smithi167.front.sepia.ceph.com iface enp3s0f1... 2023-11-30T23:21:00.806 DEBUG:teuthology.orchestra.run.smithi167:> sudo ip addr del 10.0.15.167/16 dev enp3s0f1 2023-11-30T23:21:00.855 DEBUG:teuthology.orchestra.run.smithi167:> sudo ip addr del 10.0.31.38/16 dev enp3s0f1 2023-11-30T23:21:00.880 INFO:teuthology.orchestra.run.smithi167.stderr:RTNETLINK answers: Cannot assign requested address 2023-11-30T23:21:00.881 DEBUG:teuthology.orchestra.run:got remote process result: 2 2023-11-30T23:21:00.882 DEBUG:teuthology.run_tasks:Unwinding manager cephadm 2023-11-30T23:21:00.893 INFO:tasks.cephadm:Teardown begin 2023-11-30T23:21:00.894 DEBUG:teuthology.orchestra.run.smithi038:> sudo rm -f /etc/ceph/ceph.conf /etc/ceph/ceph.client.admin.keyring 2023-11-30T23:21:00.922 DEBUG:teuthology.orchestra.run.smithi167:> sudo rm -f /etc/ceph/ceph.conf /etc/ceph/ceph.client.admin.keyring 2023-11-30T23:21:00.948 INFO:tasks.cephadm:Cleaning up testdir ceph.* files... 2023-11-30T23:21:00.948 DEBUG:teuthology.orchestra.run.smithi038:> rm -f /home/ubuntu/cephtest/seed.ceph.conf /home/ubuntu/cephtest/ceph.pub 2023-11-30T23:21:00.977 DEBUG:teuthology.orchestra.run.smithi167:> rm -f /home/ubuntu/cephtest/seed.ceph.conf /home/ubuntu/cephtest/ceph.pub 2023-11-30T23:21:01.003 INFO:tasks.cephadm:Stopping all daemons... 2023-11-30T23:21:01.003 INFO:tasks.cephadm.mon.smithi038:Stopping mon.smithi038... 2023-11-30T23:21:01.003 DEBUG:teuthology.orchestra.run.smithi038:> sudo systemctl stop ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715@mon.smithi038 2023-11-30T23:21:01.275 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:21:01 smithi038 systemd[1]: Stopping Ceph mon.smithi038 for 3faf8b00-8fd3-11ee-95a2-87774f69a715... 2023-11-30T23:21:01.275 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:21:01 smithi038 bash[272868]: Error: no container with name or ID "ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-mon.smithi038" found: no such container 2023-11-30T23:21:01.695 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:21:01 smithi038 conmon[81956]: audit 2023-11-30T23:21:00. 2023-11-30T23:21:01.695 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:21:01 smithi038 conmon[81956]: 170014+0000 mgr.smithi038.ldalxq (mgr.14182) 1274 : audit [DBG] from='client.16232 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-11-30T23:21:01.695 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:21:01 smithi038 conmon[81956]: debug 2023-11-30T23:21:01.393+0000 7fd4f40e7700 -1 received signal: Terminated from /dev/init -- /usr/bin/ceph-mon -n mon.smithi038 -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-11-30T23:21:01.696 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:21:01 smithi038 conmon[81956]: debug 2023-11-30T23:21:01.393+0000 7fd4f40e7700 -1 mon.smithi038@0(leader) e2 *** Got Signal Terminated *** 2023-11-30T23:21:01.763 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:21:01 smithi167 conmon[87022]: audit 2023-11-30T23:21:00.170014+0000 mgr.smithi038.ldalxq (mgr.14182) 1274 : audit [DBG] from='client.16232 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2023-11-30T23:21:02.024 INFO:journalctl@ceph.mon.smithi038.smithi038.stdout:Nov 30 23:21:01 smithi038 bash[272982]: ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-mon-smithi038 2023-11-30T23:21:02.112 DEBUG:teuthology.orchestra.run.smithi038:> sudo pkill -f 'journalctl -f -n 0 -u ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715@mon.smithi038.service' 2023-11-30T23:21:02.169 DEBUG:teuthology.orchestra.run:got remote process result: None 2023-11-30T23:21:02.169 INFO:tasks.cephadm.mon.smithi038:Stopped mon.smithi038 2023-11-30T23:21:02.169 INFO:tasks.cephadm.mon.smithi167:Stopping mon.smithi167... 2023-11-30T23:21:02.169 DEBUG:teuthology.orchestra.run.smithi167:> sudo systemctl stop ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715@mon.smithi167 2023-11-30T23:21:02.512 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:21:02 smithi167 systemd[1]: Stopping Ceph mon.smithi167 for 3faf8b00-8fd3-11ee-95a2-87774f69a715... 2023-11-30T23:21:02.512 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:21:02 smithi167 bash[114668]: Error: no container with name or ID "ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-mon.smithi167" found: no such container 2023-11-30T23:21:03.012 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:21:02 smithi167 conmon[87022]: debug 2023-11-30T23:21:02.631+0000 7fc5c8c85700 -1 received signal: Terminated from /dev/init -- /usr/bin/ceph-mon -n mon.smithi167 -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-11-30T23:21:03.012 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:21:02 smithi167 conmon[87022]: debug 2023-11-30T23:21:02.631+0000 7fc5c8c85700 -1 mon.smithi167@1(peon) e2 *** Got Signal Terminated *** 2023-11-30T23:21:03.427 INFO:journalctl@ceph.mon.smithi167.smithi167.stdout:Nov 30 23:21:03 smithi167 bash[114781]: ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715-mon-smithi167 2023-11-30T23:21:03.434 DEBUG:teuthology.orchestra.run.smithi167:> sudo pkill -f 'journalctl -f -n 0 -u ceph-3faf8b00-8fd3-11ee-95a2-87774f69a715@mon.smithi167.service' 2023-11-30T23:21:03.478 DEBUG:teuthology.orchestra.run:got remote process result: None 2023-11-30T23:21:03.478 INFO:tasks.cephadm.mon.smithi167:Stopped mon.smithi167 2023-11-30T23:21:03.478 DEBUG:teuthology.orchestra.run.smithi038:> sudo /home/ubuntu/cephtest/cephadm rm-cluster --fsid 3faf8b00-8fd3-11ee-95a2-87774f69a715 --force --keep-logs 2023-11-30T23:22:01.359 DEBUG:teuthology.orchestra.run.smithi167:> sudo /home/ubuntu/cephtest/cephadm rm-cluster --fsid 3faf8b00-8fd3-11ee-95a2-87774f69a715 --force --keep-logs 2023-11-30T23:22:44.690 DEBUG:teuthology.orchestra.run.smithi038:> sudo rm -f /etc/ceph/ceph.conf /etc/ceph/ceph.client.admin.keyring 2023-11-30T23:22:44.739 DEBUG:teuthology.orchestra.run.smithi167:> sudo rm -f /etc/ceph/ceph.conf /etc/ceph/ceph.client.admin.keyring 2023-11-30T23:22:44.768 INFO:tasks.cephadm:Archiving crash dumps... 2023-11-30T23:22:44.773 DEBUG:teuthology.misc:Transferring archived files from smithi038:/var/lib/ceph/3faf8b00-8fd3-11ee-95a2-87774f69a715/crash to /home/teuthworker/archive/yuriw-2023-11-30_16:00:27-rados-wip-yuri8-testing-2023-11-29-0706-pacific-distro-default-smithi/7472707/remote/ubuntu@smithi038.front.sepia.ceph.com/crash 2023-11-30T23:22:44.774 DEBUG:teuthology.orchestra.run.smithi038:> sudo tar c -f - -C /var/lib/ceph/3faf8b00-8fd3-11ee-95a2-87774f69a715/crash -- . 2023-11-30T23:22:44.818 INFO:teuthology.orchestra.run.smithi038.stderr:tar: /var/lib/ceph/3faf8b00-8fd3-11ee-95a2-87774f69a715/crash: Cannot open: No such file or directory 2023-11-30T23:22:44.818 INFO:teuthology.orchestra.run.smithi038.stderr:tar: Error is not recoverable: exiting now 2023-11-30T23:22:44.820 DEBUG:teuthology.misc:Transferring archived files from smithi167:/var/lib/ceph/3faf8b00-8fd3-11ee-95a2-87774f69a715/crash to /home/teuthworker/archive/yuriw-2023-11-30_16:00:27-rados-wip-yuri8-testing-2023-11-29-0706-pacific-distro-default-smithi/7472707/remote/ubuntu@smithi167.front.sepia.ceph.com/crash 2023-11-30T23:22:44.820 DEBUG:teuthology.orchestra.run.smithi167:> sudo tar c -f - -C /var/lib/ceph/3faf8b00-8fd3-11ee-95a2-87774f69a715/crash -- . 2023-11-30T23:22:44.863 INFO:teuthology.orchestra.run.smithi167.stderr:tar: /var/lib/ceph/3faf8b00-8fd3-11ee-95a2-87774f69a715/crash: Cannot open: No such file or directory 2023-11-30T23:22:44.863 INFO:teuthology.orchestra.run.smithi167.stderr:tar: Error is not recoverable: exiting now 2023-11-30T23:22:44.864 INFO:tasks.cephadm:Checking cluster log for badness... 2023-11-30T23:22:44.864 DEBUG:teuthology.orchestra.run.smithi038:> sudo egrep '\[ERR\]|\[WRN\]|\[SEC\]' /var/log/ceph/3faf8b00-8fd3-11ee-95a2-87774f69a715/ceph.log | egrep -v '\(MDS_ALL_DOWN\)' | egrep -v '\(MDS_UP_LESS_THAN_MAX\)' | head -n 1 2023-11-30T23:22:44.891 INFO:teuthology.orchestra.run.smithi038.stderr:grep: /var/log/ceph/3faf8b00-8fd3-11ee-95a2-87774f69a715/ceph.log: No such file or directory 2023-11-30T23:22:44.893 INFO:tasks.cephadm:Compressing logs... 2023-11-30T23:22:44.893 DEBUG:teuthology.orchestra.run.smithi038:> 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-11-30T23:22:44.936 DEBUG:teuthology.orchestra.run.smithi167:> 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-11-30T23:22:44.962 INFO:teuthology.orchestra.run.smithi038.stderr:find: ‘/var/log/rbd-target-api’gzip -5 --verbose -- /var/log/ceph/3faf8b00-8fd3-11ee-95a2-87774f69a715/ceph-volume.log 2023-11-30T23:22:44.962 INFO:teuthology.orchestra.run.smithi038.stderr:: No such file or directory 2023-11-30T23:22:44.962 INFO:teuthology.orchestra.run.smithi038.stderr:gzip -5 --verbose -- /var/log/ceph/3faf8b00-8fd3-11ee-95a2-87774f69a715/ceph-client.rgw.foorgw.smithi038.cljkux.log 2023-11-30T23:22:44.962 INFO:teuthology.orchestra.run.smithi038.stderr:gzip -5 --verbose -- /var/log/ceph/3faf8b00-8fd3-11ee-95a2-87774f69a715/ceph-osd.7.log 2023-11-30T23:22:44.962 INFO:teuthology.orchestra.run.smithi038.stderr:/var/log/ceph/3faf8b00-8fd3-11ee-95a2-87774f69a715/ceph-volume.log: /var/log/ceph/3faf8b00-8fd3-11ee-95a2-87774f69a715/ceph-client.rgw.foorgw.smithi038.cljkux.log: gzip -5 --verbose -- /var/log/ceph/3faf8b00-8fd3-11ee-95a2-87774f69a715/ceph-mgr.smithi038.ldalxq.log 2023-11-30T23:22:44.963 INFO:teuthology.orchestra.run.smithi038.stderr: 78.6% -- replaced with /var/log/ceph/3faf8b00-8fd3-11ee-95a2-87774f69a715/ceph-client.rgw.foorgw.smithi038.cljkux.log.gz 2023-11-30T23:22:44.963 INFO:teuthology.orchestra.run.smithi038.stderr:/var/log/ceph/3faf8b00-8fd3-11ee-95a2-87774f69a715/ceph-osd.7.log: gzip -5 --verbose -- /var/log/ceph/3faf8b00-8fd3-11ee-95a2-87774f69a715/ceph-osd.3.log 2023-11-30T23:22:44.965 INFO:teuthology.orchestra.run.smithi038.stderr:/var/log/ceph/3faf8b00-8fd3-11ee-95a2-87774f69a715/ceph-mgr.smithi038.ldalxq.log: gzip -5 --verbose -- /var/log/ceph/3faf8b00-8fd3-11ee-95a2-87774f69a715/ceph-osd.1.log 2023-11-30T23:22:44.965 INFO:teuthology.orchestra.run.smithi038.stderr:/var/log/ceph/3faf8b00-8fd3-11ee-95a2-87774f69a715/ceph-osd.3.log: gzip -5 --verbose -- /var/log/ceph/3faf8b00-8fd3-11ee-95a2-87774f69a715/ceph-mon.smithi038.log 2023-11-30T23:22:44.965 INFO:teuthology.orchestra.run.smithi038.stderr:/var/log/ceph/3faf8b00-8fd3-11ee-95a2-87774f69a715/ceph-osd.1.log: gzip -5 --verbose -- /var/log/ceph/3faf8b00-8fd3-11ee-95a2-87774f69a715/ceph-osd.5.log 2023-11-30T23:22:44.966 INFO:teuthology.orchestra.run.smithi038.stderr:/var/log/ceph/3faf8b00-8fd3-11ee-95a2-87774f69a715/ceph-mon.smithi038.log: gzip -5 --verbose -- /var/log/ceph/cephadm.log 2023-11-30T23:22:44.967 INFO:teuthology.orchestra.run.smithi167.stderr:find: ‘/var/log/rbd-target-api’gzip -5 --verbose -- /var/log/ceph/3faf8b00-8fd3-11ee-95a2-87774f69a715/ceph-volume.log 2023-11-30T23:22:44.967 INFO:teuthology.orchestra.run.smithi167.stderr:: No such file or directory 2023-11-30T23:22:44.967 INFO:teuthology.orchestra.run.smithi167.stderr:gzip -5 --verbose -- /var/log/ceph/3faf8b00-8fd3-11ee-95a2-87774f69a715/ceph-mgr.smithi167.wfawnr.log 2023-11-30T23:22:44.967 INFO:teuthology.orchestra.run.smithi167.stderr:gzip -5 --verbose -- /var/log/ceph/3faf8b00-8fd3-11ee-95a2-87774f69a715/ceph-osd.4.log 2023-11-30T23:22:44.967 INFO:teuthology.orchestra.run.smithi167.stderr:/var/log/ceph/3faf8b00-8fd3-11ee-95a2-87774f69a715/ceph-volume.log: /var/log/ceph/3faf8b00-8fd3-11ee-95a2-87774f69a715/ceph-mgr.smithi167.wfawnr.log: gzip -5 --verbose -- /var/log/ceph/3faf8b00-8fd3-11ee-95a2-87774f69a715/ceph-client.rgw.foorgw.smithi167.nyemgg.log 2023-11-30T23:22:44.968 INFO:teuthology.orchestra.run.smithi167.stderr:/var/log/ceph/3faf8b00-8fd3-11ee-95a2-87774f69a715/ceph-osd.4.log: gzip -5 --verbose -- /var/log/ceph/3faf8b00-8fd3-11ee-95a2-87774f69a715/ceph-mon.smithi167.log 2023-11-30T23:22:44.968 INFO:teuthology.orchestra.run.smithi167.stderr:gzip -5 --verbose -- /var/log/ceph/3faf8b00-8fd3-11ee-95a2-87774f69a715/ceph-osd.6.log 2023-11-30T23:22:44.968 INFO:teuthology.orchestra.run.smithi167.stderr:/var/log/ceph/3faf8b00-8fd3-11ee-95a2-87774f69a715/ceph-client.rgw.foorgw.smithi167.nyemgg.log: /var/log/ceph/3faf8b00-8fd3-11ee-95a2-87774f69a715/ceph-mon.smithi167.log: 79.4% -- replaced with /var/log/ceph/3faf8b00-8fd3-11ee-95a2-87774f69a715/ceph-client.rgw.foorgw.smithi167.nyemgg.log.gz 2023-11-30T23:22:44.968 INFO:teuthology.orchestra.run.smithi167.stderr:gzip -5 --verbose -- /var/log/ceph/3faf8b00-8fd3-11ee-95a2-87774f69a715/ceph-osd.0.log 2023-11-30T23:22:44.968 INFO:teuthology.orchestra.run.smithi167.stderr:/var/log/ceph/3faf8b00-8fd3-11ee-95a2-87774f69a715/ceph-osd.6.log: gzip -5 --verbose -- /var/log/ceph/3faf8b00-8fd3-11ee-95a2-87774f69a715/ceph-osd.2.log 2023-11-30T23:22:44.969 INFO:teuthology.orchestra.run.smithi167.stderr:/var/log/ceph/3faf8b00-8fd3-11ee-95a2-87774f69a715/ceph-osd.0.log: /var/log/ceph/3faf8b00-8fd3-11ee-95a2-87774f69a715/ceph-osd.2.log: 92.5% -- replaced with /var/log/ceph/3faf8b00-8fd3-11ee-95a2-87774f69a715/ceph-volume.log.gz 2023-11-30T23:22:44.969 INFO:teuthology.orchestra.run.smithi167.stderr:gzip -5 --verbose -- /var/log/ceph/cephadm.log 2023-11-30T23:22:44.969 INFO:teuthology.orchestra.run.smithi038.stderr:/var/log/ceph/3faf8b00-8fd3-11ee-95a2-87774f69a715/ceph-osd.5.log: /var/log/ceph/cephadm.log: 92.6% -- replaced with /var/log/ceph/3faf8b00-8fd3-11ee-95a2-87774f69a715/ceph-volume.log.gz 2023-11-30T23:22:44.970 INFO:teuthology.orchestra.run.smithi167.stderr:/var/log/ceph/cephadm.log: 93.2% -- replaced with /var/log/ceph/3faf8b00-8fd3-11ee-95a2-87774f69a715/ceph-mgr.smithi167.wfawnr.log.gz 2023-11-30T23:22:44.976 INFO:teuthology.orchestra.run.smithi167.stderr: 90.7% -- replaced with /var/log/ceph/cephadm.log.gz 2023-11-30T23:22:44.994 INFO:teuthology.orchestra.run.smithi038.stderr: 93.7% -- replaced with /var/log/ceph/cephadm.log.gz 2023-11-30T23:22:45.261 INFO:teuthology.orchestra.run.smithi038.stderr: 89.4% -- replaced with /var/log/ceph/3faf8b00-8fd3-11ee-95a2-87774f69a715/ceph-mgr.smithi038.ldalxq.log.gz 2023-11-30T23:22:45.321 INFO:teuthology.orchestra.run.smithi167.stderr: 92.6% -- replaced with /var/log/ceph/3faf8b00-8fd3-11ee-95a2-87774f69a715/ceph-mon.smithi167.log.gz 2023-11-30T23:22:45.918 INFO:teuthology.orchestra.run.smithi167.stderr: 93.7% -- replaced with /var/log/ceph/3faf8b00-8fd3-11ee-95a2-87774f69a715/ceph-osd.4.log.gz 2023-11-30T23:22:45.919 INFO:teuthology.orchestra.run.smithi038.stderr: 93.6% -- replaced with /var/log/ceph/3faf8b00-8fd3-11ee-95a2-87774f69a715/ceph-osd.7.log.gz 2023-11-30T23:22:45.944 INFO:teuthology.orchestra.run.smithi038.stderr: 93.3% -- replaced with /var/log/ceph/3faf8b00-8fd3-11ee-95a2-87774f69a715/ceph-osd.5.log.gz 2023-11-30T23:22:45.977 INFO:teuthology.orchestra.run.smithi167.stderr: 93.2% -- replaced with /var/log/ceph/3faf8b00-8fd3-11ee-95a2-87774f69a715/ceph-osd.2.log.gz 2023-11-30T23:22:45.994 INFO:teuthology.orchestra.run.smithi167.stderr: 93.3% -- replaced with /var/log/ceph/3faf8b00-8fd3-11ee-95a2-87774f69a715/ceph-osd.6.log.gz 2023-11-30T23:22:46.050 INFO:teuthology.orchestra.run.smithi038.stderr: 90.5% -- replaced with /var/log/ceph/3faf8b00-8fd3-11ee-95a2-87774f69a715/ceph-mon.smithi038.log.gz 2023-11-30T23:22:46.204 INFO:teuthology.orchestra.run.smithi167.stderr: 93.5% -- replaced with /var/log/ceph/3faf8b00-8fd3-11ee-95a2-87774f69a715/ceph-osd.0.log.gz 2023-11-30T23:22:46.205 INFO:teuthology.orchestra.run.smithi167.stderr: 2023-11-30T23:22:46.205 INFO:teuthology.orchestra.run.smithi167.stderr:real 0m1.255s 2023-11-30T23:22:46.206 INFO:teuthology.orchestra.run.smithi167.stderr:user 0m4.455s 2023-11-30T23:22:46.206 INFO:teuthology.orchestra.run.smithi167.stderr:sys 0m0.184s 2023-11-30T23:22:46.218 INFO:teuthology.orchestra.run.smithi038.stderr: 93.5% -- replaced with /var/log/ceph/3faf8b00-8fd3-11ee-95a2-87774f69a715/ceph-osd.3.log.gz 2023-11-30T23:22:46.283 INFO:teuthology.orchestra.run.smithi038.stderr: 93.2% -- replaced with /var/log/ceph/3faf8b00-8fd3-11ee-95a2-87774f69a715/ceph-osd.1.log.gz 2023-11-30T23:22:46.284 INFO:teuthology.orchestra.run.smithi038.stderr: 2023-11-30T23:22:46.284 INFO:teuthology.orchestra.run.smithi038.stderr:real 0m1.335s 2023-11-30T23:22:46.285 INFO:teuthology.orchestra.run.smithi038.stderr:user 0m5.738s 2023-11-30T23:22:46.285 INFO:teuthology.orchestra.run.smithi038.stderr:sys 0m0.215s 2023-11-30T23:22:46.285 INFO:tasks.cephadm:Archiving logs... 2023-11-30T23:22:46.285 DEBUG:teuthology.misc:Transferring archived files from smithi038:/var/log/ceph to /home/teuthworker/archive/yuriw-2023-11-30_16:00:27-rados-wip-yuri8-testing-2023-11-29-0706-pacific-distro-default-smithi/7472707/remote/ubuntu@smithi038.front.sepia.ceph.com/log 2023-11-30T23:22:46.286 DEBUG:teuthology.orchestra.run.smithi038:> sudo tar c -f - -C /var/log/ceph -- . 2023-11-30T23:22:47.117 DEBUG:teuthology.misc:Transferring archived files from smithi167:/var/log/ceph to /home/teuthworker/archive/yuriw-2023-11-30_16:00:27-rados-wip-yuri8-testing-2023-11-29-0706-pacific-distro-default-smithi/7472707/remote/ubuntu@smithi167.front.sepia.ceph.com/log 2023-11-30T23:22:47.118 DEBUG:teuthology.orchestra.run.smithi167:> sudo tar c -f - -C /var/log/ceph -- . 2023-11-30T23:22:47.798 INFO:tasks.cephadm:Removing cluster... 2023-11-30T23:22:47.798 DEBUG:teuthology.orchestra.run.smithi038:> sudo /home/ubuntu/cephtest/cephadm rm-cluster --fsid 3faf8b00-8fd3-11ee-95a2-87774f69a715 --force 2023-11-30T23:22:48.530 DEBUG:teuthology.orchestra.run.smithi167:> sudo /home/ubuntu/cephtest/cephadm rm-cluster --fsid 3faf8b00-8fd3-11ee-95a2-87774f69a715 --force 2023-11-30T23:22:49.229 INFO:tasks.cephadm:Removing cephadm ... 2023-11-30T23:22:49.230 DEBUG:teuthology.orchestra.run.smithi038:> rm -rf /home/ubuntu/cephtest/cephadm 2023-11-30T23:22:49.248 DEBUG:teuthology.orchestra.run.smithi167:> rm -rf /home/ubuntu/cephtest/cephadm 2023-11-30T23:22:49.263 INFO:tasks.cephadm:Teardown complete 2023-11-30T23:22:49.264 DEBUG:teuthology.run_tasks:Unwinding manager nvme_loop 2023-11-30T23:22:49.280 INFO:tasks.nvme_loop:Disconnecting nvme_loop smithi038:/dev/vg_nvme/lv_1... 2023-11-30T23:22:49.280 DEBUG:teuthology.orchestra.run.smithi038:> sudo nvme disconnect -n lv_1 2023-11-30T23:22:49.420 INFO:teuthology.orchestra.run.smithi038.stdout:NQN:lv_1 disconnected 1 controller(s) 2023-11-30T23:22:49.421 DEBUG:teuthology.orchestra.run:got remote process result: 1 2023-11-30T23:22:49.422 INFO:tasks.nvme_loop:Disconnecting nvme_loop smithi038:/dev/vg_nvme/lv_2... 2023-11-30T23:22:49.423 DEBUG:teuthology.orchestra.run.smithi038:> sudo nvme disconnect -n lv_2 2023-11-30T23:22:49.561 INFO:teuthology.orchestra.run.smithi038.stdout:NQN:lv_2 disconnected 1 controller(s) 2023-11-30T23:22:49.563 DEBUG:teuthology.orchestra.run:got remote process result: 1 2023-11-30T23:22:49.563 INFO:tasks.nvme_loop:Disconnecting nvme_loop smithi038:/dev/vg_nvme/lv_3... 2023-11-30T23:22:49.563 DEBUG:teuthology.orchestra.run.smithi038:> sudo nvme disconnect -n lv_3 2023-11-30T23:22:49.692 INFO:teuthology.orchestra.run.smithi038.stdout:NQN:lv_3 disconnected 1 controller(s) 2023-11-30T23:22:49.693 DEBUG:teuthology.orchestra.run:got remote process result: 1 2023-11-30T23:22:49.693 INFO:tasks.nvme_loop:Disconnecting nvme_loop smithi038:/dev/vg_nvme/lv_4... 2023-11-30T23:22:49.694 DEBUG:teuthology.orchestra.run.smithi038:> sudo nvme disconnect -n lv_4 2023-11-30T23:22:49.822 INFO:teuthology.orchestra.run.smithi038.stdout:NQN:lv_4 disconnected 1 controller(s) 2023-11-30T23:22:49.823 DEBUG:teuthology.orchestra.run:got remote process result: 1 2023-11-30T23:22:49.823 DEBUG:teuthology.orchestra.run.smithi038:> set -ex 2023-11-30T23:22:49.823 DEBUG:teuthology.orchestra.run.smithi038:> sudo dd of=/scratch_devs 2023-11-30T23:22:49.849 INFO:tasks.nvme_loop:Disconnecting nvme_loop smithi167:/dev/vg_nvme/lv_1... 2023-11-30T23:22:49.849 DEBUG:teuthology.orchestra.run.smithi167:> sudo nvme disconnect -n lv_1 2023-11-30T23:22:49.982 INFO:teuthology.orchestra.run.smithi167.stdout:NQN:lv_1 disconnected 1 controller(s) 2023-11-30T23:22:49.985 DEBUG:teuthology.orchestra.run:got remote process result: 1 2023-11-30T23:22:49.985 INFO:tasks.nvme_loop:Disconnecting nvme_loop smithi167:/dev/vg_nvme/lv_2... 2023-11-30T23:22:49.986 DEBUG:teuthology.orchestra.run.smithi167:> sudo nvme disconnect -n lv_2 2023-11-30T23:22:50.123 INFO:teuthology.orchestra.run.smithi167.stdout:NQN:lv_2 disconnected 1 controller(s) 2023-11-30T23:22:50.124 DEBUG:teuthology.orchestra.run:got remote process result: 1 2023-11-30T23:22:50.124 INFO:tasks.nvme_loop:Disconnecting nvme_loop smithi167:/dev/vg_nvme/lv_3... 2023-11-30T23:22:50.125 DEBUG:teuthology.orchestra.run.smithi167:> sudo nvme disconnect -n lv_3 2023-11-30T23:22:50.257 INFO:teuthology.orchestra.run.smithi167.stdout:NQN:lv_3 disconnected 1 controller(s) 2023-11-30T23:22:50.258 DEBUG:teuthology.orchestra.run:got remote process result: 1 2023-11-30T23:22:50.258 INFO:tasks.nvme_loop:Disconnecting nvme_loop smithi167:/dev/vg_nvme/lv_4... 2023-11-30T23:22:50.259 DEBUG:teuthology.orchestra.run.smithi167:> sudo nvme disconnect -n lv_4 2023-11-30T23:22:50.386 INFO:teuthology.orchestra.run.smithi167.stdout:NQN:lv_4 disconnected 1 controller(s) 2023-11-30T23:22:50.387 DEBUG:teuthology.orchestra.run:got remote process result: 1 2023-11-30T23:22:50.388 DEBUG:teuthology.orchestra.run.smithi167:> set -ex 2023-11-30T23:22:50.388 DEBUG:teuthology.orchestra.run.smithi167:> sudo dd of=/scratch_devs 2023-11-30T23:22:50.412 DEBUG:teuthology.run_tasks:Unwinding manager clock 2023-11-30T23:22:50.425 INFO:teuthology.task.clock:Checking final clock skew... 2023-11-30T23:22:50.426 DEBUG:teuthology.orchestra.run.smithi038:> PATH=/usr/bin:/usr/sbin ntpq -p || PATH=/usr/bin:/usr/sbin chronyc sources || true 2023-11-30T23:22:50.428 DEBUG:teuthology.orchestra.run.smithi167:> PATH=/usr/bin:/usr/sbin ntpq -p || PATH=/usr/bin:/usr/sbin chronyc sources || true 2023-11-30T23:22:50.441 INFO:teuthology.orchestra.run.smithi038.stderr:bash: ntpq: command not found 2023-11-30T23:22:50.444 INFO:teuthology.orchestra.run.smithi038.stdout:210 Number of sources = 4 2023-11-30T23:22:50.445 INFO:teuthology.orchestra.run.smithi038.stdout:MS Name/IP address Stratum Poll Reach LastRx Last sample 2023-11-30T23:22:50.445 INFO:teuthology.orchestra.run.smithi038.stdout:=============================================================================== 2023-11-30T23:22:50.445 INFO:teuthology.orchestra.run.smithi038.stdout:^+ hv01.front.sepia.ceph.com 2 7 377 107 +944us[ +937us] +/- 81ms 2023-11-30T23:22:50.445 INFO:teuthology.orchestra.run.smithi038.stdout:^* hv02.front.sepia.ceph.com 3 7 377 107 +198us[ +191us] +/- 59ms 2023-11-30T23:22:50.445 INFO:teuthology.orchestra.run.smithi038.stdout:^+ hv03.front.sepia.ceph.com 3 6 377 43 -1038us[-1038us] +/- 64ms 2023-11-30T23:22:50.445 INFO:teuthology.orchestra.run.smithi038.stdout:^? hv04.front.sepia.ceph.com 0 9 0 - +0ns[ +0ns] +/- 0ns 2023-11-30T23:22:50.466 INFO:teuthology.orchestra.run.smithi167.stderr:bash: ntpq: command not found 2023-11-30T23:22:50.470 INFO:teuthology.orchestra.run.smithi167.stdout:210 Number of sources = 4 2023-11-30T23:22:50.470 INFO:teuthology.orchestra.run.smithi167.stdout:MS Name/IP address Stratum Poll Reach LastRx Last sample 2023-11-30T23:22:50.470 INFO:teuthology.orchestra.run.smithi167.stdout:=============================================================================== 2023-11-30T23:22:50.470 INFO:teuthology.orchestra.run.smithi167.stdout:^+ hv01.front.sepia.ceph.com 2 6 377 39 +922us[ +922us] +/- 82ms 2023-11-30T23:22:50.470 INFO:teuthology.orchestra.run.smithi167.stdout:^* hv02.front.sepia.ceph.com 3 6 377 42 +197us[ +190us] +/- 60ms 2023-11-30T23:22:50.471 INFO:teuthology.orchestra.run.smithi167.stdout:^+ hv03.front.sepia.ceph.com 3 6 377 42 -1007us[-1014us] +/- 64ms 2023-11-30T23:22:50.471 INFO:teuthology.orchestra.run.smithi167.stdout:^? hv04.front.sepia.ceph.com 0 9 0 - +0ns[ +0ns] +/- 0ns 2023-11-30T23:22:50.471 DEBUG:teuthology.run_tasks:Unwinding manager ansible.cephlab 2023-11-30T23:22:50.482 INFO:teuthology.task.ansible:Skipping ansible cleanup... 2023-11-30T23:22:50.483 DEBUG:teuthology.run_tasks:Unwinding manager selinux 2023-11-30T23:22:50.503 DEBUG:teuthology.orchestra.run.smithi038:> mkdir /home/ubuntu/cephtest/archive/audit && sudo cp /var/log/audit/audit.log /home/ubuntu/cephtest/archive/audit && sudo chown $USER /home/ubuntu/cephtest/archive/audit/audit.log && gzip /home/ubuntu/cephtest/archive/audit/audit.log 2023-11-30T23:22:50.607 DEBUG:teuthology.orchestra.run.smithi167:> mkdir /home/ubuntu/cephtest/archive/audit && sudo cp /var/log/audit/audit.log /home/ubuntu/cephtest/archive/audit && sudo chown $USER /home/ubuntu/cephtest/archive/audit/audit.log && gzip /home/ubuntu/cephtest/archive/audit/audit.log 2023-11-30T23:22:50.693 DEBUG:teuthology.orchestra.run.smithi038:> sudo grep -a 'avc: .*denied' /var/log/audit/audit.log | grep -av -e 'comm="dmidecode"' -e chronyd.service -e 'name="cephtest"' -e scontext=system_u:system_r:nrpe_t:s0 -e scontext=system_u:system_r:pcp_pmlogger_t -e scontext=system_u:system_r:pcp_pmcd_t:s0 -e 'comm="rhsmd"' -e scontext=system_u:system_r:syslogd_t:s0 -e tcontext=system_u:system_r:nrpe_t:s0 -e 'comm="updatedb"' -e 'comm="smartd"' -e 'comm="rhsmcertd-worke"' -e 'comm="setroubleshootd"' -e 'comm="rpm"' -e tcontext=system_u:object_r:container_runtime_exec_t:s0 -e 'comm="ksmtuned"' -e 'comm="sssd"' -e 'comm="sss_cache"' -e context=system_u:system_r:NetworkManager_dispatcher_t:s0 2023-11-30T23:22:50.724 DEBUG:teuthology.orchestra.run:got remote process result: 1 2023-11-30T23:22:50.725 DEBUG:teuthology.orchestra.run.smithi167:> sudo grep -a 'avc: .*denied' /var/log/audit/audit.log | grep -av -e 'comm="dmidecode"' -e chronyd.service -e 'name="cephtest"' -e scontext=system_u:system_r:nrpe_t:s0 -e scontext=system_u:system_r:pcp_pmlogger_t -e scontext=system_u:system_r:pcp_pmcd_t:s0 -e 'comm="rhsmd"' -e scontext=system_u:system_r:syslogd_t:s0 -e tcontext=system_u:system_r:nrpe_t:s0 -e 'comm="updatedb"' -e 'comm="smartd"' -e 'comm="rhsmcertd-worke"' -e 'comm="setroubleshootd"' -e 'comm="rpm"' -e tcontext=system_u:object_r:container_runtime_exec_t:s0 -e 'comm="ksmtuned"' -e 'comm="sssd"' -e 'comm="sss_cache"' -e context=system_u:system_r:NetworkManager_dispatcher_t:s0 2023-11-30T23:22:50.754 DEBUG:teuthology.orchestra.run:got remote process result: 1 2023-11-30T23:22:50.755 DEBUG:teuthology.run_tasks:Unwinding manager pcp 2023-11-30T23:22:50.771 DEBUG:teuthology.run_tasks:Unwinding manager internal.timer 2023-11-30T23:22:50.793 INFO:teuthology.task.internal:Duration was 2335.382705 seconds 2023-11-30T23:22:50.794 DEBUG:teuthology.run_tasks:Unwinding manager internal.syslog 2023-11-30T23:22:50.821 INFO:teuthology.task.internal.syslog:Shutting down syslog monitoring... 2023-11-30T23:22:50.821 DEBUG:teuthology.orchestra.run.smithi038:> sudo rm -f -- /etc/rsyslog.d/80-cephtest.conf && sudo service rsyslog restart 2023-11-30T23:22:50.824 DEBUG:teuthology.orchestra.run.smithi167:> sudo rm -f -- /etc/rsyslog.d/80-cephtest.conf && sudo service rsyslog restart 2023-11-30T23:22:50.867 INFO:teuthology.orchestra.run.smithi038.stderr:Redirecting to /bin/systemctl restart rsyslog.service 2023-11-30T23:22:50.868 INFO:teuthology.orchestra.run.smithi167.stderr:Redirecting to /bin/systemctl restart rsyslog.service 2023-11-30T23:22:51.288 INFO:teuthology.task.internal.syslog:Checking logs for errors... 2023-11-30T23:22:51.288 DEBUG:teuthology.task.internal.syslog:Checking ubuntu@smithi038.front.sepia.ceph.com 2023-11-30T23:22:51.289 DEBUG:teuthology.orchestra.run.smithi038:> 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-11-30T23:22:51.309 DEBUG:teuthology.task.internal.syslog:Checking ubuntu@smithi167.front.sepia.ceph.com 2023-11-30T23:22:51.309 DEBUG:teuthology.orchestra.run.smithi167:> 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-11-30T23:22:51.328 INFO:teuthology.task.internal.syslog:Compressing syslogs... 2023-11-30T23:22:51.329 DEBUG:teuthology.orchestra.run.smithi038:> find /home/ubuntu/cephtest/archive/syslog -name '*.log' -print0 | sudo xargs -0 --no-run-if-empty -- gzip -- 2023-11-30T23:22:51.351 DEBUG:teuthology.orchestra.run.smithi167:> find /home/ubuntu/cephtest/archive/syslog -name '*.log' -print0 | sudo xargs -0 --no-run-if-empty -- gzip -- 2023-11-30T23:22:51.426 INFO:teuthology.task.internal.syslog:Gathering journactl -b0... 2023-11-30T23:22:51.427 DEBUG:teuthology.orchestra.run.smithi038:> sudo journalctl -b0 | gzip -9 > /home/ubuntu/cephtest/archive/syslog/journalctl-b0.gz 2023-11-30T23:22:51.429 DEBUG:teuthology.orchestra.run.smithi167:> sudo journalctl -b0 | gzip -9 > /home/ubuntu/cephtest/archive/syslog/journalctl-b0.gz 2023-11-30T23:22:51.597 DEBUG:teuthology.run_tasks:Unwinding manager internal.sudo 2023-11-30T23:22:51.609 INFO:teuthology.task.internal:Restoring /etc/sudoers... 2023-11-30T23:22:51.609 DEBUG:teuthology.orchestra.run.smithi038:> sudo mv -f /etc/sudoers.orig.teuthology /etc/sudoers 2023-11-30T23:22:51.639 DEBUG:teuthology.orchestra.run.smithi167:> sudo mv -f /etc/sudoers.orig.teuthology /etc/sudoers 2023-11-30T23:22:51.664 DEBUG:teuthology.run_tasks:Unwinding manager internal.coredump 2023-11-30T23:22:51.675 DEBUG:teuthology.orchestra.run.smithi038:> 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-11-30T23:22:51.681 DEBUG:teuthology.orchestra.run.smithi167:> 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-11-30T23:22:51.703 INFO:teuthology.orchestra.run.smithi038.stdout:kernel.core_pattern = core 2023-11-30T23:22:51.728 INFO:teuthology.orchestra.run.smithi167.stdout:kernel.core_pattern = core 2023-11-30T23:22:51.741 DEBUG:teuthology.orchestra.run.smithi038:> test -e /home/ubuntu/cephtest/archive/coredump 2023-11-30T23:22:51.772 DEBUG:teuthology.orchestra.run:got remote process result: 1 2023-11-30T23:22:51.772 DEBUG:teuthology.orchestra.run.smithi167:> test -e /home/ubuntu/cephtest/archive/coredump 2023-11-30T23:22:51.795 DEBUG:teuthology.orchestra.run:got remote process result: 1 2023-11-30T23:22:51.796 DEBUG:teuthology.run_tasks:Unwinding manager internal.archive 2023-11-30T23:22:51.807 INFO:teuthology.task.internal:Transferring archived files... 2023-11-30T23:22:51.808 DEBUG:teuthology.misc:Transferring archived files from smithi038:/home/ubuntu/cephtest/archive to /home/teuthworker/archive/yuriw-2023-11-30_16:00:27-rados-wip-yuri8-testing-2023-11-29-0706-pacific-distro-default-smithi/7472707/remote/smithi038 2023-11-30T23:22:51.809 DEBUG:teuthology.orchestra.run.smithi038:> sudo tar c -f - -C /home/ubuntu/cephtest/archive -- . 2023-11-30T23:22:51.860 DEBUG:teuthology.misc:Transferring archived files from smithi167:/home/ubuntu/cephtest/archive to /home/teuthworker/archive/yuriw-2023-11-30_16:00:27-rados-wip-yuri8-testing-2023-11-29-0706-pacific-distro-default-smithi/7472707/remote/smithi167 2023-11-30T23:22:51.861 DEBUG:teuthology.orchestra.run.smithi167:> sudo tar c -f - -C /home/ubuntu/cephtest/archive -- . 2023-11-30T23:22:51.898 INFO:teuthology.task.internal:Removing archive directory... 2023-11-30T23:22:51.898 DEBUG:teuthology.orchestra.run.smithi038:> rm -rf -- /home/ubuntu/cephtest/archive 2023-11-30T23:22:51.901 DEBUG:teuthology.orchestra.run.smithi167:> rm -rf -- /home/ubuntu/cephtest/archive 2023-11-30T23:22:51.947 DEBUG:teuthology.run_tasks:Unwinding manager internal.archive_upload 2023-11-30T23:22:51.961 INFO:teuthology.task.internal:Not uploading archives. 2023-11-30T23:22:51.961 DEBUG:teuthology.run_tasks:Unwinding manager internal.base 2023-11-30T23:22:52.047 INFO:teuthology.task.internal:Tidying up after the test... 2023-11-30T23:22:52.047 DEBUG:teuthology.orchestra.run.smithi038:> find /home/ubuntu/cephtest -ls ; rmdir -- /home/ubuntu/cephtest 2023-11-30T23:22:52.049 DEBUG:teuthology.orchestra.run.smithi167:> find /home/ubuntu/cephtest -ls ; rmdir -- /home/ubuntu/cephtest 2023-11-30T23:22:52.062 INFO:teuthology.orchestra.run.smithi038.stdout: 262607 4 drwxr-xr-x 2 ubuntu ubuntu 4096 Nov 30 23:22 /home/ubuntu/cephtest 2023-11-30T23:22:52.063 INFO:teuthology.orchestra.run.smithi167.stdout: 262225 4 drwxr-xr-x 2 ubuntu ubuntu 4096 Nov 30 23:22 /home/ubuntu/cephtest 2023-11-30T23:22:52.064 DEBUG:teuthology.run_tasks:Unwinding manager kernel 2023-11-30T23:22:52.082 DEBUG:teuthology.run_tasks:Unwinding manager console_log 2023-11-30T23:22:52.187 INFO:teuthology.nuke:Checking targets against current locks 2023-11-30T23:22:52.218 DEBUG:teuthology.nuke:shortname: smithi038 2023-11-30T23:22:52.218 INFO:teuthology.task.internal.check_lock:Checking locks... 2023-11-30T23:22:52.248 DEBUG:teuthology.task.internal.check_lock:machine status is {'name': 'smithi038.front.sepia.ceph.com', 'description': '/home/teuthworker/archive/yuriw-2023-11-30_16:00:27-rados-wip-yuri8-testing-2023-11-29-0706-pacific-distro-default-smithi/7472707', 'up': True, 'machine_type': 'smithi', 'is_vm': False, 'vm_host': None, 'os_type': 'rhel', 'os_version': '8.4', 'arch': 'x86_64', 'locked': True, 'locked_since': '2023-11-30 22:36:29.918876', 'locked_by': 'scheduled_yuriw@teuthology', 'mac_address': None, 'ssh_pub_key': 'ecdsa-sha2-nistp256 AAAAE2VjZHNhLXNoYTItbmlzdHAyNTYAAAAIbmlzdHAyNTYAAABBBPx15B2W1733oDj5EXK0hQVNNRERQtESt4JVrUJgZU9T2nvjZ7RoF0UXB6OlnJ/xcembSL5cON/dFu5ijQTDPQk='} 2023-11-30T23:22:52.249 DEBUG:teuthology.nuke:shortname: smithi167 2023-11-30T23:22:52.249 INFO:teuthology.task.internal.check_lock:Checking locks... 2023-11-30T23:22:52.277 DEBUG:teuthology.task.internal.check_lock:machine status is {'name': 'smithi167.front.sepia.ceph.com', 'description': '/home/teuthworker/archive/yuriw-2023-11-30_16:00:27-rados-wip-yuri8-testing-2023-11-29-0706-pacific-distro-default-smithi/7472707', 'up': True, 'machine_type': 'smithi', 'is_vm': False, 'vm_host': None, 'os_type': 'rhel', 'os_version': '8.4', 'arch': 'x86_64', 'locked': True, 'locked_since': '2023-11-30 22:36:29.916985', 'locked_by': 'scheduled_yuriw@teuthology', 'mac_address': None, 'ssh_pub_key': 'ecdsa-sha2-nistp256 AAAAE2VjZHNhLXNoYTItbmlzdHAyNTYAAAAIbmlzdHAyNTYAAABBBFB7sDPboLGIzz4wYWw6o7w2Hag5TgcZar/JFbEKOF7etfSFyXfJDZD5erzFxY5p+9S/czP4mFrmMOipROuxqUE='} 2023-11-30T23:22:52.312 INFO:teuthology.orchestra.console.smithi038:Power off 2023-11-30T23:22:52.312 DEBUG:teuthology.orchestra.console.smithi038:pexpect command: ipmitool -H smithi038.ipmi.sepia.ceph.com -I lanplus -U inktank -P ApGNXcA7 power off 2023-11-30T23:22:52.344 DEBUG:teuthology.orchestra.console.smithi038:power off output: Chassis Power Control: Down/Off 2023-11-30T23:22:52.344 DEBUG:teuthology.orchestra.console.smithi038:pexpect command: ipmitool -H smithi038.ipmi.sepia.ceph.com -I lanplus -U inktank -P ApGNXcA7 power status 2023-11-30T23:22:52.369 INFO:teuthology.orchestra.console.smithi167:Power off 2023-11-30T23:22:52.370 DEBUG:teuthology.orchestra.console.smithi167:pexpect command: ipmitool -H smithi167.ipmi.sepia.ceph.com -I lanplus -U inktank -P ApGNXcA7 power off 2023-11-30T23:22:52.383 DEBUG:teuthology.orchestra.console.smithi038:check power output: Chassis Power is on 2023-11-30T23:22:52.395 DEBUG:teuthology.orchestra.console.smithi167:power off output: Chassis Power Control: Down/Off 2023-11-30T23:22:52.396 DEBUG:teuthology.orchestra.console.smithi167:pexpect command: ipmitool -H smithi167.ipmi.sepia.ceph.com -I lanplus -U inktank -P ApGNXcA7 power status 2023-11-30T23:22:52.421 DEBUG:teuthology.orchestra.console.smithi167:check power output: Chassis Power is on 2023-11-30T23:22:56.384 DEBUG:teuthology.orchestra.console.smithi038:pexpect command: ipmitool -H smithi038.ipmi.sepia.ceph.com -I lanplus -U inktank -P ApGNXcA7 power status 2023-11-30T23:22:56.422 DEBUG:teuthology.orchestra.console.smithi167:pexpect command: ipmitool -H smithi167.ipmi.sepia.ceph.com -I lanplus -U inktank -P ApGNXcA7 power status 2023-11-30T23:22:56.495 DEBUG:teuthology.orchestra.console.smithi038:check power output: Chassis Power is on 2023-11-30T23:22:56.533 DEBUG:teuthology.orchestra.console.smithi167:check power output: Chassis Power is on 2023-11-30T23:23:00.499 DEBUG:teuthology.orchestra.console.smithi038:pexpect command: ipmitool -H smithi038.ipmi.sepia.ceph.com -I lanplus -U inktank -P ApGNXcA7 power status 2023-11-30T23:23:00.534 DEBUG:teuthology.orchestra.console.smithi167:pexpect command: ipmitool -H smithi167.ipmi.sepia.ceph.com -I lanplus -U inktank -P ApGNXcA7 power status 2023-11-30T23:23:00.612 DEBUG:teuthology.orchestra.console.smithi038:check power output: Chassis Power is off 2023-11-30T23:23:00.646 DEBUG:teuthology.orchestra.console.smithi167:check power output: Chassis Power is on 2023-11-30T23:23:00.714 INFO:teuthology.orchestra.console.smithi038:Power off completed 2023-11-30T23:23:04.650 DEBUG:teuthology.orchestra.console.smithi167:pexpect command: ipmitool -H smithi167.ipmi.sepia.ceph.com -I lanplus -U inktank -P ApGNXcA7 power status 2023-11-30T23:23:04.760 DEBUG:teuthology.orchestra.console.smithi167:check power output: Chassis Power is off 2023-11-30T23:23:04.861 INFO:teuthology.orchestra.console.smithi167:Power off completed 2023-11-30T23:23:04.965 INFO:teuthology.run:Summary data: description: rados/cephadm/smoke-roleless/{0-distro/rhel_8.4_container_tools_rhel8 0-nvme-loop 1-start 2-services/nfs-ingress-rgw-bucket 3-final} duration: 2335.3827052116394 failure_reason: reached maximum tries (301) after waiting for 300 seconds owner: scheduled_yuriw@teuthology sentry_event: https://sentry.ceph.com/organizations/ceph/?query=a12c25aaeb3b40fc966ffa8bdb97c27b status: fail success: false 2023-11-30T23:23:04.966 DEBUG:teuthology.report:Pushing job info to https://paddles.front.sepia.ceph.com/ 2023-11-30T23:23:05.049 INFO:teuthology.run:FAIL